HomeSort by relevance Sort by last modified time
    Searched full:newp (Results 1 - 25 of 155) sorted by null

1 2 3 4 5 6 7

  /external/elfutils/libasm/
asm_newsubscn.c 43 AsmScn_t *newp; local
64 newp = (AsmScn_t *) malloc (sizeof (AsmScn_t));
65 if (newp == NULL)
69 newp->ctx = runp->ctx;
72 newp->subsection_id = nr;
75 newp->type = runp->type;
78 newp->data.up = runp->subsection_id == 0 ? runp : runp->data.up;
81 newp->offset = 0;
83 newp->max_align = 1;
86 newp->content = NULL
    [all...]
asm_align.c 156 struct AsmData *newp; local
164 newp = (struct AsmData *) malloc (sizeof (struct AsmData) + size);
165 if (newp == NULL)
168 newp->next = asmscn->content->next;
169 asmscn->content = asmscn->content->next = newp;
  /external/libvpx/libvpx/vp9/encoder/
vp9_subexp.c 110 static int prob_diff_update_cost(vp9_prob newp, vp9_prob oldp) {
111 int delp = remap_prob(newp, oldp);
152 void vp9_write_prob_diff_update(vp9_writer *w, vp9_prob newp, vp9_prob oldp) {
153 const int delp = remap_prob(newp, oldp);
168 vp9_prob newp, bestnewp = oldp; local
171 for (newp = *bestp; newp != oldp; newp += step) {
172 const int new_b = cost_branch256(ct, newp);
173 const int update_b = prob_diff_update_cost(newp, oldp) + vp9_cost_upd256
190 int newp; local
226 vp9_prob newp = get_binary_prob(ct[0], ct[1]); local
    [all...]
vp9_subexp.h 19 vp9_prob newp, vp9_prob oldp);
  /external/elfutils/src/
ldscript.y 439 struct id_list *newp = new_id_listelem ($2);
440 newp->next = $1->next;
441 $$ = $1->next = newp;
474 struct expression *newp = (struct expression *)
475 obstack_alloc (&ld_state.smem, sizeof (*newp));
477 newp->tag = tag;
478 return newp;
485 struct input_section_name *newp = (struct input_section_name *)
486 obstack_alloc (&ld_state.smem, sizeof (*newp));
488 newp->name = name
    [all...]
ldscript.c 2006 struct id_list *newp = new_id_listelem ((yyvsp[(2) - (3)].str)); local
2269 struct expression *newp = (struct expression *) local
2280 struct input_section_name *newp = (struct input_section_name *) local
2292 struct input_rule *newp = (struct input_rule *) local
2304 struct output_rule *newp = (struct output_rule *) local
2318 struct assignment *newp = (struct assignment *) local
2334 struct output_segment *newp; local
2369 struct filename_list *newp; local
2432 struct id_list *newp; local
2451 struct version *newp; local
    [all...]
ar.c 172 char *newp = alloca (len + 1); local
173 newp[0] = '-';
174 memcpy (&newp[1], argv[1], len);
175 argv[1] = newp;
955 struct armem *newp = alloca (sizeof (struct armem)); local
956 newp->old_off = elf_getaroff (subelf);
957 newp->off = cur_off;
963 to_copy = newp->next = newp;
966 newp->next = to_copy->next
1139 struct armem *newp = alloca (sizeof (struct armem)); local
    [all...]
ldgeneric.c 285 check_for_duplicate2 (struct usedfiles *newp, struct usedfiles *list)
303 if (unlikely (list->ino == newp->ino)
304 && unlikely (list->dev == newp->dev))
306 close (newp->fd);
307 newp->fd = -1;
308 newp->status = closed;
309 if (newp->file_type == relocatable_file_type)
311 newp->rfname);
324 check_for_duplicate (struct usedfiles *newp)
328 if (unlikely (fstat (newp->fd, &st) < 0)
1435 struct symbol *newp; local
1541 struct symbol *newp; local
1837 struct usedfiles *newp; local
1928 struct usedfiles *newp; local
2105 struct usedfiles *newp; local
2138 char *newp; local
2418 struct scnhead *newp; local
2908 struct scnhead *newp; local
3202 struct member *newp; local
4751 struct scnlist *newp; local
5496 struct Ebl_Strtab *newp = ebl_strtabinit (true); local
5566 char *newp = (char *) obstack_alloc (&ld_state.smem, namelen); local
    [all...]
ld.c 732 struct file_list *newp; local
734 newp = (struct file_list *) xmalloc (sizeof (struct file_list));
735 newp->name = arg;
737 newp->next = NULL;
739 CSNGL_LIST_ADD_REAR (input_file_list, newp);
1280 struct pathelement *newp; local
1311 struct pathelement *newp; local
    [all...]
  /external/elfutils/libdw/
libdw_findcu.c 129 struct Dwarf_CU *newp = libdw_typed_alloc (dbg, struct Dwarf_CU); local
131 newp->dbg = dbg;
132 newp->start = oldoff;
133 newp->end = dbg->next_cu_offset;
134 newp->address_size = address_size;
135 newp->offset_size = offset_size;
136 newp->version = version;
137 Dwarf_Abbrev_Hash_init (&newp->abbrev_hash, 41);
138 newp->orig_abbrev_offset = newp->last_abbrev_offset = abbrev_offset
    [all...]
libdw_alloc.c 71 struct libdw_memblock *newp = malloc (size); local
72 if (newp == NULL)
75 uintptr_t result = ((uintptr_t) newp->mem + align - 1) & ~(align - 1);
77 newp->size = size - offsetof (struct libdw_memblock, mem);
78 newp->remaining = (uintptr_t) newp + size - (result + minsize);
80 newp->prev = dbg->mem_tail;
81 dbg->mem_tail = newp;
  /external/elfutils/lib/
list.h 54 #define CDBL_LIST_ADD_REAR(first, newp) \
56 __typeof (newp) _newp = (newp); \
97 #define SNGL_LIST_PUSH(first, newp) \
99 __typeof (newp) _newp = (newp); \
107 #define CSNGL_LIST_ADD_REAR(first, newp) \
109 __typeof (newp) _newp = (newp); \
  /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...]
  /external/elfutils/libelf/
elf_newscn.c 107 Elf_ScnList *newp; local
111 newp = (Elf_ScnList *) calloc (sizeof (Elf_ScnList)
114 if (newp == NULL)
120 result = &newp->data[0];
123 ++newp->cnt;
126 newp->max = elf->state.elf.scnincr;
129 newp->data[0].index
133 elf->state.elf.scns_last = elf->state.elf.scns_last->next = newp;
  /external/elfutils/libcpu/
i386_parse.y 265 struct synonym *newp = xmalloc (sizeof (*newp));
266 newp->from = $2;
267 newp->to = $3;
268 if (tfind (newp, &synonyms, compare_syn) != NULL)
272 else if (tsearch ( newp, &synonyms, compare_syn) == NULL)
294 struct instruction *newp = xcalloc (sizeof (*newp),
299 newp->repe = 1;
301 newp->rep = 1
    [all...]
  /ndk/sources/host-tools/make-3.81/glob/
glob.c 551 char *newp;
576 newp = (char *) __alloca (dirlen + 1);
578 *((char *) mempcpy (newp, pattern, dirlen)) = '\0';
580 memcpy (newp, pattern, dirlen);
581 newp[dirlen] = '\0';
583 dirname = newp;
702 char *newp;
704 newp = (char *) __alloca (home_len + dirlen);
706 mempcpy (mempcpy (newp, home_dir, home_len),
709 memcpy (newp, home_dir, home_len)
550 char *newp; local
701 char *newp; local
725 char *newp; local
774 char *newp; local
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/lib/
libanl-2.7.so 
libanl.so 
libanl.so.1 
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/lib/
libanl-2.7.so 
libanl.so 
libanl.so.1 
  /external/stlport/test/eh/
TestClass.h 114 int *newP = new int( rhs.value() );
116 p = newP;
  /external/libsepol/src/
mls.h 56 policydb_t * newp, context_struct_t * context);

Completed in 1011 milliseconds

1 2 3 4 5 6 7