/external/elfutils/libasm/ |
asm_newsubscn.c | 31 AsmScn_t *newp; local 52 newp = (AsmScn_t *) malloc (sizeof (AsmScn_t)); 53 if (newp == NULL) 57 newp->ctx = runp->ctx; 60 newp->subsection_id = nr; 63 newp->type = runp->type; 66 newp->data.up = runp->subsection_id == 0 ? runp : runp->data.up; 69 newp->offset = 0; 71 newp->max_align = 1; 74 newp->content = NULL [all...] |
asm_align.c | 127 struct AsmData *newp; local 135 newp = (struct AsmData *) malloc (sizeof (struct AsmData) + size); 136 if (newp == NULL) 139 newp->next = asmscn->content->next; 140 asmscn->content = asmscn->content->next = newp;
|
/external/elfutils/libdw/ |
libdw_alloc.c | 31 struct libdw_memblock *newp = malloc (size); local 32 if (newp == NULL) 35 newp->size = newp->remaining = size - offsetof (struct libdw_memblock, mem); 37 newp->prev = dbg->mem_tail; 38 dbg->mem_tail = newp; 40 return newp->mem;
|
libdw_findcu.c | 82 struct Dwarf_CU *newp = libdw_typed_alloc (dbg, struct Dwarf_CU); local 84 newp->dbg = dbg; 85 newp->start = oldoff; 86 newp->end = dbg->next_cu_offset; 87 newp->address_size = address_size; 88 newp->offset_size = offset_size; 89 Dwarf_Abbrev_Hash_init (&newp->abbrev_hash, 41); 90 newp->orig_abbrev_offset = newp->last_abbrev_offset = abbrev_offset; 91 newp->lines = NULL [all...] |
dwarf_getloclist.c | 287 struct loc_s *newp = libdw_alloc (dbg, struct loc_s, sizeof (struct loc_s), local 289 newp->addr = block.data; 290 newp->loc = result; 291 newp->nloc = *listlen; 292 (void) tsearch (newp, &cu->locs, loc_compare);
|
/external/elfutils/src/ |
ldscript.y | 347 struct filename_list *newp = new_filename_listelem ($3); 348 newp->next = $1->next; 349 $$ = $1->next = newp; 404 struct id_list *newp = new_id_listelem ($2); 405 newp->next = $1->next; 406 $$ = $1->next = newp; 439 struct expression *newp = (struct expression *) 440 obstack_alloc (&ld_state.smem, sizeof (*newp)); 442 newp->tag = tag; 443 return newp; [all...] |
ldscript.c | 1544 struct filename_list *newp = new_filename_listelem (yyvsp[0].str); local 1618 struct id_list *newp = new_id_listelem (yyvsp[-1].str); local 1894 struct expression *newp = (struct expression *) local 1905 struct input_section_name *newp = (struct input_section_name *) local 1917 struct input_rule *newp = (struct input_rule *) local 1929 struct output_rule *newp = (struct output_rule *) local 1943 struct assignment *newp = (struct assignment *) local 1959 struct output_segment *newp; local 1994 struct filename_list *newp; local 2042 struct id_list *newp; local 2061 struct version *newp; local [all...] |
ldgeneric.c | 254 check_for_duplicate2 (struct usedfiles *newp, struct usedfiles *list) 272 if (unlikely (list->ino == newp->ino) 273 && unlikely (list->dev == newp->dev)) 275 close (newp->fd); 276 newp->fd = -1; 277 newp->status = closed; 278 if (newp->file_type == relocatable_file_type) 280 newp->rfname); 293 check_for_duplicate (struct usedfiles *newp) 297 if (unlikely (fstat (newp->fd, &st) < 0) 1273 struct symbol *newp; local 1373 struct symbol *newp; local 1663 struct usedfiles *newp; local 1754 struct usedfiles *newp; local 1919 struct usedfiles *newp; local 1952 char *newp; local 2213 struct scnhead *newp; local 2695 struct scnhead *newp; local 2984 struct member *newp; local 4064 struct scnlist *newp; local 4782 struct Ebl_Strtab *newp = ebl_strtabinit (true); local 4852 char *newp = (char *) obstack_alloc (&ld_state.smem, namelen); local [all...] |
ld.c | 654 struct file_list *newp; local 656 newp = (struct file_list *) xmalloc (sizeof (struct file_list)); 657 newp->name = arg; 659 newp->next = NULL; 661 CSNGL_LIST_ADD_REAR (input_file_list, newp); 1187 struct pathelement *newp; local 1218 struct pathelement *newp; local [all...] |
ldlex.l | 307 char *newp = (char *) alloca (idmax *= 2); 308 id = memcpy (newp, id, idlen);
|
nm.c | 702 struct local_name *newp local 703 = (struct local_name *) xmalloc (sizeof (*newp)); 704 newp->name = name; 705 newp->file = dwarf_filesrc (files, fileidx, NULL, NULL); 706 newp->lineno = lineno; 707 newp->lowpc = lowpc; 708 newp->highpc = highpc; 712 if (tsearch (newp, &local_root, local_compare) == NULL) [all...] |
/external/elfutils/lib/ |
list.h | 18 #define CDBL_LIST_ADD_REAR(first, newp) \ 20 __typeof (newp) _newp = (newp); \ 61 #define SNGL_LIST_PUSH(first, newp) \ 63 __typeof (newp) _newp = (newp); \ 71 #define CSNGL_LIST_ADD_REAR(first, newp) \ 73 __typeof (newp) _newp = (newp); \
|
/external/elfutils/libelf/ |
elf_newscn.c | 74 Elf_ScnList *newp; local 78 newp = (Elf_ScnList *) calloc (sizeof (Elf_ScnList) 81 if (newp == NULL) 87 result = &newp->data[0]; 90 ++newp->cnt; 93 newp->max = elf->state.elf.scnincr; 96 newp->data[0].index 100 elf->state.elf.scns_last = elf->state.elf.scns_last->next = newp;
|
elf_getarsym.c | 173 Elf_Arsym *newp; local 178 newp = (Elf_Arsym *) realloc (elf->state.ar.ar_sym, 180 if (newp == NULL) 187 elf->state.ar.ar_sym = newp;
|
elf_begin.c | 579 char *newp; local 613 newp = (char *) malloc (len); 614 if (newp != NULL) 620 elf->state.ar.long_names = (char *) memcpy (newp, 626 if ((size_t) pread (elf->fildes, newp, len, 632 free (newp); 636 elf->state.ar.long_names = newp; 642 runp = newp; 645 runp = (char *) memchr (runp, '/', newp + len - runp); 658 if (runp >= newp + len [all...] |
/bionic/libc/unistd/ |
fnmatch.c | 57 char *newp; local 121 switch (rangematch(pattern, *string, flags, &newp)) { 126 pattern = newp; 154 rangematch(const char *pattern, char test, int flags, char **newp) 203 *newp = (char *)pattern;
|
/external/e2fsprogs/intl/ |
plural.y | 66 struct expression *newp; 74 newp = (struct expression *) malloc (sizeof (*newp)); 75 if (newp != NULL) 77 newp->nargs = nargs; 78 newp->operation = op; 80 newp->val.args[i] = args[i]; 81 return newp;
|
dcigettext.c | 339 struct block_list *newp = (struct block_list *) malloc (sizeof (*newp)); \ 342 if (newp != NULL) { \ 343 newp->address = (addr); \ 344 newp->next = (list); \ 345 (list) = newp; \ 649 struct known_translation_t *newp; local 651 newp = (struct known_translation_t *) 654 if (newp != NULL) 656 newp->domainname [all...] |
plural.c | 87 struct expression *newp; local 95 newp = (struct expression *) malloc (sizeof (*newp)); 96 if (newp != NULL) 98 newp->nargs = nargs; 99 newp->operation = op; 101 newp->val.args[i] = args[i]; 102 return newp; [all...] |
/external/kernel-headers/original/linux/ |
cpumask.h | 301 const cpumask_t *oldp, const cpumask_t *newp, int nbits) 303 return bitmap_bitremap(oldbit, oldp->bits, newp->bits, nbits); 309 const cpumask_t *oldp, const cpumask_t *newp, int nbits) 311 bitmap_remap(dstp->bits, srcp->bits, oldp->bits, newp->bits, nbits);
|
nodemask.h | 316 const nodemask_t *oldp, const nodemask_t *newp, int nbits) 318 return bitmap_bitremap(oldbit, oldp->bits, newp->bits, nbits); 324 const nodemask_t *oldp, const nodemask_t *newp, int nbits) 326 bitmap_remap(dstp->bits, srcp->bits, oldp->bits, newp->bits, nbits);
|
/external/ppp/pppd/ |
main.c | 1259 struct callout *newp, *p, **pp; local 1264 if ((newp = (struct callout *) malloc(sizeof(struct callout))) == NULL) 1266 newp->c_arg = arg; 1267 newp->c_func = func; 1269 newp->c_time.tv_sec = timenow.tv_sec + secs; 1270 newp->c_time.tv_usec = timenow.tv_usec + usecs; 1271 if (newp->c_time.tv_usec >= 1000000) { 1272 newp->c_time.tv_sec += newp->c_time.tv_usec / 1000000; 1273 newp->c_time.tv_usec %= 1000000 [all...] |
/external/icu4c/tools/tzcode/ |
zdump.c | 166 static long delta(struct tm * newp, struct tm * oldp); 720 delta(newp, oldp) 721 struct tm * newp; 727 if (newp->tm_year < oldp->tm_year) 728 return -delta(oldp, newp); 730 for (tmy = oldp->tm_year; tmy < newp->tm_year; ++tmy) 732 result += newp->tm_yday - oldp->tm_yday; 734 result += newp->tm_hour - oldp->tm_hour; 736 result += newp->tm_min - oldp->tm_min; 738 result += newp->tm_sec - oldp->tm_sec [all...] |
/external/quake/quake/src/QW/client/ |
cl_ents.c | 268 packet_entities_t *oldp, *newp, dummy;
local 275 newp = &cl.frames[newpacket].packet_entities;
311 newp->num_entities = 0;
329 newp->entities[newindex] = oldp->entities[oldindex];
351 newp->entities[newindex] = oldp->entities[oldindex];
373 CL_ParseDelta (&cl_baselines[newnum], &newp->entities[newindex], word);
391 CL_ParseDelta (&oldp->entities[oldindex], &newp->entities[newindex], word);
398 newp->num_entities = newindex;
|
/external/webkit/Source/WebCore/manual-tests/NPN_Invoke/ |
main.c | 80 pluginFuncs->newp = NPP_New; 137 pluginFuncs->newp = (NPP_NewProcPtr)tVectorForFunctionPointer((FunctionPointer)NPP_New);
|