reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

projects/compiler-rt/lib/builtins/ashlti3.c
   28     result.s.high = input.s.low << (b - bits_in_dword);
   33     result.s.high = (input.s.high << b) | (input.s.low >> (bits_in_dword - b));
   33     result.s.high = (input.s.high << b) | (input.s.low >> (bits_in_dword - b));
projects/compiler-rt/lib/builtins/ashrti3.c
   28     result.s.high = input.s.high >> (bits_in_dword - 1);
   28     result.s.high = input.s.high >> (bits_in_dword - 1);
   29     result.s.low = input.s.high >> (b - bits_in_dword);
   33     result.s.high = input.s.high >> b;
   33     result.s.high = input.s.high >> b;
   34     result.s.low = (input.s.high << (bits_in_dword - b)) | (input.s.low >> b);
projects/compiler-rt/lib/builtins/clzti2.c
   24   const di_int f = -(x.s.high == 0);
   25   return __builtin_clzll((x.s.high & ~f) | (x.s.low & f)) +
projects/compiler-rt/lib/builtins/cmpti2.c
   26   if (x.s.high < y.s.high)
   26   if (x.s.high < y.s.high)
   28   if (x.s.high > y.s.high)
   28   if (x.s.high > y.s.high)
projects/compiler-rt/lib/builtins/ctzti2.c
   25   return __builtin_ctzll((x.s.high & f) | (x.s.low & ~f)) +
projects/compiler-rt/lib/builtins/ffsti2.c
   24     if (x.s.high == 0)
   26     return __builtin_ctzll(x.s.high) + (1 + sizeof(di_int) * CHAR_BIT);
projects/compiler-rt/lib/builtins/int_types.h
  101   r.s.high = h;
projects/compiler-rt/lib/builtins/multi3.c
   28   r.s.high = t >> bits_in_dword_2;
   33   r.s.high += t >> bits_in_dword_2;
   34   r.s.high += (a >> bits_in_dword_2) * (b >> bits_in_dword_2);
   47   r.s.high += x.s.high * y.s.low + x.s.low * y.s.high;
   47   r.s.high += x.s.high * y.s.low + x.s.low * y.s.high;
   47   r.s.high += x.s.high * y.s.low + x.s.low * y.s.high;
projects/compiler-rt/lib/builtins/parityti2.c
   22   return __paritydi2(x.s.high ^ x.s.low);