| /external/llvm/test/MC/Mips/ |
| D | set-nomacro.s | 3 # CHECK-NOT: warning: macro instruction expanded into multiple instructions 81 # CHECK-NOT: [[@LINE-1]]:3: warning: macro instruction expanded into multiple instructions 83 # CHECK-NOT: [[@LINE-1]]:3: warning: macro instruction expanded into multiple instructions 85 # CHECK: [[@LINE-1]]:3: warning: macro instruction expanded into multiple instructions 88 # CHECK-NOT: [[@LINE-1]]:3: warning: macro instruction expanded into multiple instructions 90 # CHECK: [[@LINE-1]]:3: warning: macro instruction expanded into multiple instructions 92 # CHECK-NOT: [[@LINE-1]]:3: warning: macro instruction expanded into multiple instructions 94 # CHECK: [[@LINE-1]]:3: warning: macro instruction expanded into multiple instructions 96 # CHECK: [[@LINE-1]]:3: warning: macro instruction expanded into multiple instructions 99 # CHECK-NOT: [[@LINE-1]]:3: warning: macro instruction expanded into multiple instructions [all …]
|
| D | set-nomacro-micromips.s | 7 # CHECK-NOT: warning: macro instruction expanded into multiple instructions 21 # CHECK-NOT: [[@LINE-1]]:3: warning: macro instruction expanded into multiple instructions 23 # CHECK-NOT: [[@LINE-1]]:3: warning: macro instruction expanded into multiple instructions 25 # CHECK-NOT: [[@LINE-1]]:3: warning: macro instruction expanded into multiple instructions 28 # CHECK-NOT: [[@LINE-1]]:3: warning: macro instruction expanded into multiple instructions 30 # CHECK-NOT: [[@LINE-1]]:3: warning: macro instruction expanded into multiple instructions 33 # CHECK-NOT: [[@LINE-1]]:3: warning: macro instruction expanded into multiple instructions
|
| /external/oboe/samples/RhythmGame/third_party/glm/gtc/ |
| D | round.inl | 76 GLM_FUNC_QUALIFIER static genType call(genType Source, genType Multiple) 79 return Source + (Multiple - std::fmod(Source, Multiple)); 81 return Source + std::fmod(-Source, Multiple); 89 GLM_FUNC_QUALIFIER static genType call(genType Source, genType Multiple) 92 return Tmp + (Multiple - (Tmp % Multiple)); 100 GLM_FUNC_QUALIFIER static genType call(genType Source, genType Multiple) 105 return Tmp + (Multiple - (Tmp % Multiple)); 108 return Source + (-Source % Multiple); 119 GLM_FUNC_QUALIFIER static genType call(genType Source, genType Multiple) 122 return Source - std::fmod(Source, Multiple); [all …]
|
| D | round.hpp | 85 /// Return true if the 'Value' is a multiple of 'Multiple'. 89 GLM_FUNC_DECL bool isMultiple(genIUType Value, genIUType Multiple); 91 /// Return true if the 'Value' is a multiple of 'Multiple'. 95 GLM_FUNC_DECL vecType<bool, P> isMultiple(vecType<T, P> const & Value, T Multiple); 97 /// Return true if the 'Value' is a multiple of 'Multiple'. 101 …FUNC_DECL vecType<bool, P> isMultiple(vecType<T, P> const & Value, vecType<T, P> const & Multiple); 103 /// Higher multiple number of Source. 107 /// @param Multiple Must be a null or positive value 111 GLM_FUNC_DECL genType ceilMultiple(genType Source, genType Multiple); 113 /// Higher multiple number of Source. [all …]
|
| /external/llvm/test/tools/dsymutil/X86/ |
| D | multiple-inputs.test | 1 RUN: rm -rf %T/multiple-inputs 2 RUN: mkdir -p %T/multiple-inputs 4 RUN: cat %p/../Inputs/basic.macho.x86_64 > %T/multiple-inputs/basic.macho.x86_64 5 RUN: cat %p/../Inputs/basic-archive.macho.x86_64 > %T/multiple-inputs/basic-archive.macho.x86_64 6 RUN: cat %p/../Inputs/basic-lto.macho.x86_64 > %T/multiple-inputs/basic-lto.macho.x86_64 7 RUN: cat %p/../Inputs/basic-lto-dw4.macho.x86_64 > %T/multiple-inputs/basic-lto-dw4.macho.x86_64 9 # Multiple inputs in flat mode 10 …%p/.. %T/multiple-inputs/basic.macho.x86_64 %T/multiple-inputs/basic-archive.macho.x86_64 %T/multi… 11 RUN: llvm-dwarfdump %T/multiple-inputs/basic.macho.x86_64.dwarf \ 13 RUN: llvm-dwarfdump %T/multiple-inputs/basic-archive.macho.x86_64.dwarf \ [all …]
|
| /external/llvm/test/DebugInfo/ |
| D | debuglineinfo-macho.test | 3 RUN: llvm-dwarfdump %p/Inputs/test-multiple-macho.o | FileCheck %s 4 RUN: llvm-rtdyld -printline %p/Inputs/test-multiple-macho.o | FileCheck %s 5 RUN: llvm-rtdyld -printobjline %p/Inputs/test-multiple-macho.o | FileCheck %s 14 RUN: llvm-rtdyld -printobjline %p/Inputs/test-multiple-macho.o \ 16 RUN: llvm-rtdyld -printline %p/Inputs/test-multiple-macho.o \ 25 TEST_MULTIPLE-NEXT: Line info @ 0: multiple.c, line:5 26 TEST_MULTIPLE-NEXT: Line info @ 7: multiple.c, line:6 27 TEST_MULTIPLE-NEXT: Line info @ 16: multiple.c, line:9 28 TEST_MULTIPLE-NEXT: Line info @ 21: multiple.c, line:9 29 TEST_MULTIPLE-NEXT: Line info @ 26: multiple.c, line:7 [all …]
|
| /external/clang/test/Sema/ |
| D | warn-unsequenced.c | 13 a = ++a; // expected-warning {{multiple unsequenced modifications to 'a'}} in test() 15 a = a++; // expected-warning {{multiple unsequenced modifications to 'a'}} in test() 17 ++a + ++a; // expected-warning {{multiple unsequenced modifications}} in test() 18 a++ + a++; // expected-warning {{multiple unsequenced modifications}} in test() 19 a = xs[++a]; // expected-warning {{multiple unsequenced modifications}} in test() 20 a = xs[a++]; // expected-warning {{multiple unsequenced modifications}} in test() 21 a = (++a, ++a); // expected-warning {{multiple unsequenced modifications}} in test() 22 a = (a++, ++a); // expected-warning {{multiple unsequenced modifications}} in test() 23 a = (a++, a++); // expected-warning {{multiple unsequenced modifications}} in test() 27 f(a = 0, a = 0); // expected-warning {{multiple unsequenced modifications}} in test() [all …]
|
| /external/clang/test/SemaObjC/ |
| D | arc-repeated-weak.mm | 22 …use(a.weakProp); // expected-warning{{weak property 'weakProp' is accessed multiple times in this … 57 use(a.weakProp); // expected-warning{{weak property 'weakProp' is accessed multiple times}} 66 …eakProp); // expected-warning{{weak property 'weakProp' may be accessed multiple times in this fun… 71 …trongProp.weakProp); // expected-warning{{weak property 'weakProp' may be accessed multiple times}} 76 …licitProp); // expected-warning{{weak implicit property 'implicitProp' is accessed multiple times}} 81 …use(Test.weakProp); // expected-warning{{weak implicit property 'weakProp' is accessed multiple ti… 92 …use(a->weakIvar); // expected-warning{{weak instance variable 'weakIvar' is accessed multiple time… 98 use(a); // expected-warning{{weak variable 'a' is accessed multiple times}} 103 use([a weakProp]); // expected-warning{{weak property 'weakProp' is accessed multiple times}} 114 use([a weakProp]); // expected-warning{{weak property 'weakProp' is accessed multiple times}} [all …]
|
| /external/FXdiv/bench/ |
| D | round-down.cc | 6 const fxdiv_divisor_uint32_t multiple = fxdiv_init_uint32_t(UINT32_C(65537)); in fxdiv_round_down_uint32_t() local 9 const uint32_t rounded_x = fxdiv_round_down_uint32_t(x++, multiple); in fxdiv_round_down_uint32_t() 16 const fxdiv_divisor_uint64_t multiple = fxdiv_init_uint64_t(UINT64_C(4294967311)); in fxdiv_round_down_uint64_t() local 19 const uint64_t rounded_x = fxdiv_round_down_uint64_t(x++, multiple); in fxdiv_round_down_uint64_t() 26 uint32_t multiple = UINT32_C(65537); in native_round_down_uint32_t() local 27 benchmark::DoNotOptimize(&multiple); in native_round_down_uint32_t() 30 const uint32_t rounded_x = x++ / multiple * multiple; in native_round_down_uint32_t() 37 uint64_t multiple = UINT64_C(4294967311); in native_round_down_uint64_t() local 38 benchmark::DoNotOptimize(&multiple); in native_round_down_uint64_t() 41 const uint64_t rounded_x = x++ / multiple * multiple; in native_round_down_uint64_t()
|
| /external/libxml2/result/XPath/xptr/ |
| D | strpoint | 3 Expression: xpointer(start-point(string-range(//p,'multiple'))) 6 content=multiple tests 10 Expression: xpointer(end-point(string-range(//p,'multiple'))) 13 content=multiple tests 23 content=multiple tests 36 content=multiple tests 43 Expression: xpointer(start-point(string-range(//*,'multiple',1,0))) 46 content=multiple tests 50 Expression: xpointer(end-point(string-range(//*,'multiple',1,0))) 53 content=multiple tests [all …]
|
| /external/clang/test/SemaCXX/ |
| D | member-name-lookup.cpp | 38 …d.a; // expected-error{{non-static member 'a' found in multiple base-class subobjects of type 'A':… in test_lookup() 40 d.c; // expected-error{{member 'c' found in multiple base classes of different types}} in test_lookup() 41 d.d; // expected-error{{member 'd' found in multiple base classes of different types}} in test_lookup() 42 …d.f(0); // expected-error{{non-static member 'f' found in multiple base-class subobjects of type '… in test_lookup() 50 D::E3 e3; // expected-error{{multiple base classes}} in test_lookup() 54 a; // expected-error{{non-static member 'a' found in multiple base-class subobjects of type 'A':}} in test_lookup() 56 c; // expected-error{{member 'c' found in multiple base classes of different types}} in test_lookup() 57 d; // expected-error{{member 'd' found in multiple base classes of different types}} in test_lookup() 58 …f(0); // expected-error{{non-static member 'f' found in multiple base-class subobjects of type 'A'… in test_lookup() 66 E3 e3; // expected-error{{member 'E3' found in multiple base classes of different types}} in test_lookup() [all …]
|
| D | class-base-member-init.cpp | 12 b1(0), // expected-error {{multiple initializations given for non-static member 'b1'}} in D() 14 S() // expected-error {{multiple initializations given for base 'S'}} in D() 35 A<T>() { } // expected-error {{multiple initializations given for base 'A<T>'}} in B() 42 T() { } // expected-error {{multiple initializations given for base 'T'}} in A() 51 t(2) { } // expected-error {{multiple initializations given for non-static member 't'}} in A() 72 …A(short _) : a(0), c(0) {} // expected-error {{initializing multiple members of union}} expected-n… in A() 73 …A(int _) : d(0), e(0) {} // expected-error {{initializing multiple members of union}} expected-not… in A() 74 …A(long _) : a(0), d(0) {} // expected-error {{initializing multiple members of union}} expected-no… in A() 86 …decltype(Base(1))(2), // expected-error {{multiple initializations given for base 'decltype(test5:… in A() 97 a() { } // expected-error{{multiple initializations given for non-static member 'a'}} in X()
|
| D | warn-unsequenced.cpp | 20 a = a++; // expected-warning {{multiple unsequenced modifications to 'a'}} in test() 23 ++a + ++a; // expected-warning {{multiple unsequenced modifications to 'a'}} in test() 24 a++ + a++; // expected-warning {{multiple unsequenced modifications}} in test() 27 a = xs[a++]; // expected-warning {{multiple unsequenced modifications}} in test() 31 a = (a++, a++); // expected-warning {{multiple unsequenced modifications}} in test() 35 f(a = 0, a = 0); // expected-warning {{multiple unsequenced modifications}} in test() 38 a = f(++a, a++); // expected-warning {{multiple unsequenced modifications}} in test() 50 S str1(a++, a++); // expected-warning {{multiple unsequenced modifications}} in test() 104 xs[8] ? ++a + a++ : 0; // expected-warning {{multiple unsequenced modifications}} in test() 105 xs[8] ? 0 : ++a + a++; // expected-warning {{multiple unsequenced modifications}} in test() [all …]
|
| /external/google-breakpad/src/processor/ |
| D | basic_source_line_resolver_unittest.cc | 458 // FUNC [<multiple>] <address> <size> <stack_param_size> <name> 460 bool multiple; in TEST() local 467 ASSERT_TRUE(SymbolParseHelper::ParseFunction(kTestLine, &multiple, &address, in TEST() 470 EXPECT_FALSE(multiple); in TEST() 478 ASSERT_TRUE(SymbolParseHelper::ParseFunction(kTestLine1, &multiple, &address, in TEST() 481 EXPECT_FALSE(multiple); in TEST() 488 ASSERT_TRUE(SymbolParseHelper::ParseFunction(kTestLine2, &multiple, &address, in TEST() 491 EXPECT_FALSE(multiple); in TEST() 497 // Test optional multiple field. in TEST() 499 ASSERT_TRUE(SymbolParseHelper::ParseFunction(kTestLine3, &multiple, &address, in TEST() [all …]
|
| /external/igt-gpu-tools/runner/ |
| D | runner_tests.c | 75 int multiple; in job_list_filter_test() local 81 for (multiple = 0; multiple < 2; multiple++) { in job_list_filter_test() 82 igt_subtest_f("job-list-filters-%s-%s", name, multiple ? "multiple" : "normal") { in job_list_filter_test() 86 multiple ? "--multiple-mode" : "--sync", in job_list_filter_test() 106 igt_assert_eq(size, multiple ? expected_multiple : expected_normal); in job_list_filter_test() 397 "--multiple-mode", 666 int multiple; variable 677 for (multiple = 0; multiple < 2; multiple++) { 678 igt_subtest_f("job-list-testlist-%s", multiple ? "multiple" : "normal") { 681 multiple ? "--multiple-mode" : "--sync", [all …]
|
| /external/tcpdump/tests/ |
| D | sflow_multiple_counter_30_pdus.out | 12 align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 24 align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 36 align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 48 align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 60 align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 72 align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 84 align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 98 align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 110 align errors 0, fcs errors 2, single collision 0, multiple collision 0, test error 0 122 align errors 0, fcs errors 0, single collision 0, multiple collision 0, test error 0 [all …]
|
| /external/rust/crates/clap/src/ |
| D | usage_parser.rs | 14 Multiple, enumerator 54 b'.' => self.multiple(&mut arg), in parse() 173 fn multiple(&mut self, arg: &mut Arg) { in multiple() method 174 debugln!("UsageParser::multiple;"); in multiple() 182 debugln!("UsageParser::multiple: setting multiple"); in multiple() 183 arg.setb(ArgSettings::Multiple); in multiple() 191 self.prev = UsageToken::Multiple; in multiple() 245 assert!(!a.is_set(ArgSettings::Multiple)); in create_flag_usage() 254 assert!(!b.is_set(ArgSettings::Multiple)); in create_flag_usage() 263 assert!(!b.is_set(ArgSettings::Multiple)); in create_flag_usage() [all …]
|
| /external/clang/test/Lexer/ |
| D | header.cpp | 31 #include "Inputs/multiple.h" 32 #include "Inputs/multiple.h" 33 #include "Inputs/multiple.h" 34 #include "Inputs/multiple.h" 36 // CHECK: {{.*}}multiple.h:1:9: warning: 'multiple' is used as a header guard here, followed by #de… 37 // CHECK: {{^}}#ifndef multiple 39 // CHECK: {{.*}}multiple.h:2:9: note: 'multi' is defined here; did you mean 'multiple'? 42 // CHECK: {{^}} multiple
|
| /external/angle/extensions/ |
| D | ANGLE_texture_compression_dxt.txt | 45 such that the size must be a multiple of four (except for mip levels 99 * <width> is not one, two, or a multiple of four. 100 * <height> is not one, two, or a multiple of four. 112 * <width> is not a multiple of four or equal to TEXTURE_WIDTH. 114 * <xoffset> or <yoffset> is not a multiple of four. 128 - <width> is not one, two, or a multiple of four. 129 - <height> is not one, two, or a multiple of four. 142 - <width> is not a multiple of four or equal to TEXTURE_WIDTH; 143 - <height> is not a multiple of four or equal to TEXTURE_HEIGHT; 144 - <xoffset> or <yoffset> is not a multiple of four; [all …]
|
| D | ANGLE_lossy_etc_decode.txt | 46 dimensions must be a multiple of four (except for mip levels where the 115 * <width> is not one, two, nor a multiple of four. 116 * <height> is not one, two, nor a multiple of four. 128 * <width> is not a multiple of four nor equal to TEXTURE_WIDTH. 129 * <height> is not a multiple of four nor equal to TEXTURE_HEIGHT. 130 * <xoffset> or <yoffset> is not a multiple of four. 140 - <width> is not one, two, nor a multiple of four. 141 - <height> is not one, two, nor a multiple of four. 146 - <width> is not a multiple of four nor equal to TEXTURE_WIDTH; 147 - <height> is not a multiple of four nor equal to TEXTURE_HEIGHT; [all …]
|
| /external/rust/crates/ring/tests/ |
| D | rsa_from_pkcs8_tests.txt | 22 # or because the private modulus length isn't a multiple of 512 bits. 27 # because the private modulus length isn't a multiple of 512 bits. 33 # modulus length isn't a multiple of 512 bits. 39 # multiple of 512 bits. 44 # length isn't a multiple of 512 bits. 49 # length isn't a multiple of 512 bits. 54 # length isn't a multiple of 512 bits. 59 # length isn't a multiple of 512 bits and because the private primes aren't 65 # length isn't a multiple of 512 bits.
|
| /external/clang/test/Parser/ |
| D | cxx1z-constexpr-lambdas.cpp | 8 mutable //expected-error{{cannot appear multiple times}} 9 mutable { }; //expected-error{{cannot appear multiple times}} in __anon8363121f0102() 12 auto XL2 = [] () constexpr mutable constexpr { }; //expected-error{{cannot appear multiple times}} in __anon8363121f0202() 18 constexpr //expected-error{{cannot appear multiple times}} 19 mutable //expected-error{{cannot appear multiple times}} 20 mutable //expected-error{{cannot appear multiple times}} 21 constexpr //expected-error{{cannot appear multiple times}} 22 constexpr //expected-error{{cannot appear multiple times}}
|
| /external/armnn/src/armnnTfLiteParser/test/ |
| D | ParserFlatbuffersFixture.hpp | 136 /// This overload supports multiple inputs and multiple outputs, identified by name. 143 /// Multiple Inputs, Multiple Outputs w/ Variable Datatypes and different dimension sizes. 145 …/// This overload supports multiple inputs and multiple outputs, identified by name along with the… 156 /// Multiple Inputs, Multiple Outputs w/ Variable Datatypes and different dimension sizes. 158 …/// This overload supports multiple inputs and multiple outputs, identified by name along with the… 231 /// Multiple Inputs, Multiple Outputs 233 /// This overload supports multiple inputs and multiple outputs, identified by name. 243 /// Multiple Inputs, Multiple Outputs w/ Variable Datatypes 245 /// This overload supports multiple inputs and multiple outputs, identified by name along with the … 299 /// Multiple Inputs, Multiple Outputs w/ Variable Datatypes and different dimension sizes. [all …]
|
| /external/apache-commons-compress/src/test/java/org/apache/commons/compress/compressors/ |
| D | DetectCompressorTestCase.java | 63 final String fileName; // The multiple file name 76 new TestData("multiple.bz2", new char[]{'a','b'}, factoryTrue, true), 77 new TestData("multiple.bz2", new char[]{'a','b'}, factorySetTrue, true), 78 new TestData("multiple.bz2", new char[]{'a'}, factoryFalse, false), 79 new TestData("multiple.bz2", new char[]{'a'}, factorySetFalse, false), 80 new TestData("multiple.bz2", new char[]{'a'}, factory, false), 82 new TestData("multiple.gz", new char[]{'a','b'}, factoryTrue, true), 83 new TestData("multiple.gz", new char[]{'a','b'}, factorySetTrue, true), 84 new TestData("multiple.gz", new char[]{'a'}, factoryFalse, false), 85 new TestData("multiple.gz", new char[]{'a'}, factorySetFalse, false), [all …]
|
| /external/llvm/test/DebugInfo/PDB/DIA/ |
| D | pdbdump-flags.test | 4 …llvm-pdbdump pretty -types -compilands %p/../Inputs/empty.pdb | FileCheck %s -check-prefix=MULTIPLE 34 ; MULTIPLE: empty.pdb 35 ; MULTIPLE: Guid: {0B355641-86A0-A249-896F-9988FAE52FF0} 36 ; MULTIPLE: Attributes: HasPrivateSymbols 37 ; MULTIPLE: ---COMPILANDS--- 38 ; MULTIPLE: ---TYPES--- 39 ; MULTIPLE-NOT: ---GLOBALS--- 40 ; MULTIPLE-NOT: ---SYMBOLS---
|