Searched defs:new_p (Results 1 - 9 of 9) sorted by relevance

/external/dbus/dbus/
H A Ddbus-marshal-byteswap.c40 unsigned char **new_p)
211 if (new_p)
212 *new_p = p;
35 byteswap_body_helper(DBusTypeReader *reader, dbus_bool_t walk_reader_to_end, int old_byte_order, int new_byte_order, unsigned char *p, unsigned char **new_p) argument
H A Ddbus-marshal-validate.c304 const unsigned char **new_p)
676 if (new_p)
677 *new_p = p;
298 validate_body_helper(DBusTypeReader *reader, int byte_order, dbus_bool_t walk_reader_to_end, int total_depth, const unsigned char *p, const unsigned char *end, const unsigned char **new_p) argument
/external/chromium/base/allocator/
H A Dallocator_unittests.cc404 void* new_p = realloc(p, start_sizes[s] + deltas[d]); local
405 CHECK_EQ(p, new_p); // realloc should not allocate new memory
409 void* new_p = realloc(p, start_sizes[s] - deltas[d]); local
410 CHECK_EQ(p, new_p); // realloc should not allocate new memory
/external/libvpx/vp8/encoder/
H A Dencodemv.c231 const vp8_prob new_p,
237 const int new_b = vp8_cost_branch(ct, new_p);
242 *cur_p = new_p;
244 vp8_write_literal(w, new_p >> 1, 7);
397 const vp8_prob *const new_p = Pnew + MVPshort; local
404 update(w, short_bct[j], cur_p + j, new_p[j], *Pupdate++, updated);
410 const vp8_prob *const new_p = Pnew + MVPbits; local
417 update(w, bit_ct[j], cur_p + j, new_p[j], *Pupdate++, updated);
227 update( vp8_writer *const w, const unsigned int ct[2], vp8_prob *const cur_p, const vp8_prob new_p, const vp8_prob update_p, int *updated ) argument
/external/quake/quake/src/QW/server/
H A Dpr_edict.c687 char *new, *new_p; local
692 new_p = new;
700 *new_p++ = '\n';
702 *new_p++ = '\\';
705 *new_p++ = string[i];
/external/quake/quake/src/WinQuake/
H A Dpr_edict.cpp695 char *new_, *new_p; local
700 new_p = new_;
708 *new_p++ = '\n';
710 *new_p++ = '\\';
713 *new_p++ = string[i];
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_allocator64.h516 void *new_p = Allocate(cache, new_size, alignment); local
517 if (new_p)
518 internal_memcpy(new_p, p, memcpy_size);
520 return new_p;
/external/webp/src/enc/
H A Dframe.c191 const int new_p = CalcTokenProba(nb, total); local
194 const int new_cost = BranchCost(nb, total, new_p)
200 proba->coeffs_[t][b][c][p] = new_p;
201 has_changed |= (new_p != old_p);
/external/openssl/ssl/
H A Dkssl.c2163 krb5_principal new_p = NULL; local
2167 (new_p = (krb5_principal) calloc(1, sizeof(krb5_principal_data)))
2169 new_p->length = 2;
2170 new_p->data = p_data;
2174 krb5_princ_set_realm_length(context, new_p, rlen);
2175 krb5_princ_set_realm_data(context, new_p, new_r);
2177 if ((new_p->data[0].data = calloc(1, slen + 1)) == NULL) goto err;
2178 memcpy(new_p->data[0].data, svc, slen);
2179 new_p->data[0].length = slen;
2181 if ((new_p
[all...]

Completed in 193 milliseconds