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

  /external/compiler-rt/test/asan/TestCases/Windows/
aligned_mallocs.cc 14 int *p = (int*)_aligned_malloc(1024 * sizeof(int), 32);
19 p = (int*)_aligned_malloc(128, 128);
dll_aligned_mallocs.cc 17 int *p = (int*)_aligned_malloc(1024 * sizeof(int), 32);
22 p = (int*)_aligned_malloc(128, 128);
  /external/chromium_org/base/memory/
aligned_memory.cc 21 ptr = _aligned_malloc(size, alignment);
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/os/
os_memory_stdc.h 69 #define os_malloc_aligned(_size, _align) _aligned_malloc(_size, _align)
  /external/clang/lib/Headers/
mm_malloc.h 59 __mallocedMemory = _aligned_malloc(__size, __align);
  /external/mesa3d/src/gallium/auxiliary/os/
os_memory_stdc.h 69 #define os_malloc_aligned(_size, _align) _aligned_malloc(_size, _align)
  /prebuilts/clang/darwin-x86/host/3.4/lib/clang/3.4/include/
mm_malloc.h 59 __mallocedMemory = _aligned_malloc(__size, __align);
  /prebuilts/clang/darwin-x86/host/3.5/lib/clang/3.5/include/
mm_malloc.h 59 __mallocedMemory = _aligned_malloc(__size, __align);
  /prebuilts/clang/linux-x86/host/3.4/lib/clang/3.4/include/
mm_malloc.h 59 __mallocedMemory = _aligned_malloc(__size, __align);
  /prebuilts/clang/linux-x86/host/3.5/lib/clang/3.5/include/
mm_malloc.h 59 __mallocedMemory = _aligned_malloc(__size, __align);
  /prebuilts/misc/darwin-x86/analyzer/lib/clang/3.3/include/
mm_malloc.h 59 __mallocedMemory = _aligned_malloc(__size, __align);
  /prebuilts/misc/linux-x86/analyzer/lib/clang/3.3/include/
mm_malloc.h 59 __mallocedMemory = _aligned_malloc(__size, __align);
  /prebuilts/sdk/renderscript/clang-include/
mm_malloc.h 59 __mallocedMemory = _aligned_malloc(__size, __align);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
malloc.h 56 #if (!defined (_XMMINTRIN_H_INCLUDED) && !defined (_MM_MALLOC_H_INCLUDED)) || defined(_aligned_malloc)
66 #pragma push_macro("_aligned_malloc")
68 #undef _aligned_malloc macro
72 #define _mm_malloc(a,b) _aligned_malloc(a,b)
84 _CRTIMP void *__cdecl _aligned_malloc(size_t _Size,size_t _Alignment);
97 #pragma pop_macro("_aligned_malloc")
crtdbg.h 150 #define _aligned_malloc_dbg(s,a,f,l) _aligned_malloc(s,a)
stdlib.h 443 #if (!defined (_XMMINTRIN_H_INCLUDED) && !defined (_MM_MALLOC_H_INCLUDED)) || defined(_aligned_malloc)
445 #pragma push_macro("_aligned_malloc")
447 #undef _aligned_malloc macro
449 _CRTIMP void *__cdecl _aligned_malloc(size_t _Size,size_t _Alignment);
451 #pragma pop_macro("_aligned_malloc")
  /external/chromium_org/v8/src/
allocation.cc 91 ptr = _aligned_malloc(size, alignment);
  /external/chromium_org/base/allocator/
allocator_shim.cc 284 // Provide support for aligned memory through Windows only _aligned_malloc().
285 void* _aligned_malloc(size_t size, size_t alignment) { function
286 // _aligned_malloc guarantees parameter validation, so do so here. These
287 // checks are somewhat stricter than _aligned_malloc() since we're effectively
allocator_unittest.cc 493 // Test windows specific _aligned_malloc() and _aligned_free() methods.
500 _aligned_malloc(size, kTestAlignments[i]));
512 _aligned_malloc(size, kTestAlignments[i]));
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
imports.c 94 return _aligned_malloc(bytes, alignment);
138 mem = _aligned_malloc(bytes, alignment);
  /external/mesa3d/src/mesa/main/
imports.c 94 return _aligned_malloc(bytes, alignment);
138 mem = _aligned_malloc(bytes, alignment);
  /external/chromium_org/third_party/tcmalloc/chromium/src/tests/
tcmalloc_unittest.cc 103 // I'd like to map posix_memalign to _aligned_malloc, but _aligned_malloc
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/tests/
tcmalloc_unittest.cc 103 // I'd like to map posix_memalign to _aligned_malloc, but _aligned_malloc
    [all...]
  /external/eigen/Eigen/src/Core/util/
Memory.h 226 result = _aligned_malloc(size, 16);
    [all...]
  /external/libhevc/test/decoder/
main.c 427 return (void *)_aligned_malloc(size, alignment);
    [all...]

Completed in 557 milliseconds