Searched refs:x (Results 1 – 4 of 4) sorted by relevance
/misc/sys/ |
A D | param.h | 90 # define howmany(x, y) (((x) + ((y) - 1)) / (y)) argument 93 # define roundup(x, y) (__builtin_constant_p (y) && powerof2 (y) \ argument 94 ? (((x) + (y) - 1) & ~((y) - 1)) \ 95 : ((((x) + ((y) - 1)) / (y)) * (y))) 97 # define roundup(x, y) ((((x) + ((y) - 1)) / (y)) * (y)) argument 99 #define powerof2(x) ((((x) - 1) & (x)) == 0) argument
|
A D | cdefs.h | 124 #define __CONCAT(x,y) x ## y argument 125 #define __STRING(x) #x argument 361 # define __attribute_format_arg__(x) __attribute__ ((__format_arg__ (x))) argument 363 # define __attribute_format_arg__(x) /* Ignore */ argument 664 # define __attr_access(x) __attribute__ ((__access__ x)) argument 681 # define __attr_access(x) argument
|
/misc/ |
A D | tst-efgcvt-template.c | 48 #define NAME(x) NAMEX(x) argument 49 #define NAMEX(x) #x argument
|
A D | tst-tsearch.c | 60 static int x[SIZE]; variable 295 if (tfind (x + j, (void *const *) root, cmp_fn) != NULL) in mangle_tree() 300 elem = tsearch (x + j, root, cmp_fn); in mangle_tree() 302 || tfind (x + j, (void *const *) root, cmp_fn) == NULL) in mangle_tree() 317 elem = tfind (x + j, (void *const *) root, cmp_fn); in mangle_tree() 318 if (elem == NULL || tdelete (x + j, root, cmp_fn) == NULL) in mangle_tree() 326 if (tfind (x + j, (void *const *) root, cmp_fn) == NULL) in mangle_tree() 349 x[i] = i; in do_test()
|
Completed in 10 milliseconds