Searched defs:s_a (Results 1 - 5 of 5) sorted by relevance

/external/compiler-rt/lib/
H A Ddivsi3.c27 si_int s_a = a >> bits_in_word_m1; /* s_a = a < 0 ? -1 : 0 */ local
29 a = (a ^ s_a) - s_a; /* negate if s_a == -1 */
31 s_a ^= s_b; /* sign of quotient */
38 return ((su_int)a/(su_int)b ^ s_a) - s_a; /* negate if s_a == -1 */
H A Ddivdi3.c25 di_int s_a = a >> bits_in_dword_m1; /* s_a = a < 0 ? -1 : 0 */ local
27 a = (a ^ s_a) - s_a; /* negate if s_a == -1 */
29 s_a ^= s_b; /*sign of quotient */
30 return (__udivmoddi4(a, b, (du_int*)0) ^ s_a) - s_a; /* negate if s_a == -1 */
H A Ddivti3.c27 ti_int s_a = a >> bits_in_tword_m1; /* s_a = a < 0 ? -1 : 0 */ local
29 a = (a ^ s_a) - s_a; /* negate if s_a == -1 */
31 s_a ^= s_b; /* sign of quotient */
32 return (__udivmodti4(a, b, (tu_int*)0) ^ s_a) - s_a; /* negate if s_a == -1 */
/external/valgrind/main/drd/tests/
H A Dannotate_ignore_rw.c10 static int8_t s_a; variable
16 /* Read s_a and modify s_b. */
17 s_b = s_a;
49 /* Read s_b and modify s_a. */
50 s_a = s_b;
H A Dannotate_ignore_write.c10 static int8_t s_a; variable
16 /* Read s_a and modify s_b. */
17 s_b = s_a;
50 /* Read s_b and modify s_a. */
51 s_a = s_b;
61 /* Read s_c and modify s_a. */
62 s_a = s_c;

Completed in 85 milliseconds