Searched refs:new_p (Results 1 – 8 of 8) sorted by relevance
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_allocator_combined.h | 108 void *new_p = Allocate(cache, new_size, alignment); in Reallocate() local 109 if (new_p) in Reallocate() 110 internal_memcpy(new_p, p, memcpy_size); in Reallocate() 112 return new_p; in Reallocate()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/dfsan/ |
H A D | dfsan_allocator.cpp | 166 void *new_p = DFsanAllocate(new_size, alignment, false /*zeroise*/); in DFsanReallocate() local 167 if (new_p) { in DFsanReallocate() 168 dfsan_copy_memory(new_p, old_p, memcpy_size); in DFsanReallocate() 171 return new_p; in DFsanReallocate()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/lsan/ |
H A D | lsan_allocator.cpp | 137 void *new_p = in Reallocate() local 139 if (new_p) in Reallocate() 140 RegisterAllocation(stack, new_p, new_size); in Reallocate() 143 return new_p; in Reallocate()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/msan/ |
H A D | msan_allocator.cpp | 285 void *new_p = MsanAllocate(stack, new_size, alignment, false /*zeroise*/); in MsanReallocate() local 286 if (new_p) { in MsanReallocate() 287 CopyMemory(new_p, old_p, memcpy_size, stack); in MsanReallocate() 290 return new_p; in MsanReallocate()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/tsan/rtl/ |
H A D | tsan_mman.cpp | 302 void *new_p = user_alloc_internal(thr, pc, sz); in user_realloc() local 303 if (new_p) { in user_realloc() 305 internal_memcpy(new_p, p, min(old_sz, sz)); in user_realloc() 308 return SetErrnoOnNull(new_p); in user_realloc()
|
/freebsd/contrib/tcsh/ |
H A D | sh.c | 172 char *new, *new_p; in add_localedir_to_nlspath() local 195 new = new_p = xcalloc(len, 1); in add_localedir_to_nlspath() 201 (void) xsnprintf(new_p, len, "%s", old); in add_localedir_to_nlspath() 202 new_p += strlen(new_p); in add_localedir_to_nlspath() 203 len -= new_p - new; in add_localedir_to_nlspath() 221 (void) xsnprintf(new_p, len, "%s%s%s%s%s%s", in add_localedir_to_nlspath()
|
/freebsd/crypto/heimdal/lib/hx509/ |
H A D | crypto.c | 2985 BIGNUM *new_d, *new_p, *new_q, *new_dmp1, *new_dmq1, *new_iqmp, *n, *e; in match_keys_rsa() local 3019 new_p = BN_dup(p); in match_keys_rsa() 3026 new_d == NULL || new_p == NULL|| new_q == NULL || in match_keys_rsa() 3031 BN_free(new_p); in match_keys_rsa() 3046 BN_free(new_p); in match_keys_rsa() 3055 ret = RSA_set0_factors(rsa, new_p, new_q); in match_keys_rsa() 3058 BN_free(new_p); in match_keys_rsa()
|
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | new | 45 new_handler set_new_handler(new_handler new_p) noexcept;
|