Home
last modified time | relevance | path

Searched refs:Length (Results 1 – 25 of 1087) sorted by relevance

12345678910>>...44

/llvm-project-15.0.7/clang/test/Parser/
H A Dpragma-unroll-and-jam.cpp10 for (int i = 0; i < Length; i++) { in test()
11 for (int j = 0; j < Length; j++) { in test()
12 List[i * Length + j] = Value; in test()
17 for (int i = 0; i < Length; i++) { in test()
18 for (int j = 0; j < Length; j++) { in test()
19 List[i * Length + j] = Value; in test()
24 for (int i = 0; i < Length; i++) { in test()
26 List[i * Length + j] = Value; in test()
33 for (int i = 0; i < Length; i++) { in test()
35 List[i * Length + j] = Value; in test()
[all …]
H A Dpragma-loop.cpp92 while (i + 1 < Length) { in test()
99 while (i < Length) { in test()
107 while (i - 1 < Length) { in test()
112 while (i - 2 < Length) { in test()
121 int VList[Length]; in test()
165 while (i-4 < Length) { in test()
175 while (i-5 < Length) { in test()
191 while (i-6 < Length) { in test()
209 while (i-6 < Length) { in test()
217 while (i-7 < Length) { in test()
[all …]
H A Dpragma-unroll.cpp10 while (i + 1 < Length) { in test()
15 while (i < Length) { in test()
20 while (i - 1 < Length) { in test()
25 while (i - 2 < Length) { in test()
32 while (i-6 < Length) { in test()
37 while (i-7 < Length) { in test()
47 while (i-8 < Length) { in test()
69 while (i-10 < Length) { in test()
75 while (i-11 < Length) { in test()
81 while (i-11 < Length) { in test()
[all …]
H A Dpragma-fp.cpp3 void test_0(int *List, int Length) { in test_0() argument
6 for (int i = 0; i < Length; i++) { in test_0()
10 void test_1(int *List, int Length) { in test_1() argument
13 for (int i = 0; i < Length; i++) { in test_1()
18 void test_3(int *List, int Length) { in test_3() argument
21 for (int i = 0; i < Length; i++) { in test_3()
26 void test_4(int *List, int Length) { in test_4() argument
29 for (int i = 0; i < Length; i++) { in test_4()
34 void test_5(int *List, int Length) { in test_5() argument
37 for (int i = 0; i < Length; i++) { in test_5()
[all …]
/llvm-project-15.0.7/llvm/tools/llvm-readobj/
H A DARMWinEHPrinter.h32 uint8_t Length; member
39 unsigned Length, bool Prologue);
41 unsigned Length, bool Prologue);
43 unsigned Length, bool Prologue);
45 unsigned Length, bool Prologue);
47 unsigned Length, bool Prologue);
49 unsigned Length, bool Prologue);
51 unsigned Length, bool Prologue);
53 unsigned Length, bool Prologue);
55 unsigned Length, bool Prologue);
[all …]
/llvm-project-15.0.7/clang/test/CodeGenCXX/
H A Dpragma-loop.cpp4 void while_test(int *List, int Length) { in while_test() argument
13 while (i < Length) { in while_test()
21 void do_test(int *List, int Length) { in do_test() argument
29 } while (i < Length); in do_test()
35 void for_test(int *List, int Length) { in for_test() argument
39 for (int i = 0; i < Length; i++) { in for_test()
60 for (int i = 0; i < Length; i++) { in disable_test()
74 for (int i = 0; i < Length; i++) { in for_define_test()
83 for (int i = 0; i < Length; i++) { in for_contant_expression_test()
89 for (int i = 0; i < Length; i++) { in for_contant_expression_test()
[all …]
H A Dpragma-loop-predicate.cpp3 void test0(int *List, int Length) { in test0() argument
8 for (int i = 0; i < Length; i++) in test0()
12 void test1(int *List, int Length) { in test1() argument
17 for (int i = 0; i < Length; i++) in test1()
21 void test2(int *List, int Length) { in test2() argument
26 for (int i = 0; i < Length; i++) in test2()
31 void test3(int *List, int Length) { in test3() argument
36 for (int i = 0; i < Length; i++) in test3()
42 void test4(int *List, int Length) { in test4() argument
47 for (int i = 0; i < Length; i++) in test4()
[all …]
H A Dpragma-unroll-and-jam.cpp6 for (int i = 0; i < Length; i++) { in unroll_and_jam()
7 for (int j = 0; j < Length; j++) { in unroll_and_jam()
10 List[i * Length + j] = Value; in unroll_and_jam()
18 for (int i = 0; i < Length; i++) { in unroll_and_jam_count()
19 for (int j = 0; j < Length; j++) { in unroll_and_jam_count()
22 List[i * Length + j] = Value; in unroll_and_jam_count()
30 for (int i = 0; i < Length; i++) { in nounroll_and_jam()
31 for (int j = 0; j < Length; j++) { in nounroll_and_jam()
34 List[i * Length + j] = Value; in nounroll_and_jam()
43 for (int i = 0; i < Length; i++) { in clang_unroll_plus_nounroll_and_jam()
[all …]
H A Dpragma-unroll.cpp7 void while_test(int *List, int Length) { in while_test() argument
12 while (i < Length) { in while_test()
20 void do_test(int *List, int Length) { in do_test() argument
29 } while (i < Length); in do_test()
33 void for_test(int *List, int Length) { in for_test() argument
36 for (int i = 0; i < Length; i++) { in for_test()
60 for (int i = 0; i < Length; i++) { in for_define_test()
71 for (int i = 0; i < Length; i++) { in for_template_test()
83 for (int i = 0; i < Length; i++) { in for_template_define_test()
92 void template_test(double *List, int Length) { in template_test() argument
[all …]
H A Dpragma-gcc-unroll.cpp7 void while_test(int *List, int Length) { in while_test() argument
12 while (i < Length) { in while_test()
20 void do_test(int *List, int Length) { in do_test() argument
29 } while (i < Length); in do_test()
33 void for_test(int *List, int Length) { in for_test() argument
36 for (int i = 0; i < Length; i++) { in for_test()
60 for (int i = 0; i < Length; i++) { in for_define_test()
71 for (int i = 0; i < Length; i++) { in for_template_test()
83 for (int i = 0; i < Length; i++) { in for_template_define_test()
92 void template_test(double *List, int Length) { in template_test() argument
[all …]
H A Dpragma-pipeline.cpp3 void pipeline_disabled(int *List, int Length, int Value) { in pipeline_disabled() argument
6 for (int i = 0; i < Length; i++) { in pipeline_disabled()
12 void pipeline_not_disabled(int *List, int Length, int Value) { in pipeline_not_disabled() argument
14 for (int i = 0; i < Length; i++) { in pipeline_not_disabled()
19 void pipeline_initiation_interval(int *List, int Length, int Value) { in pipeline_initiation_interval() argument
22 for (int i = 0; i < Length; i++) { in pipeline_initiation_interval()
28 void pipeline_disabled_on_nested_loop(int *List, int Length, int Value) { in pipeline_disabled_on_nested_loop() argument
30 for (int i = 0; i < Length; i++) { in pipeline_disabled_on_nested_loop()
32 for (int j = 0; j < Length; j++) { in pipeline_disabled_on_nested_loop()
34 List[i * Length + j] = Value; in pipeline_disabled_on_nested_loop()
H A D2012-03-16-StoreAlign.cpp4 struct Length { struct
5 Length(double v) { in Length() argument
9 bool operator==(const Length& o) const { in operator ==() argument
12 bool operator!=(const Length& o) const { return !(*this == o); } in operator !=() argument
22 static Length inchLength(double inch); argument
23 static bool getPageSizeFromName(const Length &A) { in getPageSizeFromName()
24 static const Length legalWidth = inchLength(8.5); in getPageSizeFromName()
33 bool bar(Length &b) { in bar()
H A Dpragma-loop-pr27643.cpp3 void loop1(int *List, int Length) { in loop1() argument
8 for (int i = 0; i < Length; i++) in loop1()
14 void loop2(int *List, int Length) { in loop2() argument
19 for (int i = 0; i < Length; i++) in loop2()
24 void loop3(int *List, int Length) { in loop3() argument
29 for (int i = 0; i < Length; i++) in loop3()
34 void loop4(int *List, int Length) { in loop4() argument
39 for (int i = 0; i < Length; i++) in loop4()
/llvm-project-15.0.7/llvm/include/llvm/CodeGen/PBQP/
H A DMath.h30 explicit Vector(unsigned Length) in Vector() argument
31 : Length(Length), Data(std::make_unique<PBQPNum []>(Length)) {} in Vector()
34 Vector(unsigned Length, PBQPNum InitVal) in Vector() argument
35 : Length(Length), Data(std::make_unique<PBQPNum []>(Length)) { in Vector()
41 : Length(V.Length), Data(std::make_unique<PBQPNum []>(Length)) { in Vector()
47 : Length(V.Length), Data(std::move(V.Data)) { in Vector()
48 V.Length = 0; in Vector()
54 if (Length != V.Length)
62 return Length; in getLength()
82 assert(Length == V.Length && "Vector length mismatch.");
[all …]
/llvm-project-15.0.7/libcxx/benchmarks/
H A Dstring.bench.cpp130 case Length::Empty: in getString()
132 case Length::Small: in getString()
134 case Length::Large: in getString()
136 case Length::Huge: in getString()
145 case Length::Empty: in makeString()
151 case Length::Huge: in makeString()
471 if (LHLength() == Length::Huge || RHLength() == Length::Huge) in skip()
527 if (Length() == ::Length::Huge) { in skip()
540 for (auto Lhs : {Length::Empty, Length::Small, Length::Large, Length::Huge}) { in sanityCheckGeneratedStrings()
543 {Length::Empty, Length::Small, Length::Large, Length::Huge}) { in sanityCheckGeneratedStrings()
[all …]
/llvm-project-15.0.7/llvm/include/llvm/ADT/
H A DStringRef.h71 size_t Length = 0; variable
188 return (Length == RHS.Length && in equals()
195 return Length == RHS.Length && compare_insensitive(RHS) == 0; in equals_insensitive()
203 if (int Res = compareMemory(Data, RHS.Data, std::min(Length, RHS.Length))) in compare()
207 if (Length == RHS.Length) in compare()
209 return Length < RHS.Length ? -1 : 1; in compare()
291 return Length >= Prefix.Length && in startswith()
302 return Length >= Suffix.Length && in endswith()
303 compareMemory(end() - Suffix.Length, Suffix.Data, Suffix.Length) == 0; in endswith()
861 return drop_back(Length - std::min(Length, find_last_not_of(Char) + 1)); in rtrim()
[all …]
/llvm-project-15.0.7/clang/test/PCH/
H A Dpragma-loop.cpp27 inline void run1(int *List, int Length) { in run1() argument
32 while (i < Length) { in run1()
38 inline void run2(int *List, int Length) { in run2() argument
44 while (i - 1 < Length) { in run2()
50 inline void run3(int *List, int Length) { in run3() argument
56 while (i - 3 < Length) { in run3()
62 inline void run4(int *List, int Length) { in run4() argument
65 while (i - 3 < Length) { in run4()
74 while (i - 3 < Length) { in run5()
83 while (i - 3 < Length) { in run6()
[all …]
/llvm-project-15.0.7/llvm/include/llvm/Support/
H A DBinaryStreamRef.h35 ViewOffset(Offset), Length(Length) {} in BinaryStreamRefBase()
38 : BorrowedImpl(&BorrowedImpl), ViewOffset(Offset), Length(Length) {} in BinaryStreamRefBase()
51 if (Length) in getLength()
52 return *Length; in getLength()
70 if (Result.Length) in drop_front()
71 *Result.Length -= N; in drop_front()
90 if (!Result.Length) in drop_back()
91 Result.Length = getLength(); in drop_back()
93 *Result.Length -= N; in drop_back()
128 if (LHS.Length != RHS.Length)
[all …]
/llvm-project-15.0.7/llvm/lib/Support/
H A DStringRef.cpp40 if (Length == RHS.Length) in compare_insensitive()
42 return Length < RHS.Length ? -1 : 1; in compare_insensitive()
46 return Length >= Prefix.Length && in startswith_insensitive()
51 return Length >= Suffix.Length && in endswith_insensitive()
62 for (size_t I = 0, E = std::min(Length, RHS.Length); I != E; ++I) { in compare_numeric()
86 if (Length == RHS.Length) in compare_numeric()
88 return Length < RHS.Length ? -1 : 1; in compare_numeric()
132 if (From > Length) in find()
208 if (N > Length) in rfind()
220 if (N > Length) in rfind_insensitive()
[all …]
/llvm-project-15.0.7/clang/test/SemaTemplate/
H A Dext-vector-type.cpp2 template<typename T, unsigned Length>
4 typedef T __attribute__((ext_vector_type(Length))) type;
12 template<typename T, unsigned Length>
14 typedef T __attribute__((ext_vector_type(Length))) type; // expected-error{{zero vector size}}
21 template<typename T, unsigned Length>
23 …typedef T __attribute__((ext_vector_type(Length))) type; // expected-error{{invalid vector element…
32 template<typename T, T Length>
34 typedef T __attribute__((ext_vector_type(Length))) type;
43 template<unsigned Length>
48 template<int Length>
[all …]
/llvm-project-15.0.7/llvm/test/tools/obj2yaml/COFF/
H A Dsection-aux-symbol.yaml115 Length: 4
127 Length: 4
139 Length: 4
151 Length: 4
163 Length: 4
175 Length: 4
187 Length: 4
199 Length: 4
211 Length: 4
223 Length: 4
[all …]
/llvm-project-15.0.7/clang/test/AST/
H A Dast-print-pragmas.cpp7 void test(int *List, int Length) { in test() argument
12 while (i < Length) { in test()
22 while (i < Length) { in test()
32 while (i < Length) { in test()
42 while (i < Length) { in test()
57 while (i - 1 < Length) { in test()
72 while (i - 2 < Length) { in test()
79 void test_nontype_template_param(int *List, int Length) { in test_nontype_template_param() argument
81 for (int i = 0; i < Length; i++) { in test_nontype_template_param()
89 void test_templates(int *List, int Length) { in test_templates() argument
[all …]
/llvm-project-15.0.7/llvm/test/tools/llvm-dwarfdump/X86/Inputs/
H A Ddebug_line_malformed.s6 .long .Lprologue1_end-.Lprologue1_start # Length of Prologue
8 .byte 1 # Minimum Instruction Length
49 .byte 1 # Minimum Instruction Length
69 .byte 1 # Minimum Instruction Length
95 .byte 1 # Minimum Instruction Length
124 .byte 1 # Minimum Instruction Length
157 .byte 1 # Minimum Instruction Length
186 .byte 1 # Minimum Instruction Length
207 .byte 1 # Minimum Instruction Length
240 .byte 1 # Minimum Instruction Length
[all …]
/llvm-project-15.0.7/llvm/test/MC/MachO/AArch64/
H A Ddarwin-ARM64-reloc.s42 ; CHECK-NEXT: Length: 2
49 ; CHECK-NEXT: Length: 2
56 ; CHECK-NEXT: Length: 2
63 ; CHECK-NEXT: Length: 2
70 ; CHECK-NEXT: Length: 2
77 ; CHECK-NEXT: Length: 2
84 ; CHECK-NEXT: Length: 2
91 ; CHECK-NEXT: Length: 2
98 ; CHECK-NEXT: Length: 2
105 ; CHECK-NEXT: Length: 2
[all …]
/llvm-project-15.0.7/libc/src/__support/CPP/
H A DArrayRef.h40 explicit ArrayRefBase(QualifiedT &OneElt) : Data(&OneElt), Length(1) {} in ArrayRefBase()
43 ArrayRefBase(QualifiedT *Data, size_t Length) : Data(Data), Length(Length) {} in ArrayRefBase() argument
47 : Data(Begin), Length(End - Begin) {} in ArrayRefBase()
51 constexpr ArrayRefBase(QualifiedT (&Arr)[N]) : Data(Arr), Length(N) {} in ArrayRefBase()
54 size_t size() const { return Length; } in size()
91 if (Length != RHS.Length) in equals()
106 size_t Length = 0; variable
120 ArrayRef(const void *Data, size_t Length) in ArrayRef()
121 : Impl(reinterpret_cast<const T *>(Data), Length / sizeof(T)) {} in ArrayRef()
139 MutableArrayRef(void *Data, size_t Length) in MutableArrayRef()
[all …]

12345678910>>...44