Searched defs:oldp (Results 1 - 17 of 17) sorted by relevance

/external/elfutils/src/libelf/
H A Delf_end.c172 Elf_Data_List *oldp = runp; local
174 if ((oldp->flags & ELF_F_MALLOCED) != 0)
175 free (oldp);
180 Elf_ScnList *oldp = list; local
182 assert (list == NULL || oldp->cnt == oldp->max);
183 if (oldp != (elf->class == ELFCLASS32
188 free (oldp);
/external/toybox/toys/lsb/
H A Dpasswd.c42 static void strength_check(char *newp, char *oldp, char *user) argument
57 if (oldp[0] && str_check(newp, oldp)) {
76 static char *new_password(char *oldp, char *user) argument
84 strength_check(newp, oldp, user);
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_subexp.c81 static int prob_diff_update_cost(vp9_prob newp, vp9_prob oldp) { argument
82 int delp = remap_prob(newp, oldp);
114 void vp9_write_prob_diff_update(vp9_writer *w, vp9_prob newp, vp9_prob oldp) { argument
115 const int delp = remap_prob(newp, oldp);
120 vp9_prob oldp, vp9_prob *bestp,
122 const int old_b = cost_branch256(ct, oldp);
124 vp9_prob newp, bestnewp = oldp;
125 const int step = *bestp > oldp ? -1 : 1;
127 for (newp = *bestp; newp != oldp; newp += step) {
129 const int update_b = prob_diff_update_cost(newp, oldp)
119 vp9_prob_diff_update_savings_search(const unsigned int *ct, vp9_prob oldp, vp9_prob *bestp, vp9_prob upd) argument
140 vp9_prob_diff_update_savings_search_model(const unsigned int *ct, const vp9_prob *oldp, vp9_prob *bestp, vp9_prob upd) argument
178 vp9_cond_prob_diff_update(vp9_writer *w, vp9_prob *oldp, const unsigned int ct[2]) argument
[all...]
H A Dvp9_bitstream.c530 const vp9_prob oldp = old_coef_probs[i][j][k][l][t]; local
539 frame_branch_ct[i][j][k][l][t], oldp, &newp, upd);
540 if (s > 0 && newp != oldp)
567 vp9_prob *oldp = old_coef_probs[i][j][k][l] + t; local
578 *oldp, &newp, upd);
579 if (s > 0 && newp != *oldp)
584 vp9_write_prob_diff_update(bc, newp, *oldp);
585 *oldp = newp;
612 vp9_prob *oldp = old_coef_probs[i][j][k][l] + t; local
626 *oldp,
[all...]
/external/elfutils/src/libasm/
H A Dasm_end.c538 void *oldp; local
547 oldp = data;
549 free (oldp);
551 while (oldp != scnp->content);
565 AsmScn_t *oldp = scn; local
567 free_section (oldp);
583 AsmScnGrp_t *oldp = scngrp; local
586 free (oldp);
/external/selinux/libsepol/src/
H A Dmls.c550 * policy `oldp' to the values specified in the policy `newp'.
552 int mls_convert_context(policydb_t * oldp, argument
561 if (!oldp->mls)
567 oldp->
587 oldp->
H A Dservices.c1554 policydb_t *oldp; member in struct:__anon13623
1561 * in the policy `p->oldp' to the values specified
1584 args->oldp->
1595 args->oldp->
1605 args->oldp->p_type_val_to_name[c->type - 1]);
1611 rc = mls_convert_context(args->oldp, args->newp, c);
1743 args.oldp = policydb;
/external/valgrind/coregrind/
H A Dm_libcproc.c390 Int VG_(sysctl)(Int *name, UInt namelen, void *oldp, SizeT *oldlenp, void *newp, SizeT newlen) argument
395 name, namelen, oldp, oldlenp, newp, newlen);
/external/e2fsprogs/intl/
H A Ddcigettext.c1198 struct binding *oldp = _nl_domain_bindings; local
1200 if (oldp->dirname != INTUSE(_nl_default_dirname))
1202 free (oldp->dirname);
1203 free (oldp->codeset);
1204 free (oldp);
/external/elfutils/src/src/
H A Dld.c1153 struct file_list *oldp = input_file_list; local
1155 free (oldp);
H A Dldgeneric.c517 struct usedfiles *fileinfo, struct symbol *oldp)
520 || (oldp->scndx >= SHN_LORESERVE && oldp->scndx <= SHN_HIRESERVE))
525 size_t oldgrpid = oldp->file->scninfo[oldp->scndx].grpid;
531 assert (SCNINFO_SHDR (oldp->file->scninfo[oldgrpid].shdr).sh_type
535 || ! oldp->file->scninfo[oldgrpid].comdat_group)
539 oldp->file->scninfo[oldgrpid].symbols->name) != 0)
549 struct symbol *oldp)
557 if (XELF_ST_TYPE (sym->st_info) != STT_NOTYPE && oldp
516 matching_group_comdat_scn(const XElf_Sym *sym, size_t shndx, struct usedfiles *fileinfo, struct symbol *oldp) argument
548 check_type_and_size(const XElf_Sym *sym, struct usedfiles *fileinfo, struct symbol *oldp) argument
584 check_definition(const XElf_Sym *sym, size_t shndx, size_t symidx, struct usedfiles *fileinfo, struct symbol *oldp) argument
1529 struct symbol *oldp = ld_symbol_tab_find (&ld_state.symbol_tab, local
1790 struct filename_list *oldp; local
6200 struct scngroup *oldp = groups; local
[all...]
/external/icu/icu4c/source/tools/tzcode/
H A Dzdump.c232 static intmax_t delta(struct tm * newp, struct tm * oldp) ATTRIBUTE_PURE;
779 delta(struct tm * newp, struct tm *oldp) argument
784 if (newp->tm_year < oldp->tm_year)
785 return -delta(oldp, newp);
787 for (tmy = oldp->tm_year; tmy < newp->tm_year; ++tmy)
789 result += newp->tm_yday - oldp->tm_yday;
791 result += newp->tm_hour - oldp->tm_hour;
793 result += newp->tm_min - oldp->tm_min;
795 result += newp->tm_sec - oldp->tm_sec;
/external/libvpx/libvpx/vp8/encoder/
H A Dbitstream.c840 const vp8_prob oldp, const vp8_prob newp,
843 const int old_b = vp8_cost_branch(ct, oldp);
896 const vp8_prob oldp = cpi->common.fc.coef_probs [i][j][k][t]; local
898 const int s = prob_update_savings(ct, oldp, newp, upd);
901 (cpi->common.frame_type == KEY_FRAME && newp != oldp))
957 const vp8_prob oldp = cpi->common.fc.coef_probs [i][j][k][t]; local
959 const int s = prob_update_savings(ct, oldp, newp, upd);
1104 const vp8_prob oldp = cpi->common.fc.coef_probs[i][j] local
1109 prob_update_savings(ct, oldp, newp, upd);
839 prob_update_savings(const unsigned int *ct, const vp8_prob oldp, const vp8_prob newp, const vp8_prob upd) argument
/external/valgrind/coregrind/m_syswrap/
H A Dsyswrap-linux.c3198 vki_sigaction_fromK_t old, *oldp; local
3205 newp = oldp = NULL;
3219 oldp = &old;
3232 SET_STATUS_from_SysRes( VG_(do_sys_sigaction)(ARG1, newp, oldp) );
3237 oldold->ksa_handler = oldp->ksa_handler;
3238 oldold->sa_flags = oldp->sa_flags;
3239 oldold->sa_restorer = oldp->sa_restorer;
3240 oldold->sa_mask = oldp->sa_mask.sig[0];
H A Dsyswrap-darwin.c4158 UWord oldp, UWord oldlenp,
4164 if (oldp) {
4165 // also reads *oldlenp, and writes up to oldp[0..(*oldlenp)-1]
4167 PRE_MEM_WRITE("sysctl(oldp)", oldp, *(size_t*)oldlenp);
4184 Addr* t_oldp = (Addr*)oldp;
4196 // oldp is big enough. copy value and return 0
4200 // oldp isn't big enough. copy as much as possible
4220 UWord oldp = ARG3; local
4226 name, namelen, oldp, oldlen
4153 common_PRE_sysctl( ThreadId tid, SyscallStatus* status, UWord* flags, Bool is_kern_dot_userstack, UWord oldp, UWord oldlenp, UWord newp, UWord newlen ) argument
4257 UWord oldp = ARG3; local
9239 UWord oldp = ARG3; local
9272 UWord oldp = ARG3; local
[all...]
/external/jemalloc/src/
H A Dctl.c45 static int n##_ctl(const size_t *mib, size_t miblen, void *oldp, \
903 ctl_byname(const char *name, void *oldp, size_t *oldlenp, void *newp, argument
924 ret = node->ctl(mib, depth, oldp, oldlenp, newp, newlen);
950 ctl_bymib(const size_t *mib, size_t miblen, void *oldp, size_t *oldlenp, argument
989 ret = node->ctl(mib, miblen, oldp, oldlenp, newp, newlen);
1043 if (oldp != NULL || oldlenp != NULL) { \
1050 if ((oldp != NULL && oldlenp != NULL) && (newp != NULL || \
1058 if (oldp != NULL && oldlenp != NULL) { \
1062 memcpy(oldp, (void *)&(v), copylen); \
1066 *(t *)oldp
1230 epoch_ctl(const size_t *mib, size_t miblen, void *oldp, size_t *oldlenp, void *newp, size_t newlen) argument
1295 thread_arena_ctl(const size_t *mib, size_t miblen, void *oldp, size_t *oldlenp, void *newp, size_t newlen) argument
1354 thread_tcache_enabled_ctl(const size_t *mib, size_t miblen, void *oldp, size_t *oldlenp, void *newp, size_t newlen) argument
1379 thread_tcache_flush_ctl(const size_t *mib, size_t miblen, void *oldp, size_t *oldlenp, void *newp, size_t newlen) argument
1398 thread_prof_name_ctl(const size_t *mib, size_t miblen, void *oldp, size_t *oldlenp, void *newp, size_t newlen) argument
1432 thread_prof_active_ctl(const size_t *mib, size_t miblen, void *oldp, size_t *oldlenp, void *newp, size_t newlen) argument
1462 tcache_create_ctl(const size_t *mib, size_t miblen, void *oldp, size_t *oldlenp, void *newp, size_t newlen) argument
1489 tcache_flush_ctl(const size_t *mib, size_t miblen, void *oldp, size_t *oldlenp, void *newp, size_t newlen) argument
1516 tcache_destroy_ctl(const size_t *mib, size_t miblen, void *oldp, size_t *oldlenp, void *newp, size_t newlen) argument
1576 arena_i_purge_ctl(const size_t *mib, size_t miblen, void *oldp, size_t *oldlenp, void *newp, size_t newlen) argument
1593 arena_i_dss_ctl(const size_t *mib, size_t miblen, void *oldp, size_t *oldlenp, void *newp, size_t newlen) argument
1649 arena_i_lg_dirty_mult_ctl(const size_t *mib, size_t miblen, void *oldp, size_t *oldlenp, void *newp, size_t newlen) argument
1734 arenas_narenas_ctl(const size_t *mib, size_t miblen, void *oldp, size_t *oldlenp, void *newp, size_t newlen) argument
1756 arenas_initialized_ctl(const size_t *mib, size_t miblen, void *oldp, size_t *oldlenp, void *newp, size_t newlen) argument
1782 arenas_lg_dirty_mult_ctl(const size_t *mib, size_t miblen, void *oldp, size_t *oldlenp, void *newp, size_t newlen) argument
1847 arenas_extend_ctl(const size_t *mib, size_t miblen, void *oldp, size_t *oldlenp, void *newp, size_t newlen) argument
1871 prof_thread_active_init_ctl(const size_t *mib, size_t miblen, void *oldp, size_t *oldlenp, void *newp, size_t newlen) argument
1896 prof_active_ctl(const size_t *mib, size_t miblen, void *oldp, size_t *oldlenp, void *newp, size_t newlen) argument
1921 prof_dump_ctl(const size_t *mib, size_t miblen, void *oldp, size_t *oldlenp, void *newp, size_t newlen) argument
1944 prof_gdump_ctl(const size_t *mib, size_t miblen, void *oldp, size_t *oldlenp, void *newp, size_t newlen) argument
1969 prof_reset_ctl(const size_t *mib, size_t miblen, void *oldp, size_t *oldlenp, void *newp, size_t newlen) argument
[all...]
H A Djemalloc.c2403 je_mallctl(const char *name, void *oldp, size_t *oldlenp, void *newp, argument
2410 return (ctl_byname(name, oldp, oldlenp, newp, newlen));
2424 je_mallctlbymib(const size_t *mib, size_t miblen, void *oldp, size_t *oldlenp, argument
2431 return (ctl_bymib(mib, miblen, oldp, oldlenp, newp, newlen));

Completed in 1073 milliseconds