Home
last modified time | relevance | path

Searched full:size (Results 1 – 25 of 11211) sorted by relevance

12345678910>>...449

/llvm-project/llvm/lib/Support/rpmalloc/
H A Dmalloc.c26 _Static_assert(sizeof(size_t) == 8, "Data type size mismatch");
27 _Static_assert(sizeof(void *) == 8, "Data type size mismatch");
30 _Static_assert(sizeof(size_t) == 4, "Data type size mismatch");
31 _Static_assert(sizeof(void *) == 4, "Data type size mismatch");
85 extern inline RPMALLOC_RESTRICT void *RPMALLOC_CDECL malloc(size_t size) { in malloc() argument
86 return rpmalloc(size); in malloc()
89 size_t size) { in calloc() argument
90 return rpcalloc(count, size); in calloc()
93 size_t size) { in realloc() argument
94 return rprealloc(ptr, size); in realloc()
[all …]
/llvm-project/llvm/test/CodeGen/AMDGPU/
H A Dreqd-work-group-size.ll10 %gep.group.size.x = getelementptr inbounds i8, ptr addrspace(4) %dispatch.ptr, i64 4
11 %group.size.x = load i16, ptr addrspace(4) %gep.group.size.x, align 4
12 store i16 %group.size.x, ptr addrspace(1) %out
20 %gep.group.size.x = getelementptr inbounds i8, ptr addrspace(4) %dispatch.ptr, i64 4
21 %group.size.x = load volatile i16, ptr addrspace(4) %gep.group.size.x, align 4
22 store i16 %group.size.x, ptr addrspace(1) %out
27 ; CHECK: store i16 %group.size.x,
30 %gep.group.size
[all...]
H A Dupdate-lds-alignment.ll4 ; Properly aligned, same size as alignment.
7 ; Different properly aligned values, but same size of 1.
19 ; All LDS are properly aligned on 16 byte boundary, but they are of different size.
30 ; Properly aligned, same size as alignment.
31 ; CHECK-NOT: @k0.lds.size.1.align.1
32 ; CHECK-NOT: @k0.lds.size.2.align.2
33 ; CHECK-NOT: @k0.lds.size.4.align.4
34 ; CHECK-NOT: @k0.lds.size.8.align.8
35 ; CHECK-NOT: @k0.lds.size.16.align.16
36 @k0.lds.size.1.align.1 = internal unnamed_addr addrspace(3) global [1 x i8] poison, align 1
[all …]
H A Dhsa-metadata-from-llvm-ir-full.ll24 ; CHECK-NEXT: .size: 1
28 ; CHECK-NEXT: .size: 8
31 ; CHECK-NEXT: .size: 8
34 ; CHECK-NEXT: .size: 8
37 ; CHECK-NEXT: .size: 8
58 ; CHECK-NEXT: .size: 1
62 ; CHECK-NEXT: .size: 8
65 ; CHECK-NEXT: .size: 8
68 ; CHECK-NEXT: .size: 8
71 ; CHECK-NEXT: .size: 8
[all …]
/llvm-project/compiler-rt/lib/asan_abi/
H A Dasan_abi_shim.cpp45 void *__asan_memcpy(void *dst, const void *src, uptr size) { in __asan_memcpy() argument
46 return __asan_abi_memcpy(dst, src, size); in __asan_memcpy()
87 void __asan_report_load_n(uptr addr, uptr size) { in __asan_report_load_n() argument
88 __asan_abi_report_load_n((void *)addr, size, true); in __asan_report_load_n()
105 void __asan_report_store_n(uptr addr, uptr size) { in __asan_report_store_n() argument
106 __asan_abi_report_store_n((void *)addr, size, true); in __asan_report_store_n()
125 void __asan_report_exp_load_n(uptr addr, uptr size, u32 exp) { in __asan_report_exp_load_n() argument
126 __asan_abi_report_exp_load_n((void *)addr, size, exp, true); in __asan_report_exp_load_n()
143 void __asan_report_exp_store_n(uptr addr, uptr size, u32 exp) { in __asan_report_exp_store_n() argument
144 __asan_abi_report_exp_store_n((void *)addr, size, exp, true); in __asan_report_exp_store_n()
[all …]
/llvm-project/llvm/test/Object/
H A Dstackmap-dump.test8 CHECK-NEXT: Function address: 0, stack size: 8, callsite record count: 1
9 CHECK-NEXT: Function address: 0, stack size: 24, callsite record count: 1
10 CHECK-NEXT: Function address: 0, stack size: 8, callsite record count: 1
11 CHECK-NEXT: Function address: 0, stack size: 8, callsite record count: 1
12 CHECK-NEXT: Function address: 0, stack size: 8, callsite record count: 1
13 CHECK-NEXT: Function address: 0, stack size: 8, callsite record count: 1
14 CHECK-NEXT: Function address: 0, stack size: 8, callsite record count: 1
15 CHECK-NEXT: Function address: 0, stack size: 8, callsite record count: 1
16 CHECK-NEXT: Function address: 0, stack size: 8, callsite record count: 1
17 CHECK-NEXT: Function address: 0, stack size: 56, callsite record count: 1
[all …]
/llvm-project/clang/test/Sema/
H A Dwarn-strlcpycat-size.c1 // RUN: %clang_cc1 -Wstrlcpy-strlcat-size -verify -fsyntax-only %s
4 size_t strlcpy (char * restrict dst, const char * restrict src, size_t size);
5 size_t strlcat (char * restrict dst, const char * restrict src, size_t size);
22size argument in 'strlcpy' call appears to be size of the source; expected the size of the destina… in f()
23size argument in 'strlcpy' call appears to be size of the source; expected the size of the destina… in f()
24size argument in 'strlcat' call appears to be size of the source; expected the size of the destina… in f()
25size argument in 'strlcpy' call appears to be size of the source; expected the size of the destina… in f()
26size argument in 'strlcpy' call appears to be size of the source; expected the size of the destina… in f()
27 …sizeof(s2)); // expected-warning {{size argument in 'strlcpy' call appears to be size of the sourc… in f()
38 …zeof(str)); // expected-warning {{size argument in 'strlcpy' call appears to be size of the sourc… in flexible_arrays()
[all …]
/llvm-project/libc/benchmarks/automemcpy/unittests/
H A DCodeGenTest.cpp
/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerMutate.cpp24 PrintASCII(W.data(), W.size(), PrintAfter); in PrintASCII()
70 size_t MutationDispatcher::Mutate_Custom(uint8_t *Data, size_t Size, in Mutate_Custom() argument
73 EF->__msan_unpoison(Data, Size); in Mutate_Custom()
76 return EF->LLVMFuzzerCustomMutator(Data, Size, MaxSize, in Mutate_Custom()
80 size_t MutationDispatcher::Mutate_CustomCrossOver(uint8_t *Data, size_t Size, in Mutate_CustomCrossOver() argument
82 if (Size == 0) in Mutate_CustomCrossOver()
92 EF->__msan_unpoison(Data, Size); in Mutate_CustomCrossOver()
93 EF->__msan_unpoison(Other.data(), Other.size()); in Mutate_CustomCrossOver()
94 EF->__msan_unpoison(U.data(), U.size()); in Mutate_CustomCrossOver()
99 Data, Size, Other.data(), Other.size(), U.data(), U.size(), in Mutate_CustomCrossOver()
[all …]
/llvm-project/libcxx/lib/abi/
H A Di686-linux-android21.libcxxabi.v1.stable.exceptions.nonew.abilist547 {'is_defined': True, 'name': '_ZNSt6__ndk110ctype_base5alnumE', 'size': 4, 'type': 'OBJECT'}
548 {'is_defined': True, 'name': '_ZNSt6__ndk110ctype_base5alphaE', 'size': 4, 'type': 'OBJECT'}
549 {'is_defined': True, 'name': '_ZNSt6__ndk110ctype_base5blankE', 'size': 4, 'type': 'OBJECT'}
550 {'is_defined': True, 'name': '_ZNSt6__ndk110ctype_base5cntrlE', 'size': 4, 'type': 'OBJECT'}
551 {'is_defined': True, 'name': '_ZNSt6__ndk110ctype_base5digitE', 'size': 4, 'type': 'OBJECT'}
552 {'is_defined': True, 'name': '_ZNSt6__ndk110ctype_base5graphE', 'size': 4, 'type': 'OBJECT'}
553 {'is_defined': True, 'name': '_ZNSt6__ndk110ctype_base5lowerE', 'size': 4, 'type': 'OBJECT'}
554 {'is_defined': True, 'name': '_ZNSt6__ndk110ctype_base5printE', 'size': 4, 'type': 'OBJECT'}
555 {'is_defined': True, 'name': '_ZNSt6__ndk110ctype_base5punctE', 'size': 4, 'type': 'OBJECT'}
556 {'is_defined': True, 'name': '_ZNSt6__ndk110ctype_base5spaceE', 'size'
[all...]
H A Dx86_64-linux-android21.libcxxabi.v1.stable.exceptions.nonew.abilist547 {'is_defined': True, 'name': '_ZNSt6__ndk110ctype_base5alnumE', 'size': 8, 'type': 'OBJECT'}
548 {'is_defined': True, 'name': '_ZNSt6__ndk110ctype_base5alphaE', 'size': 8, 'type': 'OBJECT'}
549 {'is_defined': True, 'name': '_ZNSt6__ndk110ctype_base5blankE', 'size': 8, 'type': 'OBJECT'}
550 {'is_defined': True, 'name': '_ZNSt6__ndk110ctype_base5cntrlE', 'size': 8, 'type': 'OBJECT'}
551 {'is_defined': True, 'name': '_ZNSt6__ndk110ctype_base5digitE', 'size': 8, 'type': 'OBJECT'}
552 {'is_defined': True, 'name': '_ZNSt6__ndk110ctype_base5graphE', 'size': 8, 'type': 'OBJECT'}
553 {'is_defined': True, 'name': '_ZNSt6__ndk110ctype_base5lowerE', 'size': 8, 'type': 'OBJECT'}
554 {'is_defined': True, 'name': '_ZNSt6__ndk110ctype_base5printE', 'size': 8, 'type': 'OBJECT'}
555 {'is_defined': True, 'name': '_ZNSt6__ndk110ctype_base5punctE', 'size': 8, 'type': 'OBJECT'}
556 {'is_defined': True, 'name': '_ZNSt6__ndk110ctype_base5spaceE', 'size'
[all...]
H A Dx86_64-unknown-linux-gnu.libcxxabi.v1.stable.exceptions.nonew.abilist20 {'is_defined': False, 'name': '_ZTISt11logic_error', 'size': 0, 'type': 'OBJECT'}
21 {'is_defined': False, 'name': '_ZTISt12length_error', 'size': 0, 'type': 'OBJECT'}
22 {'is_defined': False, 'name': '_ZTISt12out_of_range', 'size': 0, 'type': 'OBJECT'}
23 {'is_defined': False, 'name': '_ZTISt13runtime_error', 'size': 0, 'type': 'OBJECT'}
24 {'is_defined': False, 'name': '_ZTISt14overflow_error', 'size': 0, 'type': 'OBJECT'}
25 {'is_defined': False, 'name': '_ZTISt16invalid_argument', 'size': 0, 'type': 'OBJECT'}
26 {'is_defined': False, 'name': '_ZTISt20bad_array_new_length', 'size': 0, 'type': 'OBJECT'}
27 {'is_defined': False, 'name': '_ZTISt8bad_cast', 'size': 0, 'type': 'OBJECT'}
28 {'is_defined': False, 'name': '_ZTISt9bad_alloc', 'size': 0, 'type': 'OBJECT'}
29 {'is_defined': False, 'name': '_ZTISt9exception', 'size'
[all...]
H A Dx86_64-unknown-freebsd.libcxxabi.v1.stable.exceptions.nonew.abilist20 {'is_defined': False, 'name': '_ZTISt11logic_error', 'size': 0, 'type': 'OBJECT'}
21 {'is_defined': False, 'name': '_ZTISt12length_error', 'size': 0, 'type': 'OBJECT'}
22 {'is_defined': False, 'name': '_ZTISt12out_of_range', 'size': 0, 'type': 'OBJECT'}
23 {'is_defined': False, 'name': '_ZTISt13runtime_error', 'size': 0, 'type': 'OBJECT'}
24 {'is_defined': False, 'name': '_ZTISt14overflow_error', 'size': 0, 'type': 'OBJECT'}
25 {'is_defined': False, 'name': '_ZTISt16invalid_argument', 'size': 0, 'type': 'OBJECT'}
26 {'is_defined': False, 'name': '_ZTISt20bad_array_new_length', 'size': 0, 'type': 'OBJECT'}
27 {'is_defined': False, 'name': '_ZTISt8bad_cast', 'size': 0, 'type': 'OBJECT'}
28 {'is_defined': False, 'name': '_ZTISt9bad_alloc', 'size': 0, 'type': 'OBJECT'}
29 {'is_defined': False, 'name': '_ZTISt9exception', 'size'
[all...]
H A Dx86_64-unknown-linux-gnu.libcxxabi.v1.stable.noexceptions.nonew.abilist9 {'is_defined': False, 'name': '_ZTISt11logic_error', 'size': 0, 'type': 'OBJECT'}
10 {'is_defined': False, 'name': '_ZTISt13runtime_error', 'size': 0, 'type': 'OBJECT'}
11 {'is_defined': False, 'name': '_ZTISt8bad_cast', 'size': 0, 'type': 'OBJECT'}
12 {'is_defined': False, 'name': '_ZTISt9exception', 'size': 0, 'type': 'OBJECT'}
13 {'is_defined': False, 'name': '_ZTVN10__cxxabiv117__class_type_infoE', 'size': 0, 'type': 'OBJECT'}
14 {'is_defined': False, 'name': '_ZTVN10__cxxabiv120__si_class_type_infoE', 'size': 0, 'type': 'OBJECT'}
15 {'is_defined': False, 'name': '_ZTVN10__cxxabiv121__vmi_class_type_infoE', 'size': 0, 'type': 'OBJECT'}
16 {'is_defined': False, 'name': '_ZTVSt11logic_error', 'size': 0, 'type': 'OBJECT'}
17 {'is_defined': False, 'name': '_ZTVSt13runtime_error', 'size': 0, 'type': 'OBJECT'}
531 {'is_defined': True, 'name': '_ZNSt3__110ctype_base5alnumE', 'size'
[all...]
/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_interceptors_memintrinsics.inc44 #define COMMON_INTERCEPTOR_MEMSET_IMPL(ctx, dst, v, size) \
47 return internal_memset(dst, v, size); \
48 COMMON_INTERCEPTOR_ENTER(ctx, memset, dst, v, size); \
50 COMMON_INTERCEPTOR_WRITE_RANGE(ctx, dst, size); \
51 return REAL(memset)(dst, v, size); \
56 #define COMMON_INTERCEPTOR_MEMMOVE_IMPL(ctx, dst, src, size) \
59 return internal_memmove(dst, src, size); \
60 COMMON_INTERCEPTOR_ENTER(ctx, memmove, dst, src, size); \
62 COMMON_INTERCEPTOR_WRITE_RANGE(ctx, dst, size); \
63 COMMON_INTERCEPTOR_READ_RANGE(ctx, src, size); \
[all...]
/llvm-project/libc/test/src/string/
H A Dmemchr_test.cpp15 const char *call_memchr(const void *src, int c, size_t size) { in call_memchr() argument
16 return reinterpret_cast<const char *>(LIBC_NAMESPACE::memchr(src, c, size)); in call_memchr()
21 const size_t size = 5; in TEST() local
22 const unsigned char src[size] = {'a', '\0', 'b', 'c', '\0'}; in TEST()
24 ASSERT_STREQ(call_memchr(src, 'b', size), "bc"); in TEST()
28 const size_t size = 3; in TEST() local
29 const unsigned char src[size] = {'a', 'b', 'c'}; in TEST()
31 const char *ret = call_memchr(src, 'b', size); in TEST()
37 const size_t size = 6; in TEST() local
38 const unsigned char src[size] = {'a', 'b', 'c', 'd', 'e', '\0'}; in TEST()
[all …]
H A Dmemrchr_test.cpp15 const char *call_memrchr(const void *src, int c, size_t size) { in call_memrchr() argument
16 return reinterpret_cast<const char *>(LIBC_NAMESPACE::memrchr(src, c, size)); in call_memrchr()
21 const size_t size = 6; in TEST() local
22 const unsigned char src[size] = {'a', '\0', 'b', 'c', 'd', '\0'}; in TEST()
24 ASSERT_STREQ(call_memrchr(src, 'b', size), "bcd"); in TEST()
28 const size_t size = 3; in TEST() local
29 const unsigned char src[size] = {'a', 'b', 'c'}; in TEST()
31 const char *ret = call_memrchr(src, 'b', size); in TEST()
37 const size_t size = 6; in TEST() local
38 const unsigned char src[size] = {'a', 'b', 'c', 'd', 'e', '\0'}; in TEST()
[all …]
/llvm-project/clang/test/Frontend/
H A Dstack-layout-remark.c15 extern void* allocate(unsigned size);
17 extern int work(char *ary, int size);
30 // YAML: - Size: '32'
35 // O0-NODEBUG-NEXT: Offset: [SP-40], Type: Variable, Align: 16, Size: 32
36 // O0-NODEBUG-NEXT: Offset: [SP-72], Type: Variable, Align: 16, Size: 32
39 // O0-DEBUG-NEXT: Offset: [SP-40], Type: Variable, Align: 16, Size: 32
41 // O0-DEBUG-NEXT: Offset: [SP-72], Type: Variable, Align: 16, Size: 32
45 // O3-DEBUG-NEXT: Offset: [SP-40], Type: Variable, Align: 16, Size: 32
57 // O0-NODEBUG-NEXT: Offset: [SP-40], Type: Variable, Align: 16, Size: 32
58 // O0-NODEBUG-NEXT: Offset: [SP-72], Type: Variable, Align: 16, Size: 32
[all …]
/llvm-project/clang-tools-extra/test/clang-tidy/checkers/readability/
H A Dcontainer-size-empty.cpp1 // RUN: %check_clang_tidy -std=c++14-or-later %s readability-container-size-empty %t -- \
2 // RUN: -config="{CheckOptions: {readability-container-size-empty.ExcludedComparisonTypes: '::std::…
11 unsigned long size() const;
20 unsigned long size() const;
36 unsigned long size() const;
45 unsigned long size() const;
51 bool size() const;
57 enum E size() const;
64 unsigned long size() const;
73 unsigned long size() const;
[all …]
/llvm-project/compiler-rt/test/hwasan/TestCases/
H A Dnew-test.cpp12 void operator_new_delete(size_t size) { in operator_new_delete() argument
13 void *alloc = operator new(size); in operator_new_delete()
15 assert(__sanitizer_get_allocated_size(alloc) == size); in operator_new_delete()
18 alloc = operator new(size); in operator_new_delete()
20 assert(__sanitizer_get_allocated_size(alloc) == size); in operator_new_delete()
21 operator delete(alloc, size); in operator_new_delete()
24 void operator_new_delete_array(size_t size) { in operator_new_delete_array() argument
25 void *alloc = operator new[](size); in operator_new_delete_array()
27 assert(__sanitizer_get_allocated_size(alloc) == size); in operator_new_delete_array()
30 alloc = operator new[](size); in operator_new_delete_array()
36 operator_new_delete(size_t size,std::align_val_t align) operator_new_delete() argument
50 operator_new_delete_array(size_t size,std::align_val_t align) operator_new_delete_array() argument
64 operator_new_delete(size_t size,const std::nothrow_t & tag) operator_new_delete() argument
71 operator_new_delete_array(size_t size,const std::nothrow_t & tag) operator_new_delete_array() argument
78 operator_new_delete(size_t size,std::align_val_t align,const std::nothrow_t & tag) operator_new_delete() argument
86 operator_new_delete_array(size_t size,std::align_val_t align,const std::nothrow_t & tag) operator_new_delete_array() argument
94 operator_new_delete(size_t size,void * ptr) operator_new_delete() argument
100 operator_new_delete_array(size_t size,void * ptr) operator_new_delete_array() argument
[all...]
/llvm-project/clang-tools-extra/unittests/clang-doc/
H A DClangDocTest.cpp57 ASSERT_EQ(Expected.AttrKeys.size(), Actual.AttrKeys.size()); in CheckCommentInfo()
58 for (size_t Idx = 0; Idx < Actual.AttrKeys.size(); ++Idx) in CheckCommentInfo()
61 ASSERT_EQ(Expected.AttrValues.size(), Actual.AttrValues.size()); in CheckCommentInfo()
62 for (size_t Idx = 0; Idx < Actual.AttrValues.size(); ++Idx) in CheckCommentInfo()
65 ASSERT_EQ(Expected.Args.size(), Actual.Args.size()); in CheckCommentInfo()
66 for (size_t Idx = 0; Idx < Actual.Args.size(); ++Idx) in CheckCommentInfo()
74 ASSERT_EQ(Expected.size(), Actual.size()); in CheckCommentInfo()
75 for (size_t Idx = 0; Idx < Actual.size(); ++Idx) in CheckCommentInfo()
81 ASSERT_EQ(Expected.size(), Actual.size()); in CheckCommentInfo()
82 for (size_t Idx = 0; Idx < Actual.size(); ++Idx) in CheckCommentInfo()
[all …]
/llvm-project/libc/test/src/string/memory_utils/
H A Dmemory_check_utils.h23 // Simple structure to allocate a buffer of a particular size.
27 PoisonedBuffer(size_t size) : ptr((char *)malloc(size)) { in PoisonedBuffer()
28 ASAN_POISON_MEMORY_REGION(ptr, size); in PoisonedBuffer()
36 // Simple structure to allocate a buffer (aligned or not) of a particular size.
44 Buffer(size_t size, Aligned aligned = Aligned::YES)
45 : PoisonedBuffer(size + kLeeway), size(size) {
50 ASAN_UNPOISON_MEMORY_REGION(offset_ptr, size);
89 CheckMemcpy(cpp::span<char> dst,cpp::span<char> src,size_t size) CheckMemcpy() argument
97 CheckMemset(cpp::span<char> dst,uint8_t value,size_t size) CheckMemset() argument
109 CheckBcmp(cpp::span<char> span1,cpp::span<char> span2,size_t size) CheckBcmp() argument
129 CheckMemcmp(cpp::span<char> span1,cpp::span<char> span2,size_t size) CheckMemcmp() argument
184 CheckMemmove(cpp::span<char> buffer,size_t size,int overlap) CheckMemmove() argument
[all...]
/llvm-project/libcxx/test/std/ranges/range.access/
H A Dsize.pass.cpp11 // std::ranges::size
19 using RangeSizeT = decltype(std::ranges::size);
32 static_assert(std::ranges::size(array_of_incomplete) == 42);
33 static_assert(std::ranges::size(std::move(array_of_incomplete)) == 42);
34 static_assert(std::ranges::size(std::as_const(array_of_incomplete)) == 42);
35 static_assert(std::ranges::size(static_cast<const Incomplete(&&)[42]>(array_of_incomplete)) == 42);
38 constexpr std::size_t size() { return 42; } in size() function
42 constexpr static std::size_t size() { return 42; } in size() function
48 friend constexpr std::size_t size(SizeFunction) { return 42; } in size() function
51 // Make sure the size member is preferred.
[all …]
/llvm-project/compiler-rt/lib/dfsan/
H A Ddfsan_allocator.cpp34 void OnMap(uptr p, uptr size) const { dfsan_set_label(0, (void *)p, size); } in OnMapSecondary()
35 void OnMapSecondary(uptr p, uptr size, uptr user_begin, in OnMapSecondary()
37 OnMap(p, size); in OnUnmap()
39 void OnUnmap(uptr p, uptr size) const { dfsan_set_label(0, (void *)p, size); }
94 static void *DFsanAllocate(uptr size, uptr alignment, bool zeroise) { in DFsanAllocate()
95 if (size > max_malloc_size) { in DFsanAllocate()
98 size); in DFsanAllocate()
102 ReportAllocationSizeTooBig(size, max_malloc_siz in DFsanAllocate()
91 DFsanAllocate(uptr size,uptr alignment,bool zeroise) DFsanAllocate() argument
139 uptr size = meta->requested_size; dfsan_deallocate() local
174 DFsanCalloc(uptr nmemb,uptr size) DFsanCalloc() argument
212 dfsan_malloc(uptr size) dfsan_malloc() argument
216 dfsan_calloc(uptr nmemb,uptr size) dfsan_calloc() argument
220 dfsan_realloc(void * ptr,uptr size) dfsan_realloc() argument
230 dfsan_reallocarray(void * ptr,uptr nmemb,uptr size) dfsan_reallocarray() argument
241 dfsan_valloc(uptr size) dfsan_valloc() argument
246 dfsan_pvalloc(uptr size) dfsan_pvalloc() argument
260 dfsan_aligned_alloc(uptr alignment,uptr size) dfsan_aligned_alloc() argument
271 dfsan_memalign(uptr alignment,uptr size) dfsan_memalign() argument
282 dfsan_posix_memalign(void ** memptr,uptr alignment,uptr size) dfsan_posix_memalign() argument
318 __sanitizer_get_estimated_allocated_size(uptr size) __sanitizer_get_estimated_allocated_size() argument
[all...]
/llvm-project/llvm/test/DebugInfo/PDB/
H A Dpdb-type-ref-stats.test7 CHECK: 0x1000 | LF_ARGLIST [size = 16, referenced]
10 CHECK: 0x1001 | LF_PROCEDURE [size = 16, referenced]
13 CHECK: 0x1002 | LF_ARGLIST [size = 16, referenced]
16 CHECK: 0x1003 | LF_PROCEDURE [size = 16, referenced]
19 CHECK: 0x1004 | LF_POINTER [size = 12, referenced]
21 CHECK: 0x1005 | LF_ARGLIST [size = 16, referenced]
24 CHECK: 0x1006 | LF_PROCEDURE [size = 16, referenced]
27 CHECK: 0x1007 | LF_FIELDLIST [size = 4, referenced]
28 CHECK: 0x1008 | LF_STRUCTURE [size = 124, referenced] `main::__l2::<unnamed-type-Anonymous>`
32 CHECK: 0x1009 | LF_STRUCTURE [size = 88, referenced] `main::__l2::Scoped`
[all …]

12345678910>>...449