/external/jemalloc_new/test/integration/ |
D | aligned_alloc.c | 22 p = aligned_alloc(alignment, 1); in TEST_BEGIN() 29 p = aligned_alloc(alignment + 1, 1); in TEST_BEGIN() 49 p = aligned_alloc(alignment, size); in TEST_BEGIN() 62 p = aligned_alloc(alignment, size); in TEST_BEGIN() 74 p = aligned_alloc(alignment, size); in TEST_BEGIN() 99 ps[i] = aligned_alloc(alignment, size); in TEST_BEGIN()
|
/external/llvm-project/llvm/test/Transforms/InstCombine/ |
D | deref-alloc-fns.ll | 10 declare noalias i8* @aligned_alloc(i64, i64) 34 …:%.*]] = tail call noalias align 32 dereferenceable_or_null(512) i8* @aligned_alloc(i64 32, i64 51… 37 %call = tail call noalias i8* @aligned_alloc(i64 32, i64 512) 45 ; CHECK-NEXT: tail call noalias dereferenceable_or_null(1024) i8* @aligned_alloc(i64 %{{.*}}, i6… 46 ; CHECK-NEXT: tail call noalias i8* @aligned_alloc(i64 0, i64 1024) 47 ; CHECK-NEXT: tail call noalias i8* @aligned_alloc(i64 32, i64 %{{.*}}) 49 %call = tail call noalias i8* @aligned_alloc(i64 %align, i64 1024) 50 %call_1 = tail call noalias i8* @aligned_alloc(i64 0, i64 1024) 51 %call_2 = tail call noalias i8* @aligned_alloc(i64 32, i64 %size) 261 ; CHECK-NEXT: [[CALL:%.*]] = tail call noalias dereferenceable_or_null(512) i8* @aligned_alloc(i… [all …]
|
/external/llvm-project/compiler-rt/test/sanitizer_common/TestCases/Linux/ |
D | aligned_alloc.c | 3 extern void *aligned_alloc (size_t alignment, size_t size); 5 volatile void *p = aligned_alloc(128, 1024); in main()
|
D | aligned_alloc-alignment.cpp | 24 extern void *aligned_alloc(size_t alignment, size_t size); 30 void *p = aligned_alloc(alignment, 100); in main()
|
/external/compiler-rt/test/sanitizer_common/TestCases/Linux/ |
D | aligned_alloc.c | 3 extern void *aligned_alloc (size_t alignment, size_t size); 5 volatile void *p = aligned_alloc(128, 1024); in main()
|
/external/llvm-project/compiler-rt/test/hwasan/TestCases/Linux/ |
D | aligned_alloc-alignment.cpp | 14 extern void *aligned_alloc(size_t alignment, size_t size); 17 void *p = aligned_alloc(17, 100); in main()
|
/external/llvm-project/compiler-rt/test/scudo/ |
D | memalign.c | 21 void *aligned_alloc(size_t alignment, size_t size); 37 p = aligned_alloc(alignment, size); in main() 72 p = aligned_alloc(alignment, size >> 1); in main()
|
/external/llvm-project/clang-tools-extra/test/clang-tidy/checkers/ |
D | cppcoreguidelines-owning-memory-legacy-functions.cpp | 17 void *aligned_alloc(size_t Alignment, size_t Size); 37 using ::aligned_alloc; 132 int *HeapPointer3 = (int *)aligned_alloc(16ul, 4ul * 32ul); in test_resource_creators() 134 gsl::owner<int *> HeapPointer4 = static_cast<int *>(aligned_alloc(16ul, 4ul * 32ul)); // Ok in test_resource_creators()
|
D | cert-mem57-cpp.cpp | 5 void *aligned_alloc(size_t, size_t); 20 return std::aligned_alloc(alignof(Vector3), nbytes); in operator new()
|
/external/compiler-rt/test/scudo/ |
D | memalign.cpp | 14 extern "C" void *aligned_alloc (size_t alignment, size_t size); 33 p = aligned_alloc(alignment, size); in main()
|
/external/gemmlowp/internal/ |
D | platform.h | 56 inline void *aligned_alloc(size_t alignment, size_t size) { in aligned_alloc() function 79 inline void *aligned_alloc(size_t alignment, size_t size) {
|
/external/perfetto/src/profiling/memory/ |
D | heapprofd_preload.map.txt | 8 aligned_alloc;
|
D | malloc_interceptor_glibc_preload.cc | 84 void* aligned_alloc(size_t alignment, size_t size) { in aligned_alloc() function
|
/external/llvm-project/llvm/test/Transforms/GVN/ |
D | malloc-load-removal.ll | 58 declare i8* @aligned_alloc(i64, i64) nounwind 62 %call = tail call i8* @aligned_alloc(i64 256, i64 32) nounwind
|
/external/llvm-project/llvm/test/Transforms/NewGVN/ |
D | malloc-load-removal.ll | 58 declare i8* @aligned_alloc(i64, i64) nounwind 62 %call = tail call i8* @aligned_alloc(i64 256, i64 32) nounwind
|
/external/jemalloc_new/include/jemalloc/internal/ |
D | public_namespace.h | 1 #define je_aligned_alloc JEMALLOC_N(aligned_alloc)
|
/external/bcc/tests/python/ |
D | test_tools_memleak_leaker_app.c | 52 printf("leaking via aligned_alloc, %p\n", aligned_alloc(512, amount)); in generate_leak()
|
/external/jemalloc_new/include/jemalloc/ |
D | jemalloc_mangle.h | 12 # define aligned_alloc je_aligned_alloc macro
|
D | jemalloc_mangle_jet.h | 12 # define aligned_alloc jet_aligned_alloc macro
|
D | jemalloc_rename.h | 31 # define je_aligned_alloc aligned_alloc
|
/external/llvm-project/compiler-rt/lib/scudo/ |
D | scudo_malloc.cpp | 68 INTERCEPTOR_ATTRIBUTE void *aligned_alloc(size_t alignment, size_t size) { in aligned_alloc() function
|
/external/compiler-rt/lib/scudo/ |
D | scudo_interceptors.cpp | 59 INTERCEPTOR(void*, aligned_alloc, uptr alignment, uptr size) { in INTERCEPTOR() argument
|
/external/libcxx/include/ |
D | cstdlib | 79 void *aligned_alloc(size_t alignment, size_t size); // C11 159 using ::aligned_alloc;
|
/external/llvm-project/libcxx/include/ |
D | cstdlib | 78 void *aligned_alloc(size_t alignment, size_t size); // C11 158 using ::aligned_alloc;
|
/external/tensorflow/tensorflow/lite/kernels/internal/optimized/ |
D | neon_tensor_utils.cc | 83 inline void* aligned_alloc(size_t alignment, size_t size, in aligned_alloc() function 86 *freeing_buffer = std::aligned_alloc( in aligned_alloc() 253 int8* shuffled_vectors = reinterpret_cast<int8*>(aligned_alloc( in ShuffleVectors() 608 int8_t* padded_vectors = reinterpret_cast<int8_t*>(aligned_alloc( in DotprodMatrixBatchPaddedFourVectorMultiplyAccumulate() 615 float* padded_result = reinterpret_cast<float*>(aligned_alloc( in DotprodMatrixBatchPaddedFourVectorMultiplyAccumulate() 628 aligned_alloc(kNeonVectorAlignment, padded_scaling_factors_size, in DotprodMatrixBatchPaddedFourVectorMultiplyAccumulate() 639 aligned_alloc(kNeonVectorAlignment, padded_input_offset_size, in DotprodMatrixBatchPaddedFourVectorMultiplyAccumulate() 760 (int8_t*)aligned_alloc(kNeonVectorAlignment, n_input, // NOLINT in NeonMatrixBatchVectorMultiplyImpl() 765 (int8_t*)aligned_alloc(kNeonVectorAlignment, n_input, // NOLINT in NeonMatrixBatchVectorMultiplyImpl() 1080 (int8_t*)aligned_alloc(kNeonVectorAlignment, m_cols, // NOLINT in NeonMatrixBatchVectorMultiplyAccumulate() [all …]
|