Home
last modified time | relevance | path

Searched defs:alignment (Results 1 – 25 of 303) sorted by relevance

12345678910>>...13

/external/webrtc/webrtc/system_wrappers/source/
Daligned_malloc_unittest.cc26 bool CorrectUsage(size_t size, size_t alignment) { in CorrectUsage()
38 const size_t alignment = 32; in TEST() local
53 const size_t alignment = 64; in TEST() local
65 size_t alignment = 2; in TEST() local
71 size_t alignment = 32; in TEST() local
77 size_t alignment = 128; in TEST() local
Daligned_malloc.cc28 uintptr_t GetRightAlign(uintptr_t start_pos, size_t alignment) { in GetRightAlign()
35 bool ValidAlignment(size_t alignment) { in ValidAlignment()
42 void* GetRightAlign(const void* pointer, size_t alignment) { in GetRightAlign()
53 void* AlignedMalloc(size_t size, size_t alignment) { in AlignedMalloc()
/external/libcxx/src/
Dnew.cpp179 operator new(std::size_t size, std::align_val_t alignment) _THROW_BAD_ALLOC in operator new()
211 operator new(size_t size, std::align_val_t alignment, const std::nothrow_t&) _NOEXCEPT in operator new()
230 operator new[](size_t size, std::align_val_t alignment) _THROW_BAD_ALLOC in operator new[]()
237 operator new[](size_t size, std::align_val_t alignment, const std::nothrow_t&) _NOEXCEPT in operator new[]()
268 operator delete(void* ptr, std::align_val_t alignment, const std::nothrow_t&) _NOEXCEPT in operator delete()
275 operator delete(void* ptr, size_t, std::align_val_t alignment) _NOEXCEPT in operator delete()
282 operator delete[] (void* ptr, std::align_val_t alignment) _NOEXCEPT in operator delete[]()
289 operator delete[] (void* ptr, std::align_val_t alignment, const std::nothrow_t&) _NOEXCEPT in operator delete[]()
296 operator delete[] (void* ptr, size_t, std::align_val_t alignment) _NOEXCEPT in operator delete[]()
/external/skia/src/sksl/
DSkSLMemoryLayout.h45 size_t alignment(const Type& type) const { in alignment() function
60 size_t alignment = this->alignment(*f.fType); in alignment() local
106 size_t alignment = this->alignment(*f.fType); in size() local
113 size_t alignment = this->alignment(type); in size() local
/external/libmojo/mojo/public/c/system/
Dmacros.h40 #define MOJO_ALIGNAS(alignment) alignas(alignment) argument
42 #define MOJO_ALIGNAS(alignment) __attribute__((aligned(alignment))) argument
44 #define MOJO_ALIGNAS(alignment) __declspec(align(alignment)) argument
/external/smali/util/src/main/java/org/jf/util/
DAlignmentUtils.java32 public static int alignOffset(int offset, int alignment) { in alignOffset()
38 public static boolean isAligned(int offset, int alignment) { in isAligned()
/external/jemalloc/test/integration/
Daligned_alloc.c21 size_t alignment; in TEST_BEGIN() local
43 size_t alignment, size; in TEST_BEGIN() local
89 size_t alignment, size, total; in TEST_BEGIN() local
Dposix_memalign.c21 size_t alignment; in TEST_BEGIN() local
41 size_t alignment, size; in TEST_BEGIN() local
81 size_t alignment, size, total; in TEST_BEGIN() local
/external/webrtc/webrtc/system_wrappers/include/
Daligned_malloc.h40 T* GetRightAlign(const T* ptr, size_t alignment) { in GetRightAlign()
45 T* AlignedMalloc(size_t size, size_t alignment) { in AlignedMalloc()
/external/lzma/Java/Tukaani/src/org/tukaani/xz/
DBCJOptions.java13 private final int alignment; field in BCJOptions
16 BCJOptions(int alignment) { in BCJOptions()
/external/deqp/external/vulkancts/framework/vulkan/
DvkAllocationCallbackUtil.cpp37 static VKAPI_ATTR void* VKAPI_CALL systemAllocate (void*, size_t size, size_t alignment, VkSystemAl… in systemAllocate()
50 …* VKAPI_CALL systemReallocate (void*, void* pOriginal, size_t size, size_t alignment, VkSystemAllo… in systemReallocate()
80 … void* VKAPI_CALL allocationCallback (void* pUserData, size_t size, size_t alignment, VkSystemAllo… in allocationCallback()
85 …eallocationCallback (void* pUserData, void* pOriginal, size_t size, size_t alignment, VkSystemAllo… in reallocationCallback()
130 AllocationCallbackRecord AllocationCallbackRecord::allocation (size_t size, size_t alignment, VkSys… in allocation()
143 …llocationCallbackRecord::reallocation (void* original, size_t size, size_t alignment, VkSystemAllo… in reallocation()
202 void* ChainedAllocator::allocate (size_t size, size_t alignment, VkSystemAllocationScope allocation… in allocate()
207 void* ChainedAllocator::reallocate (void* original, size_t size, size_t alignment, VkSystemAllocati… in reallocate()
239 void* AllocationCallbackRecorder::allocate (size_t size, size_t alignment, VkSystemAllocationScope … in allocate()
248 void* AllocationCallbackRecorder::reallocate (void* original, size_t size, size_t alignment, VkSyst… in reallocate()
[all …]
/external/compiler-rt/lib/scudo/
Dscudo_interceptors.cpp47 INTERCEPTOR(void*, memalign, uptr alignment, uptr size) { in INTERCEPTOR()
51 INTERCEPTOR(void*, __libc_memalign, uptr alignment, uptr size) { in INTERCEPTOR()
59 INTERCEPTOR(void*, aligned_alloc, uptr alignment, uptr size) { in INTERCEPTOR()
63 INTERCEPTOR(int, posix_memalign, void **memptr, uptr alignment, uptr size) { in INTERCEPTOR()
/external/jemalloc/src/
Dchunk_mmap.c7 chunk_alloc_mmap_slow(size_t size, size_t alignment, bool *zero, bool *commit) in chunk_alloc_mmap_slow()
33 chunk_alloc_mmap(void *new_addr, size_t size, size_t alignment, bool *zero, in chunk_alloc_mmap()
/external/clang/test/CodeGen/
D2005-07-26-UnionInitCrash.c3 union { char bytes[8]; double alignment; }EQ1 = {0,0,0,0,0,0,0,0}; member
/external/syslinux/com32/lib/sys/module/
Delfutils.c39 int elf_malloc(void **memptr, size_t alignment, size_t size) { in elf_malloc()
75 int elf_malloc(void **memptr, size_t alignment, size_t size) { in elf_malloc()
/external/skia/src/gpu/vk/
DGrVkMemory.h47 GrVkFreeListAlloc(VkDeviceSize size, VkDeviceSize alignment) in GrVkFreeListAlloc()
62 VkDeviceSize alignment() const { return fAlignment; } in alignment() function
141 bool alloc(VkDeviceSize size, VkDeviceSize alignment, uint32_t memoryTypeIndex, in alloc()
/external/libchrome/base/memory/
Daligned_memory.cc16 void* AlignedAlloc(size_t size, size_t alignment) { in AlignedAlloc()
/external/compiler-rt/test/asan/TestCases/Windows/
Ddll_aligned_mallocs.cc8 #define CHECK_ALIGNED(ptr,alignment) \ argument
Daligned_mallocs.cc6 #define CHECK_ALIGNED(ptr,alignment) \ argument
/external/clang/lib/AST/
DRecordLayout.cpp30 CharUnits alignment, in ASTRecordLayout()
41 CharUnits size, CharUnits alignment, in ASTRecordLayout()
/external/skia/src/core/
DSkArenaAlloc.cpp92 void SkArenaAlloc::ensureSpace(uint32_t size, uint32_t alignment) { in ensureSpace()
123 char* SkArenaAlloc::allocObject(uint32_t size, uint32_t alignment) { in allocObject()
133 char* SkArenaAlloc::allocObjectWithFooter(uint32_t sizeIncludingFooter, uint32_t alignment) { in allocObjectWithFooter()
/external/clang/lib/CodeGen/
DAddress.h29 Address(llvm::Value *pointer, CharUnits alignment) in Address()
77 ConstantAddress(llvm::Constant *pointer, CharUnits alignment) in ConstantAddress()
/external/compiler-rt/test/scudo/
Dmemalign.cpp19 size_t alignment = 1U << 12; in main() local
/external/swiftshader/third_party/LLVM/include/llvm/Support/
DEndian.h25 enum alignment {unaligned, aligned}; enum
/external/v8/src/heap/
Dspaces-inl.h393 int size_in_bytes, AllocationAlignment alignment) { in AllocateRawAligned()
411 AllocationAlignment alignment) { in AllocateLinearlyAligned()
468 AllocationAlignment alignment) { in AllocateRawAligned()
501 AllocationAlignment alignment) { in AllocateRaw()
523 AllocationAlignment alignment) { in AllocateRawAligned()
575 AllocationAlignment alignment) { in AllocateRaw()
587 int size_in_bytes, AllocationAlignment alignment) { in AllocateRawSynchronized()

12345678910>>...13