/external/elfutils/libebl/ |
eblstrtab.c | 308 copystrings (struct Ebl_Strent *nodep, char **freep, size_t *offsetp) 310 if (nodep->left != NULL) 311 copystrings (nodep->left, freep, offsetp); 314 nodep->offset = *offsetp; 315 *freep = (char *) mempcpy (*freep, nodep->string, nodep->len); 316 *offsetp += nodep->len; 318 for (struct Ebl_Strent *subs = nodep->next; subs != NULL; subs = subs->next) 320 assert (subs->len < nodep->len); 321 subs->offset = nodep->offset + nodep->len - subs->len [all...] |
eblgstrtab.c | 326 copystrings (struct Ebl_GStrent *nodep, char **freep, size_t *offsetp) 330 if (nodep->left != NULL) 331 copystrings (nodep->left, freep, offsetp); 334 nodep->offset = *offsetp; 335 *freep = (char *) mempcpy (*freep, nodep->string, nodep->len * nodep->width); 336 *offsetp += nodep->len * nodep->width; 338 for (subs = nodep->next; subs != NULL; subs = subs->next [all...] |
eblwstrtab.c | 320 copystrings (struct Ebl_WStrent *nodep, wchar_t **freep, size_t *offsetp) 324 if (nodep->left != NULL) 325 copystrings (nodep->left, freep, offsetp); 328 nodep->offset = *offsetp; 329 *freep = wmempcpy (*freep, nodep->string, nodep->len); 330 *offsetp += nodep->len * sizeof (wchar_t); 332 for (subs = nodep->next; subs != NULL; subs = subs->next) 334 assert (subs->len < nodep->len); 335 subs->offset = nodep->offset + nodep->len - subs->len [all...] |
/external/elfutils/host-darwin-fixup/ |
AndroidFixup.h | 93 static void tdestroy(void *root, void (*free_node)(void *nodep))
|
/external/chromium_org/third_party/re2/re2/ |
onepass.cc | 405 uint8* nodep = nodes; local 410 nodep += statesize; 458 nodep += statesize; 593 nodep = new uint8[nalloc*statesize]; 594 memmove(nodep, nodes, nalloc*statesize); 596 nodes = nodep;
|
/external/regex-re2/re2/ |
onepass.cc | 405 uint8* nodep = nodes; local 410 nodep += statesize; 458 nodep += statesize; 593 nodep = new uint8[nalloc*statesize]; 594 memmove(nodep, nodes, nalloc*statesize); 596 nodes = nodep;
|
/external/bison/src/ |
ielr.c | 973 state_list **nodep = &first_state; local [all...] |
/external/elfutils/libcpu/ |
i386_parse.y | 864 nameout (const void *nodep, VISIT value, int level) 867 printf (" %s\n", *(const char **) nodep); 1072 print_op_str (const void *nodep, VISIT value, 1077 const char *str = (*(struct argstring **) nodep)->str; 1080 (*(struct argstring **) nodep)->idx = ++count_op_str; 1081 (*(struct argstring **) nodep)->off = off_op_str; 1088 print_op_str_idx (const void *nodep, VISIT value, 1092 printf (" %d,\n", (*(struct argstring **) nodep)->off); 1097 print_op_fct (const void *nodep, VISIT value, 1102 fprintf (outfile, " FCT_%s,\n", (*(struct argstring **) nodep)->str) [all...] |
i386_parse.c | [all...] |
/external/libsepol/src/ |
policydb.c | [all...] |