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

/barrelfish-master/lib/compiler-rt/builtins/
H A Ddivsi3.c19 si_int s_a = a >> bits_in_word_m1; // s_a = a < 0 ? -1 : 0 local
21 a = (a ^ s_a) - s_a; // negate if s_a == -1
23 s_a ^= s_b; // sign of quotient
30 return ((su_int)a / (su_int)b ^ s_a) - s_a; // negate if s_a == -1
H A Ddivdi3.c19 di_int s_a = a >> bits_in_dword_m1; // s_a = a < 0 ? -1 : 0 local
21 a = (a ^ s_a) - s_a; // negate if s_a == -1
23 s_a ^= s_b; // sign of quotient
24 return (__udivmoddi4(a, b, (du_int *)0) ^ s_a) - s_a; // negate if s_a == -1
H A Ddivti3.c21 ti_int s_a = a >> bits_in_tword_m1; // s_a = a < 0 ? -1 : 0 local
23 a = (a ^ s_a) - s_a; // negate if s_a == -1
25 s_a ^= s_b; // sign of quotient
26 return (__udivmodti4(a, b, (tu_int *)0) ^ s_a) - s_a; // negate if s_a == -1

Completed in 32 milliseconds