| /src/external/lgpl3/mpfr/dist/examples/ |
| rndo-add.c | 37 #define LIST x, y, d, u, e, z 41 mpfr_t LIST; 59 mpfr_inits2 (prec, LIST, (mpfr_ptr) 0); 89 mpfr_clears (LIST, (mpfr_ptr) 0);
|
| /src/external/mit/isl/dist/ |
| isl_list_read_templ.c | 13 /* Read a list of elements of type EL from "s". 17 * the entire list is surrounded by parentheses. 19 __isl_give LIST(EL) *FN(isl_stream_read,LIST(EL_BASE))(isl_stream *s) 22 LIST(EL) *list; 27 list = FN(LIST(EL),alloc)(ctx, 0); 28 if (!list) 31 return FN(LIST(EL),free)(list) [all...] |
| isl_list_read_yaml_templ.c | 14 /* Read a sequence of EL objects and return them as a list. 16 static __isl_give LIST(EL) *FN(isl_stream_yaml_read,LIST(EL_BASE))( 20 LIST(EL) *list; 28 list = FN(LIST(EL),alloc)(ctx, 0); 33 list = FN(LIST(EL),add)(list, el) [all...] |
| isl_list_macro.h | 8 #define LIST(EL) xLIST(EL)
|
| isl_list_templ.h | 4 #define LIST(EL) xLIST(EL) 6 struct LIST(EL) { 16 __isl_give LIST(EL) *FN(LIST(EL),dup)(__isl_keep LIST(EL) *list);
|
| isl_test_list_templ.c | 6 #define LIST(EL) xLIST(EL) 13 /* Check that the conversion from SET to list of EL works as expected, 23 LIST(EL) *list; 26 list = FN(FN(SET,get),LIST(EL_BASE))(set); 30 n = FN(LIST(EL),size)(list); 33 el = FN(LIST(EL),get_at)(list, i) [all...] |
| isl_list_templ.c | 25 isl_ctx *FN(LIST(EL),get_ctx)(__isl_keep LIST(EL) *list) 27 return list ? list->ctx : NULL; 30 __isl_give LIST(EL) *FN(LIST(EL),alloc)(isl_ctx *ctx, int n) 32 LIST(EL) *list; 36 "cannot create list of negative length" [all...] |
| isl_multi_templ.c | 347 /* Return the base expressions of "multi" as a list. 349 __isl_give LIST(EL) *FN(MULTI(BASE),get_list)( 354 LIST(EL) *list; 359 list = FN(LIST(EL),alloc)(FN(MULTI(BASE),get_ctx(multi)), n); 362 list = FN(LIST(EL),add)(list, el); 365 return list; [all...] |
| isl_union_templ.c | 1430 /* Add the base expression held by "entry" to "list". 1435 LIST(PART) **list = user; 1437 *list = FN(LIST(PART),add)(*list, FN(PART,copy)(pw)); 1438 if (!*list) 1444 /* Return a list containing all the base expressions in "u". 1446 * First construct a list of the appropriate size and 1449 __isl_give LIST(PART) *FN(FN(UNION,get),LIST(BASE))(__isl_keep UNION *u [all...] |
| /src/usr.bin/make/unit-tests/ |
| varparse-undef-partial.mk | 8 LIST= ${DEF} ${UNDEF} ${VAR.${PARAM}} end 20 EVAL:= ${LIST} 36 # In contrast to the previous line, evaluating the original LIST again now 40 EVAL:= ${LIST}
|
| dollar.mk | 7 LIST= plain 'single' "double" 'mix'"ed" back\ slashed
|
| varmod-select-words.mk | 14 LIST= one two three four five six 54 @echo 'LIST:[]="${LIST:[]}" is an error' 57 @echo 'LIST:[0]="${LIST:[0]}"' 58 @echo 'LIST:[0x0]="${LIST:[0x0]}"' 59 @echo 'LIST:[000]="${LIST:[000]}"' 60 @echo 'LIST:[*]="${LIST:[*]}" [all...] |
| /src/external/gpl3/gcc/dist/contrib/ |
| config-list.mk | 24 # nohup nice make -j25 -l36 -f ../gcc/contrib/config-list.mk > make.out 2>&1 & 32 # -f /path/to/contrib/config-list.mk \ 37 LIST = \ 116 LOGFILES = $(patsubst %,log/%-make.out,$(LIST)) 118 config: $(LIST) 120 @echo $(LIST) 131 $(LIST): make-log-dir
|
| /src/external/gpl3/gcc.old/dist/contrib/ |
| config-list.mk | 19 # nohup nice make -j25 -l36 -f ../gcc/contrib/config-list.mk > make.out 2>&1 & 27 # -f /path/to/contrib/config-list.mk \ 32 LIST = aarch64-elf aarch64-linux-gnu aarch64-rtems \ 110 LOGFILES = $(patsubst %,log/%-make.out,$(LIST)) 112 config: $(LIST) 114 @echo $(LIST) 125 $(LIST): make-log-dir
|
| /src/lib/libc/include/isc/ |
| list.h | 1 /* $NetBSD: list.h,v 1.6 2022/04/19 20:32:15 rillig Exp $ */ 24 #define LIST(type) struct { type *head, *tail; } 25 #define INIT_LIST(list) \ 26 do { (list).head = NULL; (list).tail = NULL; } while (0) 39 #define HEAD(list) ((list).head) 40 #define TAIL(list) ((list).tail) 41 #define EMPTY(list) ((list).head == NULL [all...] |
| /src/usr.bin/tee/ |
| tee.c | 11 * notice, this list of conditions and the following disclaimer. 13 * notice, this list of conditions and the following disclaimer in the 61 } LIST; 62 LIST *head; 69 LIST *p; 141 LIST *p; 143 if ((p = malloc(sizeof(LIST))) == NULL)
|
| /src/external/bsd/libbind/dist/include/isc/ |
| list.h | 1 /* $NetBSD: list.h,v 1.1.1.1 2009/04/12 15:33:33 christos Exp $ */ 24 #define LIST(type) struct { type *head, *tail; } 25 #define INIT_LIST(list) \ 26 do { (list).head = NULL; (list).tail = NULL; } while (0) 39 #define HEAD(list) ((list).head) 40 #define TAIL(list) ((list).tail) 41 #define EMPTY(list) ((list).head == NULL [all...] |
| /src/external/gpl2/xcvs/dist/src/ |
| hash.h | 14 * The number of buckets for the hash table contained in each list. This 24 NT_UNKNOWN, HEADER, ENTRIES, FILES, LIST, RCSNODE, 43 struct list struct 45 Node *list; member in struct:list 47 struct list *next; 49 typedef struct list List; 51 List *getlist (void); 52 Node *findnode (List *list, const char *key) [all...] |
| /src/external/gpl3/binutils/dist/binutils/ |
| arparse.h | 61 LIST = 262, /* LIST */ 87 #define LIST 262 109 struct list *list ; member in union:YYSTYPE
|
| /src/external/gpl3/binutils.old/dist/binutils/ |
| arparse.h | 61 LIST = 262, /* LIST */ 87 #define LIST 262 109 struct list *list ; member in union:YYSTYPE
|
| /src/games/atc/ |
| struct.h | 14 * notice, this list of conditions and the following disclaimer. 16 * notice, this list of conditions and the following disclaimer in the 104 } LIST;
|
| /src/external/bsd/ntp/dist/libntp/lib/isc/include/isc/ |
| util.h | 187 * List Macros. 189 #include <isc/list.h> /* Contractual promise. */ 191 #define LIST(type) ISC_LIST(type) 195 #define HEAD(list) ISC_LIST_HEAD(list) 196 #define TAIL(list) ISC_LIST_TAIL(list) 197 #define EMPTY(list) ISC_LIST_EMPTY(list) 200 #define APPEND(list, elt, link) ISC_LIST_APPEND(list, elt, link [all...] |
| /src/external/apache2/llvm/dist/llvm/utils/lit/lit/ |
| TestRunner.py | 135 # Empty the list and note that we've done a pass over the list 136 self._procs = [] # Python2 doesn't have list.clear() 149 self.outputFiles = list(outputFiles) 501 # from a file are represented with a list [file, mode, file-object] 576 # Mutate the underlying redirect list so that we can redirect stdout 636 args = list(j.args) 1031 Parse the commands in an integrated test script file into a list of 1238 COMMAND: A keyword taking a list of shell commands. Ex 'RUN:' 1239 LIST: A keyword taking a comma-separated list of values [all...] |
| /src/external/bsd/tmux/dist/ |
| format-draw.c | 122 /* Draw list part of format. */ 125 u_int ocx, u_int ocy, u_int offset, u_int width, struct screen *list, 131 /* If there is enough space for the list, draw it entirely. */ 132 if (width >= list->cx) { 133 format_draw_put(octx, ocx, ocy, list, frs, offset, 0, width); 137 /* The list needs to be trimmed. Try to keep the focus visible. */ 143 if (start + width > list->cx) 144 start = list->cx - width; 154 if (start + width < list->cx && width > list_right->cx) { 162 /* Draw the list screen itself. * [all...] |
| /src/external/mpl/dhcp/bind/dist/lib/isc/include/isc/ |
| util.h | 204 * List Macros. 206 #include <isc/list.h> /* Contractual promise. */ 208 #define LIST(type) ISC_LIST(type) 212 #define HEAD(list) ISC_LIST_HEAD(list) 213 #define TAIL(list) ISC_LIST_TAIL(list) 214 #define EMPTY(list) ISC_LIST_EMPTY(list) 217 #define APPEND(list, elt, link) ISC_LIST_APPEND(list, elt, link [all...] |