HomeSort by relevance Sort by last modified time
    Searched refs:AlignedMalloc (Results 1 - 12 of 12) sorted by null

  /external/webrtc/webrtc/system_wrappers/source/
aligned_malloc_unittest.cc 28 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) {
aligned_malloc.cc 53 void* AlignedMalloc(size_t size, size_t alignment) {
  /external/webrtc/webrtc/system_wrappers/include/
aligned_malloc.h 33 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) {
46 return reinterpret_cast<T*>(AlignedMalloc(size, alignment));
aligned_array.h 27 head_row_ = static_cast<T**>(AlignedMalloc(rows_ * sizeof(*head_row_),
30 head_row_[i] = static_cast<T*>(AlignedMalloc(cols_ * sizeof(**head_row_),
  /external/webrtc/webrtc/common_audio/
real_fourier.cc 48 AlignedMalloc(sizeof(float) * count, kFftBufferAlignment)));
53 AlignedMalloc(sizeof(complex<float>) * count, kFftBufferAlignment)));
fir_filter_neon.cc 28 AlignedMalloc(sizeof(float) * coefficients_length_, 16))),
30 AlignedMalloc(sizeof(float) * (max_input_length + state_length_),
fir_filter_sse.cc 28 AlignedMalloc(sizeof(float) * coefficients_length_, 16))),
30 AlignedMalloc(sizeof(float) * (max_input_length + state_length_),
  /external/webrtc/webrtc/modules/audio_conference_mixer/source/
memory_pool_win.h 149 _pListHead = (PSLIST_HEADER)AlignedMalloc(sizeof(SLIST_HEADER),
180 AlignedMalloc(sizeof(MemoryPoolItem<MemoryType>),
  /external/webrtc/webrtc/common_audio/resampler/
sinc_resampler.cc 160 AlignedMalloc(sizeof(float) * kKernelStorageSize, 16))),
162 AlignedMalloc(sizeof(float) * kKernelStorageSize, 16))),
164 AlignedMalloc(sizeof(float) * kKernelStorageSize, 16))),
166 AlignedMalloc(sizeof(float) * input_buffer_size_, 16))),
  /external/webrtc/talk/app/webrtc/java/jni/
native_handle_impl.cc 125 static_cast<uint8_t*>(webrtc::AlignedMalloc(size, kBufferAlignment)));
  /external/webrtc/webrtc/test/channel_transport/
udp_socket2_manager_win.cc 432 _pListHead = (PSLIST_HEADER)AlignedMalloc(sizeof(SLIST_HEADER),
454 AlignedMalloc(
  /external/webrtc/webrtc/common_video/
video_frame_buffer.cc 42 data_(static_cast<uint8_t*>(AlignedMalloc(

Completed in 139 milliseconds