Home
last modified time | relevance | path

Searched refs:a (Results 1 – 25 of 19669) sorted by relevance

12345678910>>...787

/external/guava/guava-tests/test/com/google/common/io/testdata/
Dsimplifypathnoprefixtests.txt4 aaaaaaaa.a aaaaaaaa.a
7 aaaaaaaa/a aaaaaaaa/a
11 aaaaaaa.a. aaaaaaa.a.
12 aaaaaaa.a/ aaaaaaa.a
13 aaaaaaa..a aaaaaaa..a
16 aaaaaaa./a aaaaaaa./a
20 aaaaaaa/a. aaaaaaa/a.
21 aaaaaaa/a/ aaaaaaa/a
22 aaaaaaa/.a aaaaaaa/.a
25 aaaaaaa//a aaaaaaa/a
[all …]
Dsimplifypathwithabsoluteprefixtests.txt4 /b/c/aaaaaaaa.a /b/c/aaaaaaaa.a
7 /b/c/aaaaaaaa/a /b/c/aaaaaaaa/a
11 /b/c/aaaaaaa.a. /b/c/aaaaaaa.a.
12 /b/c/aaaaaaa.a/ /b/c/aaaaaaa.a
13 /b/c/aaaaaaa..a /b/c/aaaaaaa..a
16 /b/c/aaaaaaa./a /b/c/aaaaaaa./a
20 /b/c/aaaaaaa/a. /b/c/aaaaaaa/a.
21 /b/c/aaaaaaa/a/ /b/c/aaaaaaa/a
22 /b/c/aaaaaaa/.a /b/c/aaaaaaa/.a
25 /b/c/aaaaaaa//a /b/c/aaaaaaa/a
[all …]
/external/guava/android/guava-tests/test/com/google/common/io/testdata/
Dsimplifypathnoprefixtests.txt4 aaaaaaaa.a aaaaaaaa.a
7 aaaaaaaa/a aaaaaaaa/a
11 aaaaaaa.a. aaaaaaa.a.
12 aaaaaaa.a/ aaaaaaa.a
13 aaaaaaa..a aaaaaaa..a
16 aaaaaaa./a aaaaaaa./a
20 aaaaaaa/a. aaaaaaa/a.
21 aaaaaaa/a/ aaaaaaa/a
22 aaaaaaa/.a aaaaaaa/.a
25 aaaaaaa//a aaaaaaa/a
[all …]
Dsimplifypathwithabsoluteprefixtests.txt4 /b/c/aaaaaaaa.a /b/c/aaaaaaaa.a
7 /b/c/aaaaaaaa/a /b/c/aaaaaaaa/a
11 /b/c/aaaaaaa.a. /b/c/aaaaaaa.a.
12 /b/c/aaaaaaa.a/ /b/c/aaaaaaa.a
13 /b/c/aaaaaaa..a /b/c/aaaaaaa..a
16 /b/c/aaaaaaa./a /b/c/aaaaaaa./a
20 /b/c/aaaaaaa/a. /b/c/aaaaaaa/a.
21 /b/c/aaaaaaa/a/ /b/c/aaaaaaa/a
22 /b/c/aaaaaaa/.a /b/c/aaaaaaa/.a
25 /b/c/aaaaaaa//a /b/c/aaaaaaa/a
[all …]
/external/llvm-project/llvm/test/Demangle/
Dms-nested-scopes.test148a@a@a@a@a@a@a@a@a@a@a@a@a@a@a@a@a@a@a@a@a@a@a@a@a@a@a@a@a@a@a@a@a@a@a@a@a@a@a@a@a@a@a@a@a@a@a@a@a@
149a::a::a::a::a::a::a::a::a::a::a::a::a::a::a::a::a::a::a::a::a::a::a::a::a::a::a::a::a::a::a::a::a:…
/external/mesa3d/src/compiler/nir/
Dnir_opt_algebraic.py37 a = 'a' variable
85 x = ('fsub', ('fmul', 2.0, ('ffract', ('fadd', ('fmul', 0.5 / pi, a), c))), 1.0)
94 (('imul', a, '#b(is_pos_power_of_two)'), ('ishl', a, ('find_lsb', b)), '!options->lower_bitops'),
95 …(('imul', a, '#b(is_neg_power_of_two)'), ('ineg', ('ishl', a, ('find_lsb', ('iabs', b)))), '!optio…
96 (('ishl', a, '#b'), ('imul', a, ('ishl', 1, b)), 'options->lower_bitops'),
98 (('unpack_64_2x32_split_x', ('imul_2x32_64(is_used_once)', a, b)), ('imul', a, b)),
99 (('unpack_64_2x32_split_x', ('umul_2x32_64(is_used_once)', a, b)), ('imul', a, b)),
100 …(('imul_2x32_64', a, b), ('pack_64_2x32_split', ('imul', a, b), ('imul_high', a, b)), 'options->lo…
101 …(('umul_2x32_64', a, b), ('pack_64_2x32_split', ('imul', a, b), ('umul_high', a, b)), 'options->lo…
102 (('udiv', a, 1), a),
[all …]
/external/llvm-project/clang/test/Sema/
Dtautological-constant-enum-compare.c10 enum A a; in main() local
17 if (a < 0U) // expected-warning {{comparison of unsigned enum expression < 0 is always false}} in main()
19 if (0U >= a) in main()
21 if (a > 0U) in main()
23 if (0U <= a) // expected-warning {{comparison of 0 <= unsigned enum expression is always true}} in main()
25 if (a <= 0U) in main()
27 if (0U > a) // expected-warning {{comparison of 0 > unsigned enum expression is always false}} in main()
29 if (a >= 0U) // expected-warning {{comparison of unsigned enum expression >= 0 is always true}} in main()
31 if (0U < a) in main()
34 if (a < 4294967295U) in main()
[all …]
Doutof-range-enum-constant-compare.c8 enum A a; in main() local
16 …if (a < 4294967296) // expected-warning {{comparison of constant 4294967296 with expression of typ… in main()
18 …if (4294967296 >= a) // expected-warning {{comparison of constant 4294967296 with expression of ty… in main()
20 …if (a > 4294967296) // expected-warning {{comparison of constant 4294967296 with expression of typ… in main()
22 …if (4294967296 <= a) // expected-warning {{comparison of constant 4294967296 with expression of ty… in main()
24 …if (a <= 4294967296) // expected-warning {{comparison of constant 4294967296 with expression of ty… in main()
26 …if (4294967296 > a) // expected-warning {{comparison of constant 4294967296 with expression of typ… in main()
28 …if (a >= 4294967296) // expected-warning {{comparison of constant 4294967296 with expression of ty… in main()
30 …if (4294967296 < a) // expected-warning {{comparison of constant 4294967296 with expression of typ… in main()
32 …if (a == 4294967296) // expected-warning {{comparison of constant 4294967296 with expression of ty… in main()
[all …]
Dwarn-unsequenced.c10 int a; in test() local
12 a + ++a; // expected-warning {{unsequenced modification and access to 'a'}} in test()
13 a = ++a; // expected-warning {{multiple unsequenced modifications to 'a'}} in test()
14 a + a++; // expected-warning {{unsequenced modification and access to 'a'}} in test()
15 a = a++; // expected-warning {{multiple unsequenced modifications to 'a'}} in test()
16 (a++, a++); // ok 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()
[all …]
Dbool-compare.c5 int a,b; in f() local
8 …if ((a > 2) > 1) {} // expected-warning {{comparison of constant 1 with boolean expression is alwa… in f()
10 if (a > b) {} // no warning in f()
11 if (a < b) {} // no warning in f()
12 if (a >= b) {} // no warning in f()
13 if (a <= b) {} // no warning in f()
14 if (a == b) {} // no warning in f()
15 if (a != b) {} // no warning in f()
17 if (a > 0) {} // no warning in f()
18 if (a > 1) {} // no warning in f()
[all …]
/external/toybox/tests/files/bc/
Darctan.txt2 a(.267)
3 a(1)
5 a(.267)
6 a(1)
8 a(.267)
9 a(1)
11 a(.267)
12 a(1)
14 a(.267)
15 a(1)
[all …]
/external/bc/tests/bc/scripts/
Datan.txt2 a(.267)
3 a(1)
5 a(.267)
6 a(1)
8 a(.267)
9 a(1)
11 a(.267)
12 a(1)
14 a(.267)
15 a(1)
[all …]
/external/clang/test/SemaCXX/
Dwarn-unsequenced.cpp14 int a; in test() local
16 ++a = 0; // ok in test()
17 a + ++a; // expected-warning {{unsequenced modification and access to 'a'}} in test()
18 a = ++a; // ok in test()
19 a + a++; // expected-warning {{unsequenced modification and access to 'a'}} in test()
20 a = a++; // expected-warning {{multiple unsequenced modifications to 'a'}} in test()
21 ++ ++a; // ok in test()
22 (a++, a++); // ok in test()
23 ++a + ++a; // expected-warning {{multiple unsequenced modifications to 'a'}} in test()
24 a++ + a++; // expected-warning {{multiple unsequenced modifications}} in test()
[all …]
/external/clang/test/Sema/
Dwarn-unsequenced.c10 int a; in test() local
12 a + ++a; // expected-warning {{unsequenced modification and access to 'a'}} in test()
13 a = ++a; // expected-warning {{multiple unsequenced modifications to 'a'}} in test()
14 a + a++; // expected-warning {{unsequenced modification and access to 'a'}} in test()
15 a = a++; // expected-warning {{multiple unsequenced modifications to 'a'}} in test()
16 (a++, a++); // ok 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()
[all …]
Dbool-compare.c5 int a,b; in f() local
8 …if ((a > 2) > 1) {} // expected-warning {{comparison of constant 1 with boolean expression is alwa… in f()
10 if (a > b) {} // no warning in f()
11 if (a < b) {} // no warning in f()
12 if (a >= b) {} // no warning in f()
13 if (a <= b) {} // no warning in f()
14 if (a == b) {} // no warning in f()
15 if (a != b) {} // no warning in f()
17 if (a > 0) {} // no warning in f()
18 if (a > 1) {} // no warning in f()
[all …]
/external/llvm-project/clang/test/CodeGen/
Daarch64-neon-misc.c13 uint8x8_t test_vceqz_s8(int8x8_t a) { in test_vceqz_s8() argument
14 return vceqz_s8(a); in test_vceqz_s8()
22 uint16x4_t test_vceqz_s16(int16x4_t a) { in test_vceqz_s16() argument
23 return vceqz_s16(a); in test_vceqz_s16()
31 uint32x2_t test_vceqz_s32(int32x2_t a) { in test_vceqz_s32() argument
32 return vceqz_s32(a); in test_vceqz_s32()
40 uint64x1_t test_vceqz_s64(int64x1_t a) { in test_vceqz_s64() argument
41 return vceqz_s64(a); in test_vceqz_s64()
49 uint64x1_t test_vceqz_u64(uint64x1_t a) { in test_vceqz_u64() argument
50 return vceqz_u64(a); in test_vceqz_u64()
[all …]
/external/clang/test/CodeGen/
Daarch64-neon-misc.c13 uint8x8_t test_vceqz_s8(int8x8_t a) { in test_vceqz_s8() argument
14 return vceqz_s8(a); in test_vceqz_s8()
23 uint16x4_t test_vceqz_s16(int16x4_t a) { in test_vceqz_s16() argument
24 return vceqz_s16(a); in test_vceqz_s16()
33 uint32x2_t test_vceqz_s32(int32x2_t a) { in test_vceqz_s32() argument
34 return vceqz_s32(a); in test_vceqz_s32()
43 uint64x1_t test_vceqz_s64(int64x1_t a) { in test_vceqz_s64() argument
44 return vceqz_s64(a); in test_vceqz_s64()
53 uint64x1_t test_vceqz_u64(uint64x1_t a) { in test_vceqz_u64() argument
54 return vceqz_u64(a); in test_vceqz_u64()
[all …]
Daarch64-neon-ldst-one.c12 uint8x16_t test_vld1q_dup_u8(uint8_t *a) { in test_vld1q_dup_u8() argument
13 return vld1q_dup_u8(a); in test_vld1q_dup_u8()
23 uint16x8_t test_vld1q_dup_u16(uint16_t *a) { in test_vld1q_dup_u16() argument
24 return vld1q_dup_u16(a); in test_vld1q_dup_u16()
34 uint32x4_t test_vld1q_dup_u32(uint32_t *a) { in test_vld1q_dup_u32() argument
35 return vld1q_dup_u32(a); in test_vld1q_dup_u32()
45 uint64x2_t test_vld1q_dup_u64(uint64_t *a) { in test_vld1q_dup_u64() argument
46 return vld1q_dup_u64(a); in test_vld1q_dup_u64()
54 int8x16_t test_vld1q_dup_s8(int8_t *a) { in test_vld1q_dup_s8() argument
55 return vld1q_dup_s8(a); in test_vld1q_dup_s8()
[all …]
/external/python/cpython3/Tools/scripts/
Dvar_access_benchmark.py77 a = A()
79 a.x; a.x; a.x; a.x; a.x
80 a.x; a.x; a.x; a.x; a.x
81 a.x; a.x; a.x; a.x; a.x
82 a.x; a.x; a.x; a.x; a.x
83 a.x; a.x; a.x; a.x; a.x
85 def read_instancevar(trials=trials, a=C(1)): argument
87 a.x; a.x; a.x; a.x; a.x
88 a.x; a.x; a.x; a.x; a.x
89 a.x; a.x; a.x; a.x; a.x
[all …]
/external/llvm-project/llvm/test/MC/AMDGPU/
Dmai.s46 v_mfma_f32_32x32x1f32 a[0:31], v0, v1, a[1:32]
49 v_mfma_f32_32x32x1f32 a[0:31], v0, v1, a[1:32] cbsz:3 abid:2 blgp:7
52 v_mfma_f32_32x32x1f32 a[0:31], v0, a1, a[1:32]
55 v_mfma_f32_32x32x1f32 a[0:31], v0, a1, a[1:32] cbsz:3 abid:2 blgp:7
58 v_mfma_f32_32x32x1f32 a[0:31], a0, v1, a[1:32]
61 v_mfma_f32_32x32x1f32 a[0:31], a0, v1, a[1:32] cbsz:3 abid:2 blgp:7
64 v_mfma_f32_32x32x1f32 a[0:31], a0, a1, a[1:32]
67 v_mfma_f32_32x32x1f32 a[0:31], a0, a1, a[1:32] cbsz:3 abid:2 blgp:7
70 v_mfma_f32_16x16x1f32 a[0:15], v0, v1, a[1:16]
73 v_mfma_f32_16x16x1f32 a[0:15], v0, v1, a[1:16] cbsz:3 abid:2 blgp:7
[all …]
/external/llvm-project/clang/test/CodeGen/arm-mve-intrinsics/
Dreinterpret.c19 float16x8_t test_vreinterpretq_f16_f32(float32x4_t a) in test_vreinterpretq_f16_f32() argument
22 return vreinterpretq_f16(a); in test_vreinterpretq_f16_f32()
24 return vreinterpretq_f16_f32(a); in test_vreinterpretq_f16_f32()
33 float16x8_t test_vreinterpretq_f16_s16(int16x8_t a) in test_vreinterpretq_f16_s16() argument
36 return vreinterpretq_f16(a); in test_vreinterpretq_f16_s16()
38 return vreinterpretq_f16_s16(a); in test_vreinterpretq_f16_s16()
52 float16x8_t test_vreinterpretq_f16_s32(int32x4_t a) in test_vreinterpretq_f16_s32() argument
55 return vreinterpretq_f16(a); in test_vreinterpretq_f16_s32()
57 return vreinterpretq_f16_s32(a); in test_vreinterpretq_f16_s32()
71 float16x8_t test_vreinterpretq_f16_s64(int64x2_t a) in test_vreinterpretq_f16_s64() argument
[all …]
/external/libcxx/test/std/algorithms/alg.sorting/alg.sort/is.sorted/
Dis_sorted_until.pass.cpp36 int a[] = {0}; in test() local
37 unsigned sa = sizeof(a) / sizeof(a[0]); in test()
38 assert(std::is_sorted_until(Iter(a), Iter(a)) == Iter(a)); in test()
39 assert(std::is_sorted_until(Iter(a), Iter(a+sa)) == Iter(a+sa)); in test()
43 int a[] = {0, 0}; in test() local
44 unsigned sa = sizeof(a) / sizeof(a[0]); in test()
45 assert(std::is_sorted_until(Iter(a), Iter(a+sa)) == Iter(a+sa)); in test()
48 int a[] = {0, 1}; in test() local
49 unsigned sa = sizeof(a) / sizeof(a[0]); in test()
50 assert(std::is_sorted_until(Iter(a), Iter(a+sa)) == Iter(a+sa)); in test()
[all …]
/external/llvm-project/libcxx/test/std/algorithms/alg.sorting/alg.sort/is.sorted/
Dis_sorted_until.pass.cpp36 int a[] = {0}; in test() local
37 unsigned sa = sizeof(a) / sizeof(a[0]); in test()
38 assert(std::is_sorted_until(Iter(a), Iter(a)) == Iter(a)); in test()
39 assert(std::is_sorted_until(Iter(a), Iter(a+sa)) == Iter(a+sa)); in test()
43 int a[] = {0, 0}; in test() local
44 unsigned sa = sizeof(a) / sizeof(a[0]); in test()
45 assert(std::is_sorted_until(Iter(a), Iter(a+sa)) == Iter(a+sa)); in test()
48 int a[] = {0, 1}; in test() local
49 unsigned sa = sizeof(a) / sizeof(a[0]); in test()
50 assert(std::is_sorted_until(Iter(a), Iter(a+sa)) == Iter(a+sa)); in test()
[all …]
/external/mesa3d/src/mesa/x86/
Dassyntax.h150 #define CHOICE(a,b,c) c argument
242 #define CHOICE(a,b,c) b argument
249 #define CHOICE(a,b,c) a argument
259 #define GLNAME(a) a argument
261 #define GLNAME(a) CONCAT(_,a) argument
334 #define ADDR(a) CHOICE(CONCAT($,a), $a, a) argument
335 #define CONST(a) CHOICE(CONCAT($,a), $a, a) argument
338 #define CONTENT(a) CHOICE(a, a, (a)) /* take contents of variable */ argument
339 #define REGIND(a) CHOICE((a), (a), (a)) /* Register a indirect */ argument
341 #define REGOFF(a, b) CHOICE(a(b), a(b), a(b)) argument
[all …]
/external/clang/test/Analysis/
Dadditive-folding-range-constraints.c13 void smallAdjustmentGT (unsigned a) { in smallAdjustmentGT() argument
14 if (a+2 > 1) in smallAdjustmentGT()
15 clang_analyzer_eval(a < UINT_MAX-1); // expected-warning{{TRUE}} in smallAdjustmentGT()
17 clang_analyzer_eval(a == UINT_MAX-1 || a == UINT_MAX); // expected-warning{{TRUE}} in smallAdjustmentGT()
20 void smallAdjustmentGE (unsigned a) { in smallAdjustmentGE() argument
21 if (a+2 >= 1) in smallAdjustmentGE()
22 clang_analyzer_eval(a < UINT_MAX-1 || a == UINT_MAX); // expected-warning{{TRUE}} in smallAdjustmentGE()
24 clang_analyzer_eval(a == UINT_MAX-1); // expected-warning{{TRUE}} in smallAdjustmentGE()
27 void smallAdjustmentLT (unsigned a) { in smallAdjustmentLT() argument
28 if (a+1 < 2) in smallAdjustmentLT()
[all …]

12345678910>>...787