Searched defs:Length (Results 1 - 25 of 267) sorted by relevance

1234567891011

/external/clang/test/CodeGenCXX/
H A Dpragma-loop-safety.cpp4 void vectorize_test(int *List, int Length) { argument
11 for (int i = 0; i < Length; i++) {
27 void interleave_test(int *List, int Length) { argument
34 for (int i = 0; i < Length; i++) {
H A D2012-03-16-StoreAlign.cpp4 struct Length { struct
5 Length(double v) { function in struct:Length
9 bool operator==(const Length& o) const {
12 bool operator!=(const Length& o) const { return !(*this == o); }
22 static Length inchLength(double inch);
23 static bool getPageSizeFromName(const Length &A) {
24 static const Length legalWidth = inchLength(8.5);
30 // CHECK: @_ZZN3Foo19getPageSizeFromNameERK6LengthE10legalWidth = linkonce_odr global %struct.Length zeroinitializer, align 4
31 // CHECK: store float %{{.*}}, float* getelementptr inbounds (%struct.Length, %struct.Length*
[all...]
H A Dpragma-unroll.cpp4 void while_test(int *List, int Length) { argument
9 while (i < Length) {
17 void do_test(int *List, int Length) { argument
26 } while (i < Length);
30 void for_test(int *List, int Length) { argument
33 for (int i = 0; i < Length; i++) {
54 void for_define_test(int *List, int Length, int Value) { argument
57 for (int i = 0; i < Length; i++) {
65 void for_template_test(A *List, int Length, A Value) { argument
68 for (int i = 0; i < Length;
76 for_template_define_test(A *List, int Length, A Value) argument
89 template_test(double *List, int Length) argument
[all...]
/external/clang/test/Misc/
H A Dast-print-pragmas-xfail.cpp6 void run1(int *List, int Length) { argument
16 // CHECK-NEXT: while (i < Length)
17 while (i < Length) {
H A Dbackend-optimization-failure-nodbg.cpp7 void test_switch(int *A, int *B, int Length) { /* expected-warning {{loop not vectorized: failed explicitly specified loop vectorization}} */ argument
9 for (int i = 0; i < Length; i++) {
H A Dbackend-optimization-failure.cpp7 void test_switch(int *A, int *B, int Length) { argument
9 for (int i = 0; i < Length; i++) {
H A Dast-print-pragmas.cpp10 void test(int *List, int Length) { argument
14 // CHECK-NEXT: while (i < Length)
15 while (i < Length) {
27 // CHECK-NEXT: while (i - 1 < Length)
28 while (i - 1 < Length) {
40 // CHECK-NEXT: while (i - 2 < Length)
41 while (i - 2 < Length) {
48 void test_nontype_template_param(int *List, int Length) { argument
50 for (int i = 0; i < Length; i++) {
58 void test_templates(int *List, int Length) { argument
[all...]
/external/clang/test/Parser/
H A Dpragma-loop-safety.cpp6 void test(int *List, int Length) { argument
11 while (i + 1 < Length) {
24 while (i-7 < Length) {
32 while (i-9 < Length) {
H A Dpragma-unroll.cpp6 void test(int *List, int Length) { argument
10 while (i + 1 < Length) {
15 while (i < Length) {
20 while (i - 1 < Length) {
25 while (i - 2 < Length) {
32 while (i-6 < Length) {
37 while (i-7 < Length) {
47 while (i-8 < Length) {
52 /* expected-error {{expected a for, while, or do-while loop to follow '#pragma unroll'}} */ int j = Length;
54 /* expected-error {{expected a for, while, or do-while loop to follow '#pragma unroll'}} */ int k = Length;
[all...]
H A Dpragma-loop.cpp7 void test_nontype_template_param(int *List, int Length) { argument
9 for (int i = 0; i < Length; i++) {
14 for (int i = 0; i < Length; i++) {
20 void test_nontype_template_vectorize(int *List, int Length) { argument
22 for (int i = 0; i < Length; i++) {
27 for (int i = 0; i < Length; i++) {
33 void test_nontype_template_interleave(int *List, int Length) { argument
35 for (int i = 0; i < Length; i++) {
40 for (int i = 0; i < Length; i++) {
46 void test_nontype_template_char(int *List, int Length) { argument
54 test_nontype_template_bool(int *List, int Length) argument
62 test_nontype_template_badarg(int *List, int Length) argument
71 test_type_template_vectorize(int *List, int Length) argument
79 test(int *List, int Length) argument
[all...]
/external/google-breakpad/src/testing/gtest/samples/
H A Dsample2.h76 size_t Length() const { function in class:MyString
/external/googletest/googletest/samples/
H A Dsample2.h76 size_t Length() const { function in class:MyString
/external/llvm/lib/Support/
H A DLineIterator.cpp88 size_t Length = 0; local
89 while (Pos[Length] != '\0' && !isAtLineEnd(&Pos[Length])) {
90 ++Length;
93 CurrentLine = StringRef(Pos, Length);
/external/protobuf/gtest/samples/
H A Dsample2.h77 size_t Length() const { function in class:MyString
/external/v8/testing/gtest/samples/
H A Dsample2.h76 size_t Length() const { function in class:MyString
/external/vulkan-validation-layers/tests/gtest-1.7.0/samples/
H A Dsample2.h76 size_t Length() const { function in class:MyString
/external/clang/include/clang/Tooling/
H A DReplacementsYaml.h36 : FilePath(""), Offset(0), Length(0), ReplacementText("") {}
40 Length(R.getLength()), ReplacementText(R.getReplacementText()) {}
43 return clang::tooling::Replacement(FilePath, Offset, Length,
49 unsigned int Length; member in struct:llvm::yaml::MappingTraits::NormalizedReplacement
58 Io.mapRequired("Length", Keys->Length);
/external/clang/test/PCH/
H A Dpragma-loop.cpp29 inline void run1(int *List, int Length) { argument
34 while (i < Length) {
40 inline void run2(int *List, int Length) { argument
46 while (i - 1 < Length) {
52 inline void run3(int *List, int Length) { argument
58 while (i - 3 < Length) {
64 inline void run4(int *List, int Length) { argument
67 while (i - 3 < Length) {
73 inline void run5(int *List, int Length) { argument
76 while (i - 3 < Length) {
82 run6(int *List, int Length) argument
92 run7(int *List, int Length) argument
[all...]
/external/clang/unittests/Format/
H A DFormatTestJava.cpp23 unsigned Length, const FormatStyle &Style) {
26 std::vector<tooling::Range> Ranges(1, tooling::Range(Offset, Length));
22 format(llvm::StringRef Code, unsigned Offset, unsigned Length, const FormatStyle &Style) argument
H A DFormatTestProto.cpp23 unsigned Length, const FormatStyle &Style) {
26 std::vector<tooling::Range> Ranges(1, tooling::Range(Offset, Length));
22 format(llvm::StringRef Code, unsigned Offset, unsigned Length, const FormatStyle &Style) argument
H A DFormatTestSelective.cpp23 std::string format(llvm::StringRef Code, unsigned Offset, unsigned Length) { argument
26 std::vector<tooling::Range> Ranges(1, tooling::Range(Offset, Length));
/external/llvm/include/llvm/CodeGen/PBQP/
H A DMath.h29 explicit Vector(unsigned Length) argument
30 : Length(Length), Data(new PBQPNum[Length]) {
32 // << this << " (length " << Length << ")\n";
36 Vector(unsigned Length, PBQPNum InitVal) argument
37 : Length(Length), Data(new PBQPNum[Length]) {
39 // << this << " (length " << Length << ", fil
[all...]
/external/llvm/include/llvm/DebugInfo/CodeView/
H A DCVRecord.h24 uint32_t Length; member in struct:llvm::codeview::CVRecord
39 Item.Length = Prefix->RecordLen;
40 if (Item.Length < 2)
46 Reader.readBytes(Item.RawData, Item.Length + sizeof(uint16_t)))
/external/llvm/lib/DebugInfo/CodeView/
H A DStreamWriter.cpp61 Error StreamWriter::writeStreamRef(StreamRef Ref, uint32_t Length) { argument
62 Ref = Ref.slice(0, Length);
/external/llvm/lib/LTO/
H A DLTOModule.cpp60 bool LTOModule::isBitcodeFile(const void *Mem, size_t Length) { argument
62 MemoryBufferRef(StringRef((const char *)Mem, Length), "<mem>"));

Completed in 2049 milliseconds

1234567891011