/llvm-project/clang/test/Analysis/ |
H A D | ObjCRetSigs.m | 6 -(long long)length; method 11 -(double)length; method 16 -(long long)length{ method 27 -(double)length{ // expected-warning{{types are incompatible}} method
|
H A D | region-store.c | 29 int concreteOffsetBindingIsInvalidatedBySymbolicOffsetAssignment(int length, in concreteOffsetBindingIsInvalidatedBySymbolicOffsetAssignment() 40 int structOffsetBindingIsInvalidated(int length, int i){ in structOffsetBindingIsInvalidated() 46 void testConstraintOnRegionOffset(int *values, int length, int i){ in testConstraintOnRegionOffset() 54 void testConstraintOnRegionOffsetStack(int *values, int length, int i) { in testConstraintOnRegionOffsetStack()
|
/llvm-project/clang-tools-extra/test/clang-tidy/checkers/bugprone/ |
H A D | not-null-terminated-result-in-initialization-strlen.c | 7 int length; in path_sensitive_unknown_length() local 13 int length = strlen(src); in bad_memchr() local 25 int length = strlen(strerror(errno)); in bad_strerror_s() local 35 int length = strlen(strerror(errno)); in good_strerror_s() local 40 int length = strlen(str1) + 1; in bad_strncmp_1() local 47 int length = strlen(str1) + 1; in good_strncmp_1() local
|
H A D | not-null-terminated-result-memcpy-safe-other.c | 24 const int length = strlen(src); in good_memcpy_null_terminated() local 31 int length = strlen(src) + 1; in good_memcpy_proper_length() local 36 void may_bad_memcpy_unknown_length(const char *src, int length) { in may_bad_memcpy_unknown_length() 87 const int length = strlen(src); in bad_memcpy_dest_size_overflows() local 96 const int length = strlen(src); in good_memcpy_dest_size_overflows() local
|
/llvm-project/lldb/source/Utility/ |
H A D | StreamString.cpp | 26 size_t StreamString::WriteImpl(const void *s, size_t length) { in WriteImpl() 41 const size_t length = m_packet.size(); in GetSizeOfLastLine() local 54 const size_t length = m_packet.size(); in FillLastLineToColumn() local
|
H A D | DataEncoder.cpp | 29 DataEncoder::DataEncoder(const void *data, uint32_t length, ByteOrder endian, in DataEncoder() 170 const size_t length = data.size(); in AppendData() local 177 const size_t length = data.size(); in AppendData() local 184 const size_t length = data.size(); in AppendCString() local
|
/llvm-project/clang/test/SemaTemplate/ |
H A D | example-typelist.cpp | 28 struct length<cons<Head, Tail> > { struct 29 static const unsigned value = length<Tail>::value + 1; argument 33 struct length<nil> { struct 41 int length0[length<unsigned_inttypes>::value == 4? 1 : -1]; argument
|
/llvm-project/compiler-rt/lib/profile/ |
H A D | WindowsMMap.c | 28 void *mmap(void *start, size_t length, int prot, int flags, int fd, off_t offset) in mmap() 80 void munmap(void *addr, size_t length) in munmap() 87 int msync(void *addr, size_t length, int flags) in msync() 116 int madvise(void *addr, size_t length, int advice) in madvise()
|
/llvm-project/flang/test/Lower/Intrinsics/ |
H A D | get_command_argument.f90 | 36 subroutine all_arguments(num, value, length, status, errmsg) argument 37 integer :: num, length, status local 63 subroutine number_and_length_only(num, length) argument 64 integer :: num, length local
|
H A D | get_command_argument-optional.f90 | 10 subroutine test(number, value, length, status, errmsg) argument 11 integer, optional :: number, status, length local
|
H A D | get_environment_variable.f90 | 40 subroutine name_and_length_only(name, length) argument 42 integer :: length local 127 all_arguments(name, value, length, status, trim_name, errmsg) global() argument 129 integer :: length, global() local [all...] |
H A D | get_environment_variable-optional.f90 | 12 subroutine test(name, value, length, status, trim_name, errmsg) argument 13 integer, optional :: status, length local
|
/llvm-project/compiler-rt/lib/safestack/ |
H A D | safestack_platform.h | 106 Mmap(void * addr,size_t length,int prot,int flags,int fd,off_t offset) Mmap() argument 120 Munmap(void * addr,size_t length) Munmap() argument 129 Mprotect(void * addr,size_t length,int prot) Mprotect() argument [all...] |
/llvm-project/lld/test/MachO/ |
H A D | compact-unwind-sym-relocs.s | 107 length: 2 label 115 length: 2 label 123 length: 2 label 131 length: 3 label 139 length: 3 label 147 length: 3 label 155 length: 3 label 177 length: 3 label 185 length: 3 label 193 length: 3 label [all …]
|
H A D | weak-definition-gc.s | 334 length: 2 label 342 length: 2 label 350 length: 2 label 358 length: 3 label 366 length: 3 label 374 length: 3 label 382 length: 3 label 404 length: 3 label 412 length: 3 label 420 length: 3 label [all …]
|
H A D | objc-uses-custom-personality.s | 100 length: 2 label 108 length: 2 label 116 length: 2 label 124 length: 3 label 132 length: 3 label 154 length: 3 label 162 length: 3 label 170 length: 3 label
|
H A D | compact-unwind-both-local-and-dylib-personality.s | 250 length: 2 label 258 length: 2 label 266 length: 2 label 274 length: 3 label 282 length: 3 label 304 length: 3 label 312 length: 3 label 320 length: 3 label
|
/llvm-project/offload/test/offloading/ |
H A D | parallel_target_teams_reduction_max.cpp | 16 const Tp length = 1000; in test_max_idx_reduction() local 41 const int length = 1000; in test_max_val_reduction() local
|
H A D | parallel_target_teams_reduction_min.cpp | 16 const Tp length = 1000; in test_min_idx_reduction() local 41 const int length = 1000; in test_min_val_reduction() local
|
/llvm-project/clang/test/CodeGenObjCXX/ |
H A D | property-dot-copy.mm | 15 Vector3D length; field 18 - (Vector3D) length; method
|
/llvm-project/lldb/test/API/functionalities/gdb_remote_client/ |
H A D | TestGDBServerTargetXML.py | 45 def qXferRead(self, obj, annex, offset, length): argument 280 def qXferRead(self, obj, annex, offset, length): argument 475 def qXferRead(self, obj, annex, offset, length): argument 675 def qXferRead(self, obj, annex, offset, length): argument 748 def qXferRead(self, obj, annex, offset, length): argument 820 def qXferRead(self, obj, annex, offset, length): argument
|
/llvm-project/lldb/test/API/lang/cpp/incomplete-types/ |
H A D | a.cpp | 7 A::length () in length() function in A
|
H A D | length.cpp | 5 length (A &a) in length() function
|
/llvm-project/lld/MachO/ |
H A D | EhFrame.cpp | 111 uint64_t off, uint8_t length, in createSubtraction() argument 128 uint8_t length) { in makePcRel() argument 134 uint8_t length) { in makeNegativePcRel() argument
|
/llvm-project/clang/test/SemaObjC/ |
H A D | selector-2.m | 4 - length; method
|