Home
last modified time | relevance | path

Searched defs:length (Results 1 – 25 of 351) sorted by relevance

12345678910>>...15

/llvm-project/clang/test/Analysis/
H A DObjCRetSigs.m6 -(long long)length; method
11 -(double)length; method
16 -(long long)length{ method
27 -(double)length{ // expected-warning{{types are incompatible}} method
H A Dregion-store.c29 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 Dnot-null-terminated-result-in-initialization-strlen.c7 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 Dnot-null-terminated-result-memcpy-safe-other.c24 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 DStreamString.cpp26 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 DDataEncoder.cpp29 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 Dexample-typelist.cpp28 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 DWindowsMMap.c28 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 Dget_command_argument.f9036 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 Dget_command_argument-optional.f9010 subroutine test(number, value, length, status, errmsg) argument
11 integer, optional :: number, status, length local
H A Dget_environment_variable.f9040 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 Dget_environment_variable-optional.f9012 subroutine test(name, value, length, status, trim_name, errmsg) argument
13 integer, optional :: status, length local
/llvm-project/compiler-rt/lib/safestack/
H A Dsafestack_platform.h106 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 Dcompact-unwind-sym-relocs.s107 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 Dweak-definition-gc.s334 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 Dobjc-uses-custom-personality.s100 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 Dcompact-unwind-both-local-and-dylib-personality.s250 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 Dparallel_target_teams_reduction_max.cpp16 const Tp length = 1000; in test_max_idx_reduction() local
41 const int length = 1000; in test_max_val_reduction() local
H A Dparallel_target_teams_reduction_min.cpp16 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 Dproperty-dot-copy.mm15 Vector3D length; field
18 - (Vector3D) length; method
/llvm-project/lldb/test/API/functionalities/gdb_remote_client/
H A DTestGDBServerTargetXML.py45 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 Da.cpp7 A::length () in length() function in A
H A Dlength.cpp5 length (A &a) in length() function
/llvm-project/lld/MachO/
H A DEhFrame.cpp111 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 Dselector-2.m4 - length; method

12345678910>>...15