StarPU Handbook
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
starpu_bitmap.h
Go to the documentation of this file.
1 /* StarPU --- Runtime system for heterogeneous multicore architectures.
2  *
3  * Copyright (C) 2013 Simon Archipoff
4  * Copyright (C) 2014 Centre National de la Recherche Scientifique
5  *
6  * StarPU is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU Lesser General Public License as published by
8  * the Free Software Foundation; either version 2.1 of the License, or (at
9  * your option) any later version.
10  *
11  * StarPU is distributed in the hope that it will be useful, but
12  * WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
14  *
15  * See the GNU Lesser General Public License in COPYING.LGPL for more details.
16  */
17 
18 #ifndef __STARPU_BITMAP_H__
19 #define __STARPU_BITMAP_H__
20 
21 #ifdef __cplusplus
22 extern "C"
23 {
24 #endif
25 
26 struct starpu_bitmap *starpu_bitmap_create(void);
27 void starpu_bitmap_destroy(struct starpu_bitmap *b);
28 
29 void starpu_bitmap_set(struct starpu_bitmap *b, int e);
30 void starpu_bitmap_unset(struct starpu_bitmap *b, int e);
31 void starpu_bitmap_unset_all(struct starpu_bitmap *b);
32 
33 int starpu_bitmap_get(struct starpu_bitmap *b, int e);
34 void starpu_bitmap_unset_and(struct starpu_bitmap *a, struct starpu_bitmap *b, struct starpu_bitmap *c);
35 void starpu_bitmap_or(struct starpu_bitmap *a, struct starpu_bitmap *b);
36 int starpu_bitmap_and_get(struct starpu_bitmap *b1, struct starpu_bitmap *b2, int e);
37 int starpu_bitmap_cardinal(struct starpu_bitmap *b);
38 
39 int starpu_bitmap_first(struct starpu_bitmap *b);
40 int starpu_bitmap_last(struct starpu_bitmap *b);
41 int starpu_bitmap_next(struct starpu_bitmap *b, int e);
42 int starpu_bitmap_has_next(struct starpu_bitmap *b, int e);
43 
44 #ifdef __cplusplus
45 }
46 #endif
47 
48 #endif
int starpu_bitmap_and_get(struct starpu_bitmap *b1, struct starpu_bitmap *b2, int e)
int starpu_bitmap_first(struct starpu_bitmap *b)
int starpu_bitmap_get(struct starpu_bitmap *b, int e)
void starpu_bitmap_destroy(struct starpu_bitmap *b)
int starpu_bitmap_has_next(struct starpu_bitmap *b, int e)
void starpu_bitmap_unset_all(struct starpu_bitmap *b)
void starpu_bitmap_unset_and(struct starpu_bitmap *a, struct starpu_bitmap *b, struct starpu_bitmap *c)
void starpu_bitmap_unset(struct starpu_bitmap *b, int e)
struct starpu_bitmap * starpu_bitmap_create(void)
void starpu_bitmap_or(struct starpu_bitmap *a, struct starpu_bitmap *b)
int starpu_bitmap_last(struct starpu_bitmap *b)
int starpu_bitmap_cardinal(struct starpu_bitmap *b)
void starpu_bitmap_set(struct starpu_bitmap *b, int e)
int starpu_bitmap_next(struct starpu_bitmap *b, int e)