Searched refs:AlignedMalloc (Results 1 - 12 of 12) sorted by relevance

/external/webrtc/src/system_wrappers/interface/
H A Daligned_malloc.h18 void* AlignedMalloc(
/external/chromium_org/third_party/webrtc/system_wrappers/source/
H A Daligned_malloc_unittest.cc28 static_cast<char*>(AlignedMalloc(size, alignment)));
36 TEST(AlignedMalloc, GetRightAlign) {
41 static_cast<char*>(AlignedMalloc(size, alignment)));
51 TEST(AlignedMalloc, IncorrectSize) {
57 TEST(AlignedMalloc, IncorrectAlignment) {
63 TEST(AlignedMalloc, AlignTo2Bytes) {
69 TEST(AlignedMalloc, AlignTo32Bytes) {
75 TEST(AlignedMalloc, AlignTo128Bytes) {
H A Daligned_malloc.cc53 void* AlignedMalloc(size_t size, size_t alignment) { function in namespace:webrtc
/external/chromium_org/third_party/webrtc/system_wrappers/interface/
H A Daligned_malloc.h33 void* AlignedMalloc(size_t size, size_t alignment);
34 // De-allocates memory created using the AlignedMalloc() API.
45 T* AlignedMalloc(size_t size, size_t alignment) { function in namespace:webrtc
46 return reinterpret_cast<T*>(AlignedMalloc(size, alignment));
/external/chromium_org/third_party/webrtc/common_audio/
H A Dfir_filter_neon.cc28 AlignedMalloc(sizeof(float) * coefficients_length_, 16))),
30 AlignedMalloc(sizeof(float) * (max_input_length + state_length_),
H A Dfir_filter_sse.cc28 AlignedMalloc(sizeof(float) * coefficients_length_, 16))),
30 AlignedMalloc(sizeof(float) * (max_input_length + state_length_),
/external/chromium_org/third_party/webrtc/common_audio/resampler/
H A Dsinc_resampler.cc161 AlignedMalloc(sizeof(float) * kKernelStorageSize, 16))),
163 AlignedMalloc(sizeof(float) * kKernelStorageSize, 16))),
165 AlignedMalloc(sizeof(float) * kKernelStorageSize, 16))),
167 AlignedMalloc(sizeof(float) * input_buffer_size_, 16))),
/external/chromium_org/third_party/webrtc/common_video/
H A Dplane.cc45 AlignedMalloc(new_size, kBufferAlignment)));
/external/webrtc/src/system_wrappers/source/
H A Daligned_malloc.cc48 void* AlignedMalloc(size_t size, size_t alignment) function in namespace:webrtc
/external/chromium_org/third_party/webrtc/modules/audio_conference_mixer/source/
H A Dmemory_pool_win.h149 _pListHead = (PSLIST_HEADER)AlignedMalloc(sizeof(SLIST_HEADER),
180 AlignedMalloc(sizeof(MemoryPoolItem<MemoryType>),
/external/chromium_org/third_party/webrtc/test/channel_transport/
H A Dudp_socket2_manager_win.cc444 _pListHead = (PSLIST_HEADER)AlignedMalloc(sizeof(SLIST_HEADER),
466 AlignedMalloc(
/external/chromium_org/base/allocator/
H A Dallocator_unittest.cc494 TEST(Allocators, AlignedMalloc) {

Completed in 256 milliseconds