Searched refs:s_b (Results 1 - 7 of 7) sorted by relevance

/external/compiler-rt/lib/builtins/
H A Ddivdi3.c24 di_int s_b = b >> bits_in_dword_m1; /* s_b = b < 0 ? -1 : 0 */ local
26 b = (b ^ s_b) - s_b; /* negate if s_b == -1 */
27 s_a ^= s_b; /*sign of quotient */
H A Ddivsi3.c26 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 */
H A Ddivti3.c26 ti_int s_b = b >> bits_in_tword_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 */
/external/lldb/test/lang/cpp/static_members/
H A Dmain.cpp15 static long s_b; member in struct:A
20 return m_a + s_b + m_c + s_d; // breakpoint 2
24 long A::s_b = 2; member in class:A
/external/valgrind/main/drd/tests/
H A Dannotate_ignore_rw.c11 static int8_t s_b; 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.c11 static int8_t s_b; 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;
/external/llvm/test/MC/COFF/
H A Dsection.s31 .section s_b,"b"; .long 1
68 // CHECK: Name: s_b

Completed in 159 milliseconds