Home
last modified time | relevance | path

Searched refs:four (Results 1 – 25 of 1094) sorted by relevance

12345678910>>...44

/external/llvm-project/mlir/test/Dialect/GPU/
Dmapping.mlir7 %four = constant 4 : index
9 step (%four, %four) {
10 scf.parallel (%si0, %si1) = (%zero, %zero) to (%four, %four)
33 %four = constant 4 : index
35 step (%four, %four, %four, %four) {
36 …cf.parallel (%si0, %si1, %si2, %si3) = (%zero, %zero, %zero, %zero) to (%four, %four, %four, %four)
38 …cf.parallel (%ti0, %ti1, %ti2, %ti3) = (%zero, %zero, %zero, %zero) to (%four, %four, %four, %four)
/external/auto/factory/src/it/functional/src/test/java/com/google/auto/factory/
DDependencyInjectionIntegrationTest.java49 GenericFoo<Number, ArrayList<Double>, Long, DepE> four = genericFooFactory.create( in daggerInjectedGenericFactory() local
58 assertThat(four.getDepA()).isEqualTo(3); in daggerInjectedGenericFactory()
59 ArrayList<Double> unusedDoubleList = four.getDepB(); in daggerInjectedGenericFactory()
60 assertThat(four.getDepB()).isInstanceOf(ArrayList.class); in daggerInjectedGenericFactory()
61 assertThat(four.getDepB()).containsExactly(4.0); in daggerInjectedGenericFactory()
62 assertThat(four.getDepDIntAccessor()).isEqualTo(INT_AND_STRING_ACCESSOR); in daggerInjectedGenericFactory()
63 assertThat(four.getDepDStringAccessor()).isEqualTo(INT_AND_STRING_ACCESSOR); in daggerInjectedGenericFactory()
64 assertThat(four.passThrough(5L)).isEqualTo(5L); in daggerInjectedGenericFactory()
65 assertThat(four.getDepE()).isEqualTo(DepE.VALUE_2); in daggerInjectedGenericFactory()
106 GenericFoo<Number, ArrayList<Double>, Long, DepE> four = genericFooFactory.create( in guiceInjectedGenericFactory() local
[all …]
/external/icu/icu4c/source/data/lang/
Den_XA.txt10 colCaseFirst{"[Ûþþéŕçåšé⁄Ļöŵéŕçåšé Öŕðéŕîñĝ one two three four]"}
19 dx{"[Ðîçţîöñåŕý Ɓŕéåķ Éẋçļûšîöñš one two three four]"}
28 lw{"[Ļîñé Ɓŕéåķš Îñ Ŵöŕðš Šéţţîñĝ one two three four]"}
32 rg{"[Ŕéĝîöñ Ƒöŕ Šûþþļéɱéñţåļ Ðåţå one two three four]"}
35 ss{"[Šéñţéñçé Ɓŕéåķ Šûþþŕéššîöñš Ţýþé one two three four]"}
489 qug{"[Çĥîɱƀöŕåžö Ĥîĝĥļåñð Ǫûîçĥûå one two three four]"}
656 zgh{"[Šţåñðåŕð Ṁöŕöççåñ Ţåɱåžîĝĥţ one two three four]"}
667 zh_Hans{"[Šîɱþļîƒîéð Ṁåñðåŕîñ Çĥîñéšé one two three four]"}
668 zh_Hant{"[Ţŕåðîţîöñåļ Ṁåñðåŕîñ Çĥîñéšé one two three four]"}
711 Cans{"[Ûñîƒîéð Çåñåðîåñ Åƀöŕîĝîñåļ Šýļļåƀîçš one two three four five]"}
[all …]
/external/icu/icu4c/source/data/zone/
Den_XA.txt178 ld{"[Ŵéšţéŕñ Åŕĝéñţîñå Šûɱɱéŕ Ţîɱé one two three four]"}
180 ls{"[Ŵéšţéŕñ Åŕĝéñţîñå Šţåñðåŕð Ţîɱé one two three four]"}
196 ld{"[Åûšţŕåļîåñ Çéñţŕåļ Ðåýļîĝĥţ Ţîɱé one two three four]"}
198 ls{"[Åûšţŕåļîåñ Çéñţŕåļ Šţåñðåŕð Ţîɱé one two three four]"}
201 ld{"[Åûšţŕåļîåñ Çéñţŕåļ Ŵéšţéŕñ Ðåýļîĝĥţ Ţîɱé one two three four five]"}
202 lg{"[Åûšţŕåļîåñ Çéñţŕåļ Ŵéšţéŕñ Ţîɱé one two three four]"}
203 ls{"[Åûšţŕåļîåñ Çéñţŕåļ Ŵéšţéŕñ Šţåñðåŕð Ţîɱé one two three four five]"}
206 ld{"[Åûšţŕåļîåñ Éåšţéŕñ Ðåýļîĝĥţ Ţîɱé one two three four]"}
208 ls{"[Åûšţŕåļîåñ Éåšţéŕñ Šţåñðåŕð Ţîɱé one two three four]"}
211 ld{"[Åûšţŕåļîåñ Ŵéšţéŕñ Ðåýļîĝĥţ Ţîɱé one two three four]"}
[all …]
/external/llvm-project/libcxx/test/std/numerics/numeric.ops/numeric.ops.midpoint/
Dmidpoint.integer.pass.cpp29 constexpr T four{4}; in signed_test() local
43 assert(std::midpoint(one, four) == two); in signed_test()
44 assert(std::midpoint(four, one) == three); in signed_test()
45 assert(std::midpoint(three, four) == three); in signed_test()
46 assert(std::midpoint(four, three) == four); in signed_test()
78 constexpr T four{4}; in unsigned_test() local
93 assert(std::midpoint(one, four) == two); in unsigned_test()
94 assert(std::midpoint(four, one) == three); in unsigned_test()
95 assert(std::midpoint(three, four) == three); in unsigned_test()
96 assert(std::midpoint(four, three) == four); in unsigned_test()
/external/llvm-project/lldb/test/Shell/SymbolFile/NativePDB/
Dfunction-types-classes.cpp43 R four(A a, B b, C c) { return MakeResult<R>::result(); } in four() function
80 auto a = &four<S, C*, U&, E&&>;
82 auto b = &four<E, const S*, const C&, const U&&>;
84 auto c = &four<U, volatile E*, volatile S&, volatile C&&>;
86 auto d = &four<C, const volatile U*, const volatile E&, const volatile S&&>;
99 auto h = &four<TC<void>, TC<int>, TC<TC<int>>, TC<A::B::S>>;
/external/icu/icu4c/source/test/intltest/
Dlistformattertest.cpp115 three("Charlie", -1, US_INV), four("Delta", -1, US_INV) { in ListFormatterTest()
130 UnicodeString three, UnicodeString four, UnicodeString results[4], const char* testName) { in CheckFourCases() argument
146 UnicodeString input4[] = {one, two, three, four}; in CheckFourCases()
151 UnicodeString three, UnicodeString four, UnicodeString results[4], const char* testName) { in RecordFourCases() argument
164 UnicodeString input4[] = {one, two, three, four}; in RecordFourCases()
178 one + ", " + two + ", " + three + ", " + four in TestRoot()
181 CheckFourCases("", one, two, three, four, results, "TestRoot()"); in TestRoot()
187 if (RecordFourCases(Locale::getDefault(), one, two, three, four, results, "TestBogus()")) { in TestBogus()
188 CheckFourCases("ex_PY", one, two, three, four, results, "TestBogus()"); in TestBogus()
199 one + ", " + two + ", " + three + ", and " + four in TestEnglish()
[all …]
/external/llvm-project/llvm/test/Instrumentation/HWAddressSanitizer/
Dglobals.ll4 ; CHECK29: @four = global
13 ; CHECK30: @four.hwasan = private global { i32, [12 x i8] } { i32 1, [12 x i8] c"\00\00\00\00\00\00…
14four.hwasan.descriptor = private constant { i32, i32 } { i32 trunc (i64 sub (i64 ptrtoint ({ i32, …
23 ; CHECK30: @four = alias i32, inttoptr (i64 add (i64 ptrtoint ({ i32, [12 x i8] }* @four.hwasan to …
28 ; CHECK30: [[FOUR]] = !{{{{}} i32, [12 x i8] }* @four.hwasan}
34 @four = global i32 1
/external/rust/crates/proc-macro-error/tests/ui/
Demit.stderr4 4 | emit!(one, two, three, four, five);
10 4 | emit!(one, two, three, four, five);
16 4 | emit!(one, two, three, four, five);
22 4 | emit!(one, two, three, four, five);
28 4 | emit!(one, two, three, four, five);
Dchildren_messages.stderr4 4 | children_messages!(one, two, three, four);
10 4 | children_messages!(one, two, three, four);
16 4 | children_messages!(one, two, three, four);
22 4 | children_messages!(one, two, three, four);
/external/angle/extensions/
DANGLE_lossy_etc_decode.txt46 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 …]
DANGLE_texture_compression_dxt.txt45 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.
113 * <height> is not a multipls of four or equal to TEXTURE_HEIGHT.
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;
[all …]
/external/llvm-project/clang/test/Parser/
Dpragma-fenv_access.c25 CONST float four = 4.0F ; in main() local
26 CONST float frac_ok = one/four; in main()
43 e1 = (int)one, e3 = (int)three, e4 = (int)four, e_four_quarters = (int)(frac_ok * 4) in main()
52 if (one <= four) return 0; in main()
/external/fonttools/Tests/feaLib/data/
Dfeature_aalt.fea16 sub one slash four by onequarter;
18 sub three slash four by threequarters;
22 sub [zero one two three four five six seven eight nine] [A a]' by ordfeminine;
23 sub [zero one two three four five six seven eight nine] [O o]' by ordmasculine;
DGPOS_1.fea12 pos four 400;
13 pos four.oldstyle 401;
28 pos four 400;
29 pos four <0 0 400 0>;
/external/llvm-project/lldb/test/API/lang/c/bitfields/
DTestBitfields.py237 four = bits.GetChildMemberWithName("four")
238 self.DebugSBValue(four)
239 self.assertTrue(four.GetName() == "four" and
240 four.GetTypeName() == "uint32_t:4" and
241 four.IsInScope() and
242 int(four.GetValue(), 0) == 15,
/external/llvm-project/llvm/test/tools/llvm-strings/
Dradix-filename.test6 RUN: echo four >> %t
24 CHECK-NONE: [[FILE]]: four
31 CHECK-DEC: [[FILE]]: 14 four
38 CHECK-OCT: [[FILE]]: 16 four
45 CHECK-HEX: [[FILE]]: e four
Dradix.test8 four
32 CHECK-NONE: {{^}}four
39 CHECK-DEC: {{^}} 14 four
46 CHECK-OCT: {{^}} 16 four
53 CHECK-HEX: {{^}} e four
/external/llvm-project/llvm/test/Transforms/ADCE/
D2017-08-21-DomTree-deletions.ll11 i32 4, label %four
13 four: ; preds = %switch
21 exit: ; preds = %default, %two, %five, %four
/external/caliper/examples/src/main/java/examples/
DVarargsBenchmark.java46 @Override long four(long a, long b, long c, long d) { in four() method
70 @Override long four(long a, long b, long c, long d) { in four() method
71 return VarargsBenchmark.four(a, b, c, d); in four()
89 abstract long four(long a, long b, long c, long d); in four() method in VarargsBenchmark.Strategy
116 private static long four(long a, long b, long c, long d) { in four() method in VarargsBenchmark
197 dummy += strategy.four( in fourArguments()
/external/linux-kselftest/tools/testing/selftests/bpf/
Dtest_sockmap_kern.h177 int *bytes, zero = 0, one = 1, two = 2, three = 3, four = 4, five = 5; in bpf_prog4() local
194 start_pop = bpf_map_lookup_elem(&sock_bytes, &four); in bpf_prog4()
204 int zero = 0, one = 1, two = 2, three = 3, four = 4, five = 5; in bpf_prog5() local
247 start_pop = bpf_map_lookup_elem(&sock_bytes, &four); in bpf_prog5()
270 int zero = 0, one = 1, two = 2, three = 3, four = 4, five = 5, key = 0; in bpf_prog6() local
291 start_pop = bpf_map_lookup_elem(&sock_bytes, &four); in bpf_prog6()
312 int zero = 0, one = 1, two = 2, three = 3, four = 4, five = 5; in bpf_prog7() local
355 start_pop = bpf_map_lookup_elem(&sock_bytes, &four); in bpf_prog7()
426 int zero = 0, one = 1, two = 2, three = 3, four = 4, five = 5; in bpf_prog10() local
442 start_pop = bpf_map_lookup_elem(&sock_bytes, &four); in bpf_prog10()
/external/llvm/test/CodeGen/SystemZ/
Dargs-08.ll5 ; Up to four integer return values fit into GPRs.
18 ; More than four integer return values use sret.
32 ; Up to four floating-point return values fit into GPRs.
45 ; More than four integer return values use sret.
Dargs-07.ll5 ; Up to four integer return values fit into GPRs.
16 ; More than four integer return values use sret.
28 ; Up to four floating-point return values fit into FPRs.
44 ; More than four floating-point return values use sret.
/external/llvm-project/llvm/test/CodeGen/SystemZ/
Dargs-08.ll5 ; Up to four integer return values fit into GPRs.
18 ; More than four integer return values use sret.
32 ; Up to four floating-point return values fit into GPRs.
45 ; More than four integer return values use sret.
/external/llvm-project/mlir/test/Conversion/SCFToGPU/
Dparallel_loop.mlir49 %four = constant 4 : index
51 step (%four, %four) {
52 scf.parallel (%si0, %si1) = (%zero, %zero) to (%four, %four)
149 %four = constant 4 : index
151 step (%four, %four) {
152 scf.parallel (%si0, %si1) = (%zero, %zero) to (%four, %four)
326 %four = constant 4 : index
328 step (%four, %four) {
349 %four = constant 4 : index
351 step (%four, %four) {
[all …]

12345678910>>...44