/external/elfutils/libasm/ |
asm_newsubscn.c | 44 AsmScn_t *newp; local 65 newp = (AsmScn_t *) malloc (sizeof (AsmScn_t)); 66 if (newp == NULL) 70 newp->ctx = runp->ctx; 73 newp->subsection_id = nr; 76 newp->type = runp->type; 79 newp->data.up = runp->subsection_id == 0 ? runp : runp->data.up; 82 newp->offset = 0; 84 newp->max_align = 1; 87 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 | 81 static int prob_diff_update_cost(vpx_prob newp, vpx_prob oldp) { 82 int delp = remap_prob(newp, oldp); 114 void vp9_write_prob_diff_update(vpx_writer *w, vpx_prob newp, vpx_prob oldp) { 115 const int delp = remap_prob(newp, oldp); 124 vpx_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, oldp) + vp9_cost_upd256 146 int newp; local 202 vpx_prob newp = get_binary_prob(ct[0], ct[1]); local [all...] |
vp9_subexp.h | 24 vpx_prob newp, vpx_prob oldp);
|
/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...] |
vp9_subexp.h | 23 vp9_prob newp, vp9_prob oldp);
|
/external/elfutils/libdw/ |
libdw_findcu.c | 102 struct Dwarf_CU *newp = libdw_typed_alloc (dbg, struct Dwarf_CU); local 104 newp->dbg = dbg; 105 newp->start = oldoff; 106 newp->end = *offsetp; 107 newp->address_size = address_size; 108 newp->offset_size = offset_size; 109 newp->version = version; 110 newp->type_sig8 = type_sig8; 111 newp->type_offset = type_offset; 112 Dwarf_Abbrev_Hash_init (&newp->abbrev_hash, 41) 158 struct Dwarf_CU *newp = __libdw_intern_next_unit (dbg, debug_types); local [all...] |
libdw_alloc.c | 47 struct libdw_memblock *newp = malloc (size); local 48 if (newp == NULL) 51 uintptr_t result = ((uintptr_t) newp->mem + align - 1) & ~(align - 1); 53 newp->size = size - offsetof (struct libdw_memblock, mem); 54 newp->remaining = (uintptr_t) newp + size - (result + minsize); 56 newp->prev = dbg->mem_tail; 57 dbg->mem_tail = newp;
|
/external/jemalloc/include/jemalloc/internal/ |
ctl.h | 71 int ctl_byname(const char *name, void *oldp, size_t *oldlenp, void *newp, 76 void *newp, size_t newlen); 82 #define xmallctl(name, oldp, oldlenp, newp, newlen) do { \ 83 if (je_mallctl(name, oldp, oldlenp, newp, newlen) \ 100 #define xmallctlbymib(mib, miblen, oldp, oldlenp, newp, newlen) do { \ 101 if (je_mallctlbymib(mib, miblen, oldp, oldlenp, newp, \
|
/external/elfutils/src/ |
ldscript.y | 431 struct id_list *newp = new_id_listelem ($2); 432 newp->next = $1->next; 433 $$ = $1->next = newp; 466 struct expression *newp = (struct expression *) 467 obstack_alloc (&ld_state.smem, sizeof (*newp)); 469 newp->tag = tag; 470 return newp; 477 struct input_section_name *newp = (struct input_section_name *) 478 obstack_alloc (&ld_state.smem, sizeof (*newp)); 480 newp->name = name [all...] |
/external/toybox/toys/lsb/ |
passwd.c | 49 static void strength_check(char *newp, char *oldp, char *user) 53 if (strlen(newp) < 6) { //Min passwd len 57 if (!newp[0]) return; //passwd is empty 59 if (str_check(newp, user)) { 64 if (oldp[0] && str_check(newp, oldp)) { 85 char *newp = NULL; local 90 newp = xstrdup(toybuf); 91 if (CFG_PASSWD_SAD) strength_check(newp, oldp, user); 93 free(newp); 97 if (!strcmp(newp, toybuf)) return newp 109 char *name = NULL, *pass = NULL, *encrypted = NULL, *newp = NULL, local [all...] |
/external/elfutils/lib/ |
list.h | 33 #define CDBL_LIST_ADD_REAR(first, newp) \ 35 __typeof (newp) _newp = (newp); \ 76 #define SNGL_LIST_PUSH(first, newp) \ 78 __typeof (newp) _newp = (newp); \ 86 #define CSNGL_LIST_ADD_REAR(first, newp) \ 88 __typeof (newp) _newp = (newp); \
|
/toolchain/binutils/binutils-2.25/gas/ |
subsegs.c | 80 frchainS *newP; /* address of new frchain */ 107 newP = (frchainS *) obstack_alloc (&frchains, sizeof (frchainS)); 108 newP->frch_subseg = subseg; 109 newP->fix_root = NULL; 110 newP->fix_tail = NULL; 111 obstack_begin (&newP->frch_obstack, chunksize); 113 obstack_alignment_mask (&newP->frch_obstack) = __alignof__ (fragS) - 1; 115 newP->frch_frag_now = frag_alloc (&newP->frch_obstack); 116 newP->frch_frag_now->fr_type = rs_fill [all...] |
/prebuilts/go/darwin-x86/test/ |
complit.go | 52 func NewP(a, b int) *P { 115 p1 := NewP(1, 2) 116 p2 := NewP(1, 2) 118 panic("NewP")
|
/prebuilts/go/linux-x86/test/ |
complit.go | 52 func NewP(a, b int) *P { 115 p1 := NewP(1, 2) 116 p2 := NewP(1, 2) 118 panic("NewP")
|
/external/jemalloc/src/ |
ctl.c | 46 size_t *oldlenp, void *newp, size_t newlen); 905 ctl_byname(const char *name, void *oldp, size_t *oldlenp, void *newp, 926 ret = node->ctl(mib, depth, oldp, oldlenp, newp, newlen); 953 void *newp, size_t newlen) 991 ret = node->ctl(mib, miblen, oldp, oldlenp, newp, newlen); 1038 if (newp != NULL || newlen != 0) { \ 1052 if ((oldp != NULL && oldlenp != NULL) && (newp != NULL || \ 1073 if (newp != NULL) { \ 1078 (v) = *(t *)newp; \ 1089 void *newp, size_t newlen) [all...] |
/external/elfutils/libelf/ |
elf_newscn.c | 85 Elf_ScnList *newp = NULL; local 97 newp = (Elf_ScnList *) calloc (sizeof (Elf_ScnList) 100 if (newp == NULL) 106 result = &newp->data[0]; 109 ++newp->cnt; 112 newp->max = elf->state.elf.scnincr; 115 newp->data[0].index 119 elf->state.elf.scns_last = elf->state.elf.scns_last->next = newp;
|
/toolchain/binutils/binutils-2.25/cpu/ |
m32c.opc | 616 const char *newp = *strp; 620 errmsg = cgen_parse_unsigned_integer (cd, & newp, opindex, & bit); 624 if (*newp != ',') 627 ++newp; 629 if (strncmp (newp, "0x0", 3) == 0 630 || (newp[0] == '0' && newp[1] != 'x')) 633 errmsg = cgen_parse_unsigned_integer (cd, & newp, opindex, & base); 651 if (strncmp (newp, "[sb]", 4) != 0) 658 *strp = newp; [all...] |
/external/curl/lib/ |
gopher.c | 96 char *newp; local 100 newp = path; 101 newp+=2; 104 j = strlen(newp); 106 if(newp[i] == '?') 107 newp[i] = '\x09'; 110 sel = curl_easy_unescape(data, newp, 0, &len);
|
dict.c | 96 char *newp; local 103 newp = curl_easy_unescape(data, inputbuff, 0, &len); 104 if(!newp) 111 for(ptr = newp; 122 free(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;
|
/external/jemalloc/include/jemalloc/ |
jemalloc_protos.h | 45 void *oldp, size_t *oldlenp, void *newp, size_t newlen); 49 size_t miblen, void *oldp, size_t *oldlenp, void *newp, size_t newlen);
|
jemalloc_protos_jet.h | 45 void *oldp, size_t *oldlenp, void *newp, size_t newlen); 49 size_t miblen, void *oldp, size_t *oldlenp, void *newp, size_t newlen);
|
/toolchain/binutils/binutils-2.25/intl/ |
plural.y | 81 struct expression *newp; 89 newp = (struct expression *) malloc (sizeof (*newp)); 90 if (newp != NULL) 92 newp->nargs = nargs; 93 newp->operation = op; 95 newp->val.args[i] = args[i]; 96 return newp;
|
/external/elfutils/libcpu/ |
i386_parse.y | 269 struct synonym *newp = xmalloc (sizeof (*newp)); 270 newp->from = $2; 271 newp->to = $3; 272 if (tfind (newp, &synonyms, compare_syn) != NULL) 276 else if (tsearch ( newp, &synonyms, compare_syn) == NULL) 298 struct instruction *newp = xcalloc (sizeof (*newp), 303 newp->repe = 1; 305 newp->rep = 1 [all...] |