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

1 2

  /external/elfutils/0.153/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/elfutils/0.153/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;
elf_getarsym.c 203 Elf_Arsym *newp = (Elf_Arsym *) realloc (elf->state.ar.ar_sym, local
205 if (newp == NULL)
212 elf->state.ar.ar_sym = newp;
elf_begin.c 666 char *newp; local
701 newp = (char *) malloc (len);
702 if (newp != NULL)
708 elf->state.ar.long_names = (char *) memcpy (newp,
714 if (unlikely ((size_t) pread_retry (elf->fildes, newp, len,
720 free (newp);
724 elf->state.ar.long_names = newp;
730 runp = newp;
733 runp = (char *) memchr (runp, '/', newp + len - runp);
746 if (runp >= newp + len
    [all...]
  /external/elfutils/0.153/libdw/
libdw_alloc.c 68 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;
dwarf_getsrc_file.c 165 Dwarf_Line **newp = realloc (match, local
168 if (newp == NULL)
174 match = newp;
libdw_findcu.c 93 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->abbrev_hash, 41)
164 struct Dwarf_CU *newp = __libdw_intern_next_unit (dbg, debug_types); local
    [all...]
dwarf_getlocation.c 194 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 == NULL
    [all...]
  /external/elfutils/0.153/libdwfl/
dwfl_module_getsrc_file.c 159 Dwfl_Line **newp = realloc (match, local
162 if (newp == NULL)
168 match = newp;
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
vp9_subexp.c 76 static int prob_diff_update_cost(vp9_prob newp, vp9_prob oldp) {
77 int delp = remap_prob(newp, oldp);
109 void vp9_write_prob_diff_update(vp9_writer *w, vp9_prob newp, vp9_prob oldp) {
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, oldp) + vp9_cost_upd256
146 int newp; local
182 vp9_prob newp = get_binary_prob(ct[0], ct[1]); local
    [all...]
vp9_bitstream.c 532 vp9_prob newp = new_coef_probs[i][j][k][l][t]; local
539 old_coef_probs[i][j][k][l], &newp, upd);
542 frame_branch_ct[i][j][k][l][t], oldp, &newp, upd);
543 if (s > 0 && newp != oldp)
569 vp9_prob newp = new_coef_probs[i][j][k][l][t]; local
577 old_coef_probs[i][j][k][l], &newp, upd);
581 *oldp, &newp, upd);
582 if (s > 0 && newp != *oldp)
587 vp9_write_prob_diff_update(bc, newp, *oldp);
588 *oldp = newp;
614 vp9_prob newp = new_coef_probs[i][j][k][l][t]; local
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_subexp.c 76 static int prob_diff_update_cost(vp9_prob newp, vp9_prob oldp) {
77 int delp = remap_prob(newp, oldp);
109 void vp9_write_prob_diff_update(vp9_writer *w, vp9_prob newp, vp9_prob oldp) {
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, oldp) + vp9_cost_upd256
146 int newp; local
182 vp9_prob newp = get_binary_prob(ct[0], ct[1]); local
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_subexp.c 76 static int prob_diff_update_cost(vp9_prob newp, vp9_prob oldp) {
77 int delp = remap_prob(newp, oldp);
109 void vp9_write_prob_diff_update(vp9_writer *w, vp9_prob newp, vp9_prob oldp) {
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, oldp) + vp9_cost_upd256
146 int newp; local
182 vp9_prob newp = get_binary_prob(ct[0], ct[1]); local
    [all...]
  /external/bison/lib/
getopt.c 527 struct option_list *newp = malloc (sizeof (*newp));
528 newp->p = p;
529 newp->next = ambig_list;
530 ambig_list = newp;
523 struct option_list *newp = malloc (sizeof (*newp)); local
    [all...]
  /external/elfutils/0.153/src/
objdump.c 210 struct section_list *newp = xmalloc (sizeof (*newp)); local
212 newp->scnndx = strtoul (arg, &endp, 0);
214 newp->is_name = false;
217 newp->name = arg;
218 newp->is_name = true;
220 newp->next = section_list;
221 section_list = newp;
ar.c 173 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->next = to_copy->next
1167 struct armem *newp = alloca (sizeof (struct armem)); local
    [all...]
elfcmp.c 287 struct region *newp = (struct region *) alloca (sizeof (*newp)); local
288 newp->from = shdr1->sh_offset;
289 newp->to = shdr1->sh_offset + shdr1->sh_size;
290 newp->next = regions;
291 regions = newp;
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);
1281 struct pathelement *newp; local
1312 struct pathelement *newp; local
    [all...]
nm.c 714 struct local_name *newp local
715 = (struct local_name *) xmalloc (sizeof (*newp));
716 newp->name = name;
717 newp->file = dwarf_filesrc (files, fileidx, NULL, NULL);
718 newp->lineno = lineno;
719 newp->lowpc = lowpc;
720 newp->highpc = highpc;
724 if (tsearch (newp, &local_root, local_compare) == NULL)
    [all...]
  /external/e2fsprogs/intl/
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...]
  /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...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
bitstream.c 841 const vp8_prob oldp, const vp8_prob newp,
845 const int new_b = vp8_cost_branch(ct, newp);
896 const vp8_prob newp = cpi->frame_coef_probs [i][j][k][t]; local
899 const int s = prob_update_savings(ct, oldp, newp, upd);
902 (cpi->common.frame_type == KEY_FRAME && newp != oldp))
957 const vp8_prob newp = cpi->frame_coef_probs [i][j][k][t]; local
960 const int s = prob_update_savings(ct, oldp, newp, upd);
1104 const vp8_prob newp = cpi->frame_coef_probs[i][j][k][t]; local
1110 prob_update_savings(ct, oldp, newp, upd);
1128 const vp8_prob newp = cpi->frame_coef_probs [i][j][k][t] local
1224 const vp8_prob newp = cpi->common.fc.coef_probs [i][j][k][t]; local
    [all...]
  /external/chromium_org/third_party/npapi/bindings/
npfunctions.h 133 NPP_NewProcPtr newp; member in struct:_NPPluginFuncs

Completed in 1706 milliseconds

1 2