Searched refs:newp (Results 1 - 25 of 67) sorted by relevance

123

/external/elfutils/0.153/libasm/
H A Dasm_newsubscn.c43 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
[all...]
H A Dasm_align.c156 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/elfutils/0.153/libdw/
H A Dlibdw_findcu.c93 struct Dwarf_CU *newp = libdw_typed_alloc (dbg, struct Dwarf_CU); local
95 newp->dbg = dbg;
96 newp->start = oldoff;
97 newp->end = *offsetp;
98 newp->address_size = address_size;
99 newp->offset_size = offset_size;
100 newp->version = version;
101 newp->type_sig8 = type_sig8;
102 newp->type_offset = type_offset;
103 Dwarf_Abbrev_Hash_init (&newp
164 struct Dwarf_CU *newp = __libdw_intern_next_unit (dbg, debug_types); local
[all...]
H A Dlibdw_alloc.c68 struct libdw_memblock *newp = malloc (size); local
69 if (newp == NULL)
72 uintptr_t result = ((uintptr_t) newp->mem + align - 1) & ~(align - 1);
74 newp->size = size - offsetof (struct libdw_memblock, mem);
75 newp->remaining = (uintptr_t) newp + size - (result + minsize);
77 newp->prev = dbg->mem_tail;
78 dbg->mem_tail = newp;
H A Ddwarf_getlocation.c194 struct loc_s *newp = libdw_alloc (attr->cu->dbg, local
197 newp->addr = attr->valp;
198 newp->loc = result;
199 newp->nloc = 1;
201 found = tsearch (newp, &attr->cu->locs, loc_compare);
507 struct loc_s *newp; local
509 newp = libdw_alloc (dbg, struct loc_s, sizeof (struct loc_s), 1);
512 newp = malloc (sizeof *newp);
513 if (newp
[all...]
H A Ddwarf_getsrc_file.c165 Dwarf_Line **newp = realloc (match, local
168 if (newp == NULL)
174 match = newp;
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
H A Dvp9_subexp.c81 static int prob_diff_update_cost(vp9_prob newp, vp9_prob oldp) { argument
82 int delp = remap_prob(newp, oldp);
114 void vp9_write_prob_diff_update(vp9_writer *w, vp9_prob newp, vp9_prob oldp) { argument
115 const int delp = remap_prob(newp, oldp);
124 vp9_prob newp, bestnewp = oldp; local
127 for (newp = *bestp; newp != oldp; newp += step) {
128 const int new_b = cost_branch256(ct, newp);
129 const int update_b = prob_diff_update_cost(newp, old
145 int newp; local
181 vp9_prob newp = get_binary_prob(ct[0], ct[1]); local
[all...]
H A Dvp9_subexp.h20 vp9_prob newp, vp9_prob oldp);
/external/elfutils/0.153/lib/
H A Dlist.h54 #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/elfutils/0.153/src/
H A Dldscript.y439 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
[all...]
H A Dar.c173 char *newp = alloca (len + 1); local
174 newp[0] = '-';
175 memcpy (&newp[1], argv[1], len);
176 argv[1] = newp;
982 struct armem *newp = alloca (sizeof (struct armem)); local
983 newp->old_off = elf_getaroff (subelf);
984 newp->off = cur_off;
990 to_copy = newp->next = newp;
993 newp
1167 struct armem *newp = alloca (sizeof (struct armem)); local
[all...]
H A Dldgeneric.c285 check_for_duplicate2 (struct usedfiles *newp, struct usedfiles *list) argument
301 if (unlikely (list->ino == newp->ino)
302 && unlikely (list->dev == newp->dev))
304 close (newp->fd);
305 newp->fd = -1;
306 newp->status = closed;
307 if (newp->file_type == relocatable_file_type)
309 newp->rfname);
322 check_for_duplicate (struct usedfiles *newp) argument
326 if (unlikely (fstat (newp
1433 struct symbol *newp; local
1539 struct symbol *newp; local
1835 struct usedfiles *newp; local
1926 struct usedfiles *newp; local
2103 struct usedfiles *newp; local
2136 char *newp; local
2416 struct scnhead *newp; local
2906 struct scnhead *newp; local
3200 struct member *newp; local
4749 struct scnlist *newp; local
5494 struct Ebl_Strtab *newp = ebl_strtabinit (true); local
5564 char *newp = (char *) obstack_alloc (&ld_state.smem, namelen); local
[all...]
H A Dld.c732 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);
1281 struct pathelement *newp; local
1286 newp = (struct pathelement *) obstack_alloc (&ld_state.smem, sizeof (*newp));
1287 newp->pname = str;
1288 newp
1312 struct pathelement *newp; local
[all...]
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_subexp.c76 static int prob_diff_update_cost(vp9_prob newp, vp9_prob oldp) { argument
77 int delp = remap_prob(newp, oldp);
109 void vp9_write_prob_diff_update(vp9_writer *w, vp9_prob newp, vp9_prob oldp) { argument
110 const int delp = remap_prob(newp, oldp);
125 vp9_prob newp, bestnewp = oldp; local
128 for (newp = *bestp; newp != oldp; newp += step) {
129 const int new_b = cost_branch256(ct, newp);
130 const int update_b = prob_diff_update_cost(newp, old
146 int newp; local
182 vp9_prob newp = get_binary_prob(ct[0], ct[1]); local
[all...]
H A Dvp9_subexp.h23 vp9_prob newp, vp9_prob oldp);
/external/jemalloc/include/jemalloc/internal/
H A Dctl.h68 int ctl_byname(const char *name, void *oldp, size_t *oldlenp, void *newp,
73 void *newp, size_t newlen);
79 #define xmallctl(name, oldp, oldlenp, newp, newlen) do { \
80 if (je_mallctl(name, oldp, oldlenp, newp, newlen) \
97 #define xmallctlbymib(mib, miblen, oldp, oldlenp, newp, newlen) do { \
98 if (je_mallctlbymib(mib, miblen, oldp, oldlenp, newp, \
/external/elfutils/0.153/libelf/
H A Delf_newscn.c107 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/e2fsprogs/intl/
H A Dplural.y66 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;
H A Ddcigettext.c339 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
[all...]
/external/elfutils/0.153/libcpu/
H A Di386_parse.y266 struct synonym *newp = xmalloc (sizeof (*newp));
267 newp->from = $2;
268 newp->to = $3;
269 if (tfind (newp, &synonyms, compare_syn) != NULL)
273 else if (tsearch ( newp, &synonyms, compare_syn) == NULL)
295 struct instruction *newp = xcalloc (sizeof (*newp),
300 newp->repe = 1;
302 newp
[all...]
/external/libsepol/src/
H A Dmls.h56 policydb_t * newp, context_struct_t * context);
/external/jemalloc/include/jemalloc/
H A Djemalloc_protos.h29 size_t *oldlenp, void *newp, size_t newlen);
33 void *oldp, size_t *oldlenp, void *newp, size_t newlen);
H A Djemalloc_protos_jet.h29 size_t *oldlenp, void *newp, size_t newlen);
33 void *oldp, size_t *oldlenp, void *newp, size_t newlen);
/external/elfutils/0.153/libdwfl/
H A Ddwfl_module_getsrc_file.c159 Dwfl_Line **newp = realloc (match, local
162 if (newp == NULL)
168 match = newp;
/external/jemalloc/src/
H A Dctl.c48 size_t *oldlenp, void *newp, size_t newlen);
820 ctl_byname(const char *name, void *oldp, size_t *oldlenp, void *newp, argument
841 ret = node->ctl(mib, depth, oldp, oldlenp, newp, newlen);
868 void *newp, size_t newlen)
906 ret = node->ctl(mib, miblen, oldp, oldlenp, newp, newlen);
953 if (newp != NULL || newlen != 0) { \
980 if (newp != NULL) { \
985 (v) = *(t *)newp; \
996 void *newp, size_t newlen) \
1019 void *newp, size_
867 ctl_bymib(const size_t *mib, size_t miblen, void *oldp, size_t *oldlenp, void *newp, size_t newlen) argument
1118 epoch_ctl(const size_t *mib, size_t miblen, void *oldp, size_t *oldlenp, void *newp, size_t newlen) argument
1181 thread_arena_ctl(const size_t *mib, size_t miblen, void *oldp, size_t *oldlenp, void *newp, size_t newlen) argument
1241 thread_tcache_enabled_ctl(const size_t *mib, size_t miblen, void *oldp, size_t *oldlenp, void *newp, size_t newlen) argument
1266 thread_tcache_flush_ctl(const size_t *mib, size_t miblen, void *oldp, size_t *oldlenp, void *newp, size_t newlen) argument
1310 arena_i_purge_ctl(const size_t *mib, size_t miblen, void *oldp, size_t *oldlenp, void *newp, size_t newlen) argument
1327 arena_i_dss_ctl(const size_t *mib, size_t miblen, void *oldp, size_t *oldlenp, void *newp, size_t newlen) argument
1377 arena_i_chunk_alloc_ctl(const size_t *mib, size_t miblen, void *oldp, size_t *oldlenp, void *newp, size_t newlen) argument
1402 arena_i_chunk_dalloc_ctl(const size_t *mib, size_t miblen, void *oldp, size_t *oldlenp, void *newp, size_t newlen) argument
1447 arenas_narenas_ctl(const size_t *mib, size_t miblen, void *oldp, size_t *oldlenp, void *newp, size_t newlen) argument
1469 arenas_initialized_ctl(const size_t *mib, size_t miblen, void *oldp, size_t *oldlenp, void *newp, size_t newlen) argument
1523 arenas_extend_ctl(const size_t *mib, size_t miblen, void *oldp, size_t *oldlenp, void *newp, size_t newlen) argument
1547 prof_active_ctl(const size_t *mib, size_t miblen, void *oldp, size_t *oldlenp, void *newp, size_t newlen) argument
1576 prof_dump_ctl(const size_t *mib, size_t miblen, void *oldp, size_t *oldlenp, void *newp, size_t newlen) argument
[all...]

Completed in 3639 milliseconds

123