HomeSort by relevance Sort by last modified time
    Searched refs:s_b (Results 1 - 5 of 5) sorted by null

  /frameworks/compile/libbcc/runtime/lib/
divdi3.c 26 di_int s_b = b >> bits_in_dword_m1; /* s_b = b < 0 ? -1 : 0 */ local
28 b = (b ^ s_b) - s_b; /* negate if s_b == -1 */
29 s_a ^= s_b; /*sign of quotient */
divsi3.c 26 si_int s_b = b >> bits_in_word_m1; /* s_b = b < 0 ? -1 : 0 */ local
28 b = (b ^ s_b) - s_b; /* negate if s_b == -1 */
29 s_a ^= s_b; /* sign of quotient */
divti3.c 28 ti_int s_b = b >> bits_in_tword_m1; /* s_b = b < 0 ? -1 : 0 */ local
30 b = (b ^ s_b) - s_b; /* negate if s_b == -1 */
31 s_a ^= s_b; /* sign of quotient */
  /external/valgrind/main/drd/tests/
annotate_ignore_rw.c 10 static int s_b; variable
15 /* Read s_a and modify s_b. */
16 s_b = s_a;
45 /* Read s_b and modify s_a. */
46 s_a = s_b;
annotate_ignore_write.c 10 static int s_b; variable
15 /* Read s_a and modify s_b. */
16 s_b = s_a;
44 /* Read s_b and modify s_a. */
45 s_a = s_b;

Completed in 3298 milliseconds