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

/barrelfish-master/lib/compiler-rt/builtins/
H A Ddivsi3.c20 si_int s_b = b >> bits_in_word_m1; // s_b = b < 0 ? -1 : 0 local
22 b = (b ^ s_b) - s_b; // negate if s_b == -1
23 s_a ^= s_b; // sign of quotient
H A Ddivdi3.c20 di_int s_b = b >> bits_in_dword_m1; // s_b = b < 0 ? -1 : 0 local
22 b = (b ^ s_b) - s_b; // negate if s_b == -1
23 s_a ^= s_b; // sign of quotient
H A Ddivti3.c22 ti_int s_b = b >> bits_in_tword_m1; // s_b = b < 0 ? -1 : 0 local
24 b = (b ^ s_b) - s_b; // negate if s_b == -1
25 s_a ^= s_b; // sign of quotient

Completed in 29 milliseconds