/external/webrtc/rtc_base/memory/ |
D | aligned_malloc_unittest.cc | 28 static_cast<char*>(AlignedMalloc(size, alignment))); in CorrectUsage() 36 TEST(AlignedMalloc, GetRightAlign) { in TEST() argument 41 static_cast<char*>(AlignedMalloc(size, alignment))); in TEST() 51 TEST(AlignedMalloc, IncorrectSize) { in TEST() argument 57 TEST(AlignedMalloc, IncorrectAlignment) { in TEST() argument 63 TEST(AlignedMalloc, AlignTo2Bytes) { in TEST() argument 69 TEST(AlignedMalloc, AlignTo32Bytes) { in TEST() argument 75 TEST(AlignedMalloc, AlignTo128Bytes) { in TEST() argument
|
D | aligned_malloc.h | 33 void* AlignedMalloc(size_t size, size_t alignment); 45 T* AlignedMalloc(size_t size, size_t alignment) { in AlignedMalloc() function 46 return reinterpret_cast<T*>(AlignedMalloc(size, alignment)); in AlignedMalloc()
|
D | aligned_malloc.cc | 53 void* AlignedMalloc(size_t size, size_t alignment) { in AlignedMalloc() function
|
/external/webrtc/common_audio/resampler/ |
D | sinc_resampler.cc | 157 AlignedMalloc(sizeof(float) * kKernelStorageSize, 16))), in SincResampler() 159 AlignedMalloc(sizeof(float) * kKernelStorageSize, 16))), in SincResampler() 161 AlignedMalloc(sizeof(float) * kKernelStorageSize, 16))), in SincResampler() 163 AlignedMalloc(sizeof(float) * input_buffer_size_, 16))), in SincResampler()
|
/external/webrtc/common_audio/ |
D | real_fourier.cc | 43 AlignedMalloc(sizeof(float) * count, kFftBufferAlignment))); in AllocRealBuffer() 48 AlignedMalloc(sizeof(complex<float>) * count, kFftBufferAlignment))); in AllocCplxBuffer()
|
D | fir_filter_neon.cc | 30 AlignedMalloc(sizeof(float) * coefficients_length_, 16))), in FIRFilterNEON() 32 AlignedMalloc(sizeof(float) * (max_input_length + state_length_), in FIRFilterNEON()
|
D | fir_filter_sse.cc | 31 AlignedMalloc(sizeof(float) * coefficients_length_, 16))), in FIRFilterSSE2() 33 AlignedMalloc(sizeof(float) * (max_input_length + state_length_), in FIRFilterSSE2()
|
/external/webrtc/modules/audio_coding/codecs/opus/test/ |
D | lapped_transform.h | 32 static_cast<T**>(AlignedMalloc(rows_ * sizeof(*head_row_), alignment)); in AlignedArray() 35 AlignedMalloc(cols_ * sizeof(**head_row_), alignment)); in AlignedArray()
|
/external/tensorflow/tensorflow/core/platform/windows/ |
D | port.cc | 113 void* AlignedMalloc(size_t size, int minimum_alignment) { in AlignedMalloc() function 126 return AlignedMalloc(size, minimum_alignment); in NUMAMalloc()
|
/external/tensorflow/tensorflow/core/lib/core/ |
D | arena.cc | 54 reinterpret_cast<char*>(port::AlignedMalloc(block_size_, sizeof(void*))); in Arena() 174 port::AlignedMalloc(adjusted_block_size, adjusted_alignment)); in AllocNewBlock()
|
/external/tensorflow/tensorflow/core/platform/ |
D | port_test.cc | 28 TEST(Port, AlignedMalloc) { in TEST() argument 30 void* p = AlignedMalloc(1, alignment); in TEST()
|
D | mem.h | 29 void* AlignedMalloc(size_t size, int minimum_alignment);
|
/external/mesa3d/src/gallium/drivers/swr/rasterizer/core/ |
D | ringbuffer.h | 47 mpRingBuffer = (T*)AlignedMalloc(sizeof(T) * numEntries, 64); in Init()
|
D | tileset.h | 85 size_t* newBits = (size_t*)AlignedMalloc(sizeof(size_t) * num_words, 64); in _grow()
|
D | tilemgr.h | 337 p = AlignedMalloc(size, align); in AllocHotTileMem()
|
D | api.cpp | 68 void* pContextMem = AlignedMalloc(sizeof(SWR_CONTEXT), KNOB_SIMD_WIDTH * 4); in SwrCreateContext() 100 (MacroTileMgr*)AlignedMalloc(sizeof(MacroTileMgr) * pContext->MAX_DRAWS_IN_FLIGHT, 64); in SwrCreateContext() 102 (DispatchQueue*)AlignedMalloc(sizeof(DispatchQueue) * pContext->MAX_DRAWS_IN_FLIGHT, 64); in SwrCreateContext() 164 (SWR_STATS*)AlignedMalloc(sizeof(SWR_STATS) * pContext->NumWorkerThreads, 64); in SwrCreateContext() 194 (uint8_t*)AlignedMalloc(KNOB_WORKER_SCRATCH_SPACE_SIZE, KNOB_SIMD_WIDTH * 4); in SwrCreateContext()
|
/external/mesa3d/src/gallium/drivers/swr/rasterizer/common/ |
D | os.h | 86 static inline void* AlignedMalloc(size_t _Size, size_t _Alignment) in AlignedMalloc() function 251 inline void* AlignedMalloc(size_t size, size_t alignment) in AlignedMalloc() function
|
/external/tensorflow/tensorflow/core/platform/default/ |
D | port.cc | 231 void* AlignedMalloc(size_t size, int minimum_alignment) { in AlignedMalloc() function 271 return AlignedMalloc(size, minimum_alignment); in NUMAMalloc()
|
/external/mesa3d/src/gallium/drivers/swr/ |
D | swr_scratch.cpp | 59 space->base = (uint8_t *)AlignedMalloc(space->current_size, in swr_copy_to_scratch_space()
|
D | swr_query.cpp | 48 pq = (struct swr_query *) AlignedMalloc(sizeof(struct swr_query), 64); in swr_create_query()
|
/external/tensorflow/tensorflow/core/framework/ |
D | cpu_allocator_impl.cc | 85 void* p = port::AlignedMalloc(num_bytes, alignment); in AllocateRaw()
|
/external/tensorflow/tensorflow/stream_executor/tpu/ |
D | noncopyable_buffer.h | 124 static_cast<uint8_t*>(port::AlignedMalloc(size, alignment)), in AlignedAlloc()
|
/external/tensorflow/tensorflow/compiler/tf2xla/ |
D | xla_compilation_device.cc | 48 void* p = port::AlignedMalloc(sizeof(XlaExpression), alignment); in AllocateRaw()
|
/external/tensorflow/tensorflow/core/kernels/neon/ |
D | neon_depthwise_conv_op.cc | 131 float* bias_ptr = static_cast<float*>(port::AlignedMalloc( in Compute()
|
/external/tensorflow/tensorflow/core/common_runtime/ |
D | pool_allocator.cc | 266 ptr = port::AlignedMalloc(num_bytes, static_cast<int>(alignment)); in Alloc()
|