Home
last modified time | relevance | path

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

12345678910>>...527

/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/mesa3d/src/compiler/nir/
Dnir_opt_algebraic.py30 a = 'a' variable
67 (('imul', a, '#b@32(is_pos_power_of_two)'), ('ishl', a, ('find_lsb', b))),
68 (('imul', a, '#b@32(is_neg_power_of_two)'), ('ineg', ('ishl', a, ('find_lsb', ('iabs', b))))),
69 (('udiv', a, 1), a),
70 (('idiv', a, 1), a),
71 (('umod', a, 1), 0),
72 (('imod', a, 1), 0),
73 (('udiv', a, '#b@32(is_pos_power_of_two)'), ('ushr', a, ('find_lsb', b))),
74 …(('idiv', a, '#b@32(is_pos_power_of_two)'), ('imul', ('isign', a), ('ushr', ('iabs', a), ('find_ls…
75 …(('idiv', a, '#b@32(is_neg_power_of_two)'), ('ineg', ('imul', ('isign', a), ('ushr', ('iabs', a), …
[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 …]
Dbool-compare.cpp6 bool a,b; in f() local
24 if (a > b) {} // no warning in f()
25 if (a < b) {} // no warning in f()
26 if (a >= b) {} // no warning in f()
27 if (a <= b) {} // no warning in f()
28 if (a == b) {} // no warning in f()
29 if (a != b) {} // no warning in f()
31 if (a > 0) {} // no warning in f()
32 …if (a > 1) {} // expected-warning {{comparison of constant 1 with expression of type 'bool' is alw… in f()
33 …if (a > 2) {} // expected-warning {{comparison of constant 2 with expression of type 'bool' is alw… in f()
[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/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 …]
Darm_neon_intrinsics.c13 int8x8_t test_vaba_s8(int8x8_t a, int8x8_t b, int8x8_t c) { in test_vaba_s8() argument
14 return vaba_s8(a, b, c); in test_vaba_s8()
27 int16x4_t test_vaba_s16(int16x4_t a, int16x4_t b, int16x4_t c) { in test_vaba_s16() argument
28 return vaba_s16(a, b, c); in test_vaba_s16()
41 int32x2_t test_vaba_s32(int32x2_t a, int32x2_t b, int32x2_t c) { in test_vaba_s32() argument
42 return vaba_s32(a, b, c); in test_vaba_s32()
49 uint8x8_t test_vaba_u8(uint8x8_t a, uint8x8_t b, uint8x8_t c) { in test_vaba_u8() argument
50 return vaba_u8(a, b, c); in test_vaba_u8()
63 uint16x4_t test_vaba_u16(uint16x4_t a, uint16x4_t b, uint16x4_t c) { in test_vaba_u16() argument
64 return vaba_u16(a, b, c); in test_vaba_u16()
[all …]
Dcomplex-math.c8 float _Complex add_float_rr(float a, float b) { in add_float_rr() argument
13 return a + b; in add_float_rr()
15 float _Complex add_float_cr(float _Complex a, float b) { in add_float_cr() argument
20 return a + b; in add_float_cr()
22 float _Complex add_float_rc(float a, float _Complex b) { in add_float_rc() argument
27 return a + b; in add_float_rc()
29 float _Complex add_float_cc(float _Complex a, float _Complex b) { in add_float_cc() argument
35 return a + b; in add_float_cc()
38 float _Complex sub_float_rr(float a, float b) { in sub_float_rr() argument
43 return a - b; in sub_float_rr()
[all …]
Daarch64-neon-intrinsics.c1467 uint64x1_t test_vcage_f64(float64x1_t a, float64x1_t b) { in test_vcage_f64() argument
1468 return vcage_f64(a, b); in test_vcage_f64()
1511 uint64x1_t test_vcagt_f64(float64x1_t a, float64x1_t b) { in test_vcagt_f64() argument
1512 return vcagt_f64(a, b); in test_vcagt_f64()
1556 uint64x1_t test_vcale_f64(float64x1_t a, float64x1_t b) { in test_vcale_f64() argument
1557 return vcale_f64(a, b); in test_vcale_f64()
1603 uint64x1_t test_vcalt_f64(float64x1_t a, float64x1_t b) { in test_vcalt_f64() argument
1604 return vcalt_f64(a, b); in test_vcalt_f64()
1850 uint64x1_t test_vtst_s64(int64x1_t a, int64x1_t b) { in test_vtst_s64() argument
1851 return vtst_s64(a, b); in test_vtst_s64()
[all …]
/external/libcxx/test/std/algorithms/alg.sorting/alg.sort/is.sorted/
Dis_sorted_until.pass.cpp27 int a[] = {0}; in test() local
28 unsigned sa = sizeof(a) / sizeof(a[0]); in test()
29 assert(std::is_sorted_until(Iter(a), Iter(a)) == Iter(a)); in test()
30 assert(std::is_sorted_until(Iter(a), Iter(a+sa)) == Iter(a+sa)); in test()
34 int a[] = {0, 0}; in test() local
35 unsigned sa = sizeof(a) / sizeof(a[0]); in test()
36 assert(std::is_sorted_until(Iter(a), Iter(a+sa)) == Iter(a+sa)); in test()
39 int a[] = {0, 1}; in test() local
40 unsigned sa = sizeof(a) / sizeof(a[0]); in test()
41 assert(std::is_sorted_until(Iter(a), Iter(a+sa)) == Iter(a+sa)); in test()
[all …]
Dis_sorted.pass.cpp27 int a[] = {0}; in test() local
28 unsigned sa = sizeof(a) / sizeof(a[0]); in test()
29 assert(std::is_sorted(Iter(a), Iter(a))); in test()
30 assert(std::is_sorted(Iter(a), Iter(a+sa))); in test()
34 int a[] = {0, 0}; in test() local
35 unsigned sa = sizeof(a) / sizeof(a[0]); in test()
36 assert(std::is_sorted(Iter(a), Iter(a+sa))); in test()
39 int a[] = {0, 1}; in test() local
40 unsigned sa = sizeof(a) / sizeof(a[0]); in test()
41 assert(std::is_sorted(Iter(a), Iter(a+sa))); in test()
[all …]
Dis_sorted_until_comp.pass.cpp28 int a[] = {0}; in test() local
29 unsigned sa = sizeof(a) / sizeof(a[0]); in test()
30 assert(std::is_sorted_until(Iter(a), Iter(a), std::greater<int>()) == Iter(a)); in test()
31 assert(std::is_sorted_until(Iter(a), Iter(a+sa), std::greater<int>()) == Iter(a+sa)); in test()
35 int a[] = {0, 0}; in test() local
36 unsigned sa = sizeof(a) / sizeof(a[0]); in test()
37 assert(std::is_sorted_until(Iter(a), Iter(a+sa), std::greater<int>()) == Iter(a+sa)); in test()
40 int a[] = {0, 1}; in test() local
41 unsigned sa = sizeof(a) / sizeof(a[0]); in test()
42 assert(std::is_sorted_until(Iter(a), Iter(a+sa), std::greater<int>()) == Iter(a+1)); in test()
[all …]
Dis_sorted_comp.pass.cpp28 int a[] = {0}; in test() local
29 unsigned sa = sizeof(a) / sizeof(a[0]); in test()
30 assert(std::is_sorted(Iter(a), Iter(a))); in test()
31 assert(std::is_sorted(Iter(a), Iter(a+sa), std::greater<int>())); in test()
35 int a[] = {0, 0}; in test() local
36 unsigned sa = sizeof(a) / sizeof(a[0]); in test()
37 assert(std::is_sorted(Iter(a), Iter(a+sa), std::greater<int>())); in test()
40 int a[] = {0, 1}; in test() local
41 unsigned sa = sizeof(a) / sizeof(a[0]); in test()
42 assert(!std::is_sorted(Iter(a), Iter(a+sa), std::greater<int>())); 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 …]
/external/libxml2/test/expr/
Dbase1 =>a
2 1 a
3 1 a | a
5 =>a|b
6 1 a
8 1 a | b
9 0 a{0}
11 =>a | b | a
12 1 a
14 1 a | b
[all …]
/external/clang/test/OpenMP/
Datomic_messages.cpp27 int a; member
29 a = v; in operator =()
33 a += s.a; in operator +=()
40 T a = T(), b = T(); in read() local
53 a += b; in read()
57 a = 0; in read()
61 a = b; in read()
66 a = b; in read()
68 return a; in read()
72 int a = 0, b = 0; in read() local
[all …]
/external/webrtc/webrtc/modules/audio_processing/aec/
Daec_rdft_mips.c14 static void bitrv2_128_mips(float* a) { in bitrv2_128_mips() argument
18 xr = a[8]; in bitrv2_128_mips()
19 xi = a[9]; in bitrv2_128_mips()
20 yr = a[16]; in bitrv2_128_mips()
21 yi = a[17]; in bitrv2_128_mips()
22 a[8] = yr; in bitrv2_128_mips()
23 a[9] = yi; in bitrv2_128_mips()
24 a[16] = xr; in bitrv2_128_mips()
25 a[17] = xi; in bitrv2_128_mips()
27 xr = a[64]; in bitrv2_128_mips()
[all …]
/external/safe-iop/src/
Dsafe_iop.c56 _type a = va_arg(ap, _type), value = *((_type *) result); \
58 value = a; \
59 a = va_arg(ap, _type); \
62 if (! _func( (_type *) result, value, a)) \
183 int8_t a, b; in T_add_s8() local
184 a=SCHAR_MIN; b=-1; EXPECT_FALSE(safe_add(NULL, a, b)); in T_add_s8()
185 a=SCHAR_MAX; b=1; EXPECT_FALSE(safe_add(NULL, a, b)); in T_add_s8()
186 a=10; b=11; EXPECT_TRUE(safe_add(NULL, a, b)); in T_add_s8()
187 a=-10; b=-11; EXPECT_TRUE(safe_add(NULL, a, b)); in T_add_s8()
188 a=SCHAR_MIN; b=SCHAR_MAX; EXPECT_TRUE(safe_add(NULL, a, b)); in T_add_s8()
[all …]
/external/python/cpython2/Tools/pybench/
DConstructs.py11 a,b,c = 1,2,3
14 if a == 1:
23 a = 2
24 elif a == 2:
25 a = 3
27 a = 1
29 if a == 1:
38 a = 2
39 elif a == 2:
40 a = 3
[all …]
/external/libcups/cups/
Darray.c69 static int cups_array_add(cups_array_t *a, void *e, int insert);
70 static int cups_array_find(cups_array_t *a, void *e, int prev, int *rdiff);
84 cupsArrayAdd(cups_array_t *a, /* I - Array */ in cupsArrayAdd() argument
87 DEBUG_printf(("2cupsArrayAdd(a=%p, e=%p)", (void *)a, e)); in cupsArrayAdd()
93 if (!a || !e) in cupsArrayAdd()
103 return (cups_array_add(a, e, 0)); in cupsArrayAdd()
116 _cupsArrayAddStrings(cups_array_t *a, /* I - Array */ in _cupsArrayAddStrings() argument
126 DEBUG_printf(("_cupsArrayAddStrings(a=%p, s=\"%s\", delim='%c')", (void *)a, s, delim)); in _cupsArrayAddStrings()
128 if (!a || !s || !*s) in _cupsArrayAddStrings()
158 if (!cupsArrayFind(a, (void *)s)) in _cupsArrayAddStrings()
[all …]
/external/svox/pico/lib/
Dpicofftsg.c376 static void cftfsub(picoos_int32 n, PICOFFTSG_FFTTYPE *a);
377 static void cftbsub(picoos_int32 n, PICOFFTSG_FFTTYPE *a);
378 static void rftfsub(picoos_int32 n, PICOFFTSG_FFTTYPE *a);
379 static void rftbsub(picoos_int32 n, PICOFFTSG_FFTTYPE *a);
381 static void cftfsub(picoos_int32 n, PICOFFTSG_FFTTYPE *a);
382 static void cftbsub(picoos_int32 n, PICOFFTSG_FFTTYPE *a);
383 static void rftfsub(picoos_int32 n, PICOFFTSG_FFTTYPE *a);
384 static void rftbsub(picoos_int32 n, PICOFFTSG_FFTTYPE *a);
385 static void dctsub(picoos_int32 n, PICOFFTSG_FFTTYPE *a);
386 static void dctsub4(picoos_int32 n, PICOFFTSG_FFTTYPE *a);
[all …]

12345678910>>...527