HomeSort by: relevance | last modified time | path
    Searched refs:s_a (Results 1 - 4 of 4) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/builtins/
divdi3.c 23 di_int s_a = a >> bits_in_dword_m1; /* s_a = a < 0 ? -1 : 0 */ local in function:__divdi3
25 a = (a ^ s_a) - s_a; /* negate if s_a == -1 */
27 s_a ^= s_b; /*sign of quotient */
28 return (__udivmoddi4(a, b, (du_int*)0) ^ s_a) - s_a; /* negate if s_a == -1 */
divti3.c 25 ti_int s_a = a >> bits_in_tword_m1; /* s_a = a < 0 ? -1 : 0 */ local in function:__divti3
27 a = (a ^ s_a) - s_a; /* negate if s_a == -1 */
29 s_a ^= s_b; /* sign of quotient */
30 return (__udivmodti4(a, b, (tu_int*)0) ^ s_a) - s_a; /* negate if s_a == -1 */
divsi3.c 23 si_int s_a = a >> bits_in_word_m1; /* s_a = a < 0 ? -1 : 0 */ local in function:__divsi3
25 a = (a ^ s_a) - s_a; /* negate if s_a == -1 */
27 s_a ^= s_b; /* sign of quotient */
34 return ((su_int)a/(su_int)b ^ s_a) - s_a; /* negate if s_a == -1 */
  /src/tests/usr.bin/c++/
t_static_destructor.sh 101 B(){static A s_a(10);m_a=&s_a;std::cout << "CTOR B" << std::endl;}
126 B(){static A s_a(10);m_a=&s_a;std::cout << "CTOR B" << std::endl;}
163 B(){static A s_a(10);m_a=&s_a;std::cout << "CTOR B" << std::endl;}
183 B(){static A s_a(10);m_a=&s_a;std::cout << "CTOR B" << std::endl;}
207 B(){static A s_a(10);m_a=&s_a;std::cout << "CTOR B" << std::endl;
    [all...]

Completed in 12 milliseconds