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

1 2 3 4

  /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 78 static int prob_diff_update_cost(vpx_prob newp, vpx_prob oldp) {
79 int delp = remap_prob(newp, oldp);
111 void vp9_write_prob_diff_update(vpx_writer *w, vpx_prob newp, vpx_prob oldp) {
112 const int delp = remap_prob(newp, oldp);
120 vpx_prob newp, bestnewp = oldp; local
125 for (newp = *bestp; newp != oldp; newp += step) {
126 const int new_b = cost_branch256(ct, newp);
127 const int update_b = prob_diff_update_cost(newp, oldp) + upd_cost
144 int newp; local
183 vpx_prob newp = get_binary_prob(ct[0], ct[1]); local
    [all...]
vp9_subexp.h 22 void vp9_write_prob_diff_update(struct vpx_writer *w, vpx_prob newp,
  /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;
dwarf_getsrc_file.c 144 Dwarf_Line **newp = realloc (match, local
147 if (newp == NULL)
153 match = newp;
  /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); \
  /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/curl/lib/
gopher.c 95 char *newp; local
99 newp = path;
100 newp += 2;
103 j = strlen(newp);
105 if(newp[i] == '?')
106 newp[i] = '\x09';
109 result = Curl_urldecode(data, newp, 0, &sel, &len, FALSE);
dict.c 96 char *newp = NULL; local
103 CURLcode result = Curl_urldecode(data, inputbuff, 0, &newp, &len, FALSE);
104 if(!newp || result)
111 for(ptr = newp;
122 free(newp);
  /external/jemalloc/include/jemalloc/internal/
ctl.h 74 void *newp, size_t newlen);
79 size_t *oldlenp, void *newp, size_t newlen);
85 #define xmallctl(name, oldp, oldlenp, newp, newlen) do { \
86 if (je_mallctl(name, oldp, oldlenp, newp, newlen) \
103 #define xmallctlbymib(mib, miblen, oldp, oldlenp, newp, newlen) do { \
104 if (je_mallctlbymib(mib, miblen, oldp, oldlenp, newp, \
  /development/vndk/tools/header-checker/header-abi-diff/src/
abi_diff_wrappers.h 41 DiffWrapper(const T *oldp, const T *newp,
47 oldp_(oldp), newp_(newp) { }
  /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;
  /bionic/libc/bionic/
jemalloc.h 32 int je_mallctl(const char *name, void *oldp, size_t *oldlenp, void *newp, size_t newlen);
  /external/tensorflow/tensorflow/core/util/ctc/
ctc_beam_search.h 192 entry->newp.total +=
274 b->oldp = b->newp;
288 b->newp.label =
289 LogSumExp(b->newp.label,
293 b->newp.label += raw_input(b->label) - max_coeff;
296 b->newp.blank = b->oldp.total + raw_input(blank_index_) - max_coeff;
298 b->newp.total = LogSumExp(b->newp.blank, b->newp.label);
308 // originally in descending newp order and we copied newp to oldp
    [all...]
ctc_beam_entry.h 63 inline bool Active() const { return newp.total != kLogZero; }
95 BeamProbability newp; member in struct:tensorflow::ctc::ctc_beam_search::BeamEntry
138 return a->newp.total > b->newp.total;
  /toolchain/binutils/binutils-2.27/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/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;
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/
bcm_mpool_pub.h 164 * newp: OUTPUT The handle for the new pool, if creation is successful
178 bcm_mp_pool_h *newp);
207 * newp: OUTPUT The handle for the new pool, if creation is successful
217 bcm_mp_pool_h *newp);
  /toolchain/binutils/binutils-2.27/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...]
  /external/jemalloc/src/
ctl.c 46 void *oldp, size_t *oldlenp, void *newp, size_t newlen);
916 void *newp, size_t newlen)
936 ret = node->ctl(tsd, mib, depth, oldp, oldlenp, newp, newlen);
963 size_t *oldlenp, void *newp, size_t newlen)
1001 ret = node->ctl(tsd, mib, miblen, oldp, oldlenp, newp, newlen);
1048 if (newp != NULL || newlen != 0) { \
1062 if ((oldp != NULL && oldlenp != NULL) && (newp != NULL || \
1083 if (newp != NULL) { \
1088 (v) = *(t *)newp; \
1099 size_t *oldlenp, void *newp, size_t newlen)
    [all...]
  /external/selinux/libsepol/src/
mls.h 56 policydb_t * newp, context_struct_t * context);

Completed in 1080 milliseconds

1 2 3 4