Searched refs:newp (Results 1 - 25 of 67) sorted by last modified time

123

/external/valgrind/main/coregrind/m_syswrap/
H A Dsyswrap-darwin.c3611 void*, newp, vki_size_t *, newlenp);
3624 PRE_MEM_READ("sysctl(newp)", ARG5, ARG6);
3653 if (ARG5/*newp*/ || ARG6/*newlen*/) {
H A Dsyswrap-linux.c3111 vki_sigaction_toK_t new, *newp; local
3119 newp = oldp = NULL;
3143 newp = &new;
3146 SET_STATUS_from_SysRes( VG_(do_sys_sigaction)(ARG1, newp, oldp) );
/external/qemu/distrib/sdl-1.2.15/src/stdlib/
H A DSDL_malloc.c3208 mchunkptr newp = (mchunkptr)(cp + offset); local
3210 newp->head = (psize|CINUSE_BIT);
3211 mark_inuse_foot(m, newp, psize);
3212 chunk_plus_offset(newp, psize)->head = FENCEPOST_HEAD;
3213 chunk_plus_offset(newp, psize+SIZE_T_SIZE)->head = 0;
3219 check_mmapped_chunk(m, newp);
3220 return newp;
3791 mchunkptr newp = 0; local
3800 newp = mmap_resize(m, oldp, nb);
3803 newp
3894 mchunkptr newp = (mchunkptr)pos; local
[all...]
/external/qemu/
H A Dgdbstub.c1340 static const char *get_feature_xml(const char *p, const char **newp) argument
1351 *newp = p + len;
/external/ppp/pppd/
H A Dmain.c1259 struct callout *newp, *p, **pp; local
1264 if ((newp = (struct callout *) malloc(sizeof(struct callout))) == NULL)
1266 newp->c_arg = arg;
1267 newp->c_func = func;
1269 newp->c_time.tv_sec = timenow.tv_sec + secs;
1270 newp->c_time.tv_usec = timenow.tv_usec + usecs;
1271 if (newp->c_time.tv_usec >= 1000000) {
1272 newp->c_time.tv_sec += newp->c_time.tv_usec / 1000000;
1273 newp
[all...]
/external/libvpx/libvpx/vp8/encoder/
H A Dbitstream.c841 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 local
840 prob_update_savings(const unsigned int *ct, const vp8_prob oldp, const vp8_prob newp, const vp8_prob upd) argument
1224 const vp8_prob newp = cpi->common.fc.coef_probs [i][j][k][t]; local
[all...]
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_bitstream.c533 vp9_prob newp = new_frame_coef_probs[i][j][k][l][t]; local
540 old_frame_coef_probs[i][j][k][l], &newp, upd);
543 frame_branch_ct[i][j][k][l][t], oldp, &newp, upd);
544 if (s > 0 && newp != oldp)
570 vp9_prob newp = new_frame_coef_probs[i][j][k][l][t]; local
578 old_frame_coef_probs[i][j][k][l], &newp, upd);
582 *oldp, &newp, upd);
583 if (s > 0 && newp != *oldp)
588 vp9_write_prob_diff_update(bc, newp, *oldp);
589 *oldp = newp;
615 vp9_prob newp = new_frame_coef_probs[i][j][k][l][t]; local
[all...]
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/libsepol/src/
H A Dmls.c550 * policy `oldp' to the values specified in the policy `newp'.
553 policydb_t * newp, context_struct_t * c)
566 (level_datum_t *) hashtab_search(newp->p_levels.table,
585 (cat_datum_t *) hashtab_search(newp->p_cats.
552 mls_convert_context(policydb_t * oldp, policydb_t * newp, context_struct_t * c) argument
H A Dmls.h56 policydb_t * newp, context_struct_t * context);
H A Dservices.c1412 policydb_t *newp; local
1415 newp = (policydb_t *) p;
1419 (class_datum_t *) hashtab_search(newp->p_classes.table, key);
1479 policydb_t *newp; member in struct:__anon24646
1486 * in the policy `p->newp'. Verify that the
1507 usrdatum = (user_datum_t *) hashtab_search(args->newp->p_users.table,
1518 role = (role_datum_t *) hashtab_search(args->newp->p_roles.table,
1528 hashtab_search(args->newp->p_types.table,
1535 rc = mls_convert_context(args->oldp, args->newp, c);
1540 if (!policydb_context_isvalid(args->newp,
[all...]
/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/jemalloc/include/jemalloc/
H A Djemalloc.h140 size_t *oldlenp, void *newp, size_t newlen);
144 void *oldp, size_t *oldlenp, void *newp, size_t newlen);
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.h.in29 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/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...]
H A Djemalloc.c1816 je_mallctl(const char *name, void *oldp, size_t *oldlenp, void *newp, argument
1823 return (ctl_byname(name, oldp, oldlenp, newp, newlen));
1838 void *newp, size_t newlen)
1844 return (ctl_bymib(mib, miblen, oldp, oldlenp, newp, newlen));
1837 je_mallctlbymib(const size_t *mib, size_t miblen, void *oldp, size_t *oldlenp, void *newp, size_t newlen) argument
/external/icu/icu4c/source/tools/tzcode/
H A Dzdump.c166 static long delta(struct tm * newp, struct tm * oldp);
720 delta(newp, oldp)
721 struct tm * newp;
727 if (newp->tm_year < oldp->tm_year)
728 return -delta(oldp, newp);
730 for (tmy = oldp->tm_year; tmy < newp->tm_year; ++tmy)
732 result += newp->tm_yday - oldp->tm_yday;
734 result += newp->tm_hour - oldp->tm_hour;
736 result += newp->tm_min - oldp->tm_min;
738 result += newp
[all...]
H A Dzic.c440 #define ecatalloc(oldp, newp) memcheck(icatalloc((oldp), (newp)))
/external/icu/icu4c/source/test/intltest/
H A Dnumfmtst.cpp243 UnicodeString newp; fmt.toPattern(newp); local
244 if (!(newp == newpat[i]))
246 "; " + newp + " seen instead");
/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/libasm/
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;
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...]

Completed in 7120 milliseconds

123