HomeSort by relevance Sort by last modified time
    Searched refs:__int128 (Results 1 - 22 of 22) sorted by null

  /external/compiler-rt/lib/ubsan/lit_tests/Integer/
div-zero.cpp 7 typedef __int128 intmax;
  /external/clang/test/Sema/
types.c 22 // __int128 is a keyword
24 __int128 i;
25 unsigned __int128 j;
26 long unsigned __int128 k; // expected-error {{'long __int128' is invalid}}
27 int __int128; // expected-error {{cannot combine with previous}} expected-warning {{does not declare anything}} local
29 // __int128_t is __int128; __uint128_t is unsigned __int128.
30 typedef __int128 check_int_128; // expected-note {{here}}
32 typedef int check_int_128; // expected-error {{different types ('int' vs '__int128_t' (aka '__int128'))}}
    [all...]
128bitint.c 16 __int128 i = (__int128)0;
17 unsigned __int128 u = (unsigned __int128)-1;
21 long long Signed64 = 123456789012345678901234567890i128; // expected-warning {{implicit conversion from '__int128' to 'long long' changes value from 123456789012345678901234567890 to -4362896299872285998}}
24 unsigned long long Unsigned64 = 123456789012345678901234567890Ui128; // expected-warning {{implicit conversion from 'unsigned __int128' to 'unsigned long long' changes value from 123456789012345678901234567890 to 14083847773837265618}}
41 MPI_Send(buf, 0x10000000000000001i128); // expected-warning {{implicit conversion from '__int128' to 'int' changes value}}
45 __int128 n; // expected-error {{__int128 is not supported on this target}}
builtins-arm-exclusive.c 24 sum += __builtin_arm_ldrex((__int128 *)addr); // expected-error {{__int128 is not supported on this target}} expected-error {{address argument to load or store exclusive builtin must be a pointer to 1,2,4 or 8 byte type}}
51 res |= __builtin_arm_strex(1, (__int128 *)addr); // expected-error {{__int128 is not supported on this target}} expected-error {{address argument to load or store exclusive builtin must be a pointer to 1,2,4 or 8 byte type}}
  /external/clang/test/CodeGen/
aarch64-varargs.c 41 __int128 aligned_int(void) {
43 return va_arg(the_list, __int128);
aarch64-type-sizes.c 27 return sizeof(__int128);
catch-undef-behavior.c 247 float int_float_no_overflow(__int128 n) {
254 float int_float_overflow(unsigned __int128 n) {
aarch64-arguments.c 174 struct s40 { __int128 a; };
178 // Checking: __int128 will get properly aligned type, with padding so big struct doesn't use x7.
181 int f41(int x0, int x1, int x2, int x3, int x4, int x5, int x6, __int128 stacked, struct s41 stacked2) {}
183 // Checking: __int128 needing to be aligned in registers will consume correct
187 void f42(int x0, int x1, int x2, int x3, int x4, __int128 x6_7, __int128 stacked) {}
exprs.c 181 extern void extfunc(__int128);
182 __int128 x = 2;
  /external/compiler-rt/lib/ubsan/lit_tests/Float/
cast-overflow.cpp 34 unsigned __int128 FloatMaxAsUInt128 = -((unsigned __int128)1 << 104);
81 // CHECK-6: {{runtime error: value 0xffffff00000000000000000000000001 is outside the range of representable values of type 'float'|__int128 not supported}}
85 puts("__int128 not supported");
  /external/clang/lib/Headers/
bmi2intrin.h 77 unsigned __int128 __res = (unsigned __int128) __X * __Y;
  /prebuilts/gcc/darwin-x86/x86/i686-linux-android-4.7/lib/gcc/i686-linux-android/4.7/include/
bmi2intrin.h 84 unsigned __int128 __res = (unsigned __int128) __X * __Y;
  /prebuilts/gcc/linux-x86/x86/i686-linux-android-4.7/lib/gcc/i686-linux-android/4.7/include/
bmi2intrin.h 84 unsigned __int128 __res = (unsigned __int128) __X * __Y;
  /prebuilts/sdk/renderscript/clang-include/
bmi2intrin.h 77 unsigned __int128 __res = (unsigned __int128) __X * __Y;
  /external/clang/test/SemaCXX/
overloaded-builtin-operators.cpp 262 struct X { operator __int128() const; } x;
263 bool a = x == __int128(0);
266 struct Y { operator unsigned __int128() const; } y;
267 bool c = y == __int128(0);
  /external/compiler-rt/lib/ubsan/
ubsan_value.h 28 typedef __int128 s128;
29 typedef unsigned __int128 u128;
  /external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.list/
p7-0x.cpp 179 Agg<unsigned long long> ll8 = { __int128(18446744073709551615ULL) + 1 }; // expected-error {{ 18446744073709551616 which cannot be narrowed}} expected-note {{override}} expected-warning {{changes value}}
  /external/compiler-rt/lib/tsan/rtl/
tsan_interface_atomic.h 31 __extension__ typedef __int128 __tsan_atomic128;
  /external/chromium_org/base/
atomicops_internals_tsan.h 45 typedef __int128 __tsan_atomic128;
  /external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
atomicops_internals_tsan.h 58 typedef __int128 __tsan_atomic128;
  /external/chromium_org/v8/src/
atomicops_internals_tsan.h 67 typedef __int128 __tsan_atomic128;
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/bits/
random.h 83 /* assume long long no bigger than __int128 */
106 { typedef unsigned __int128 type; };
    [all...]

Completed in 242 milliseconds