Searched defs:i64 (Results 1 - 25 of 41) sorted by relevance

12

/external/clang/test/CodeGen/
H A Darm-microsoft-intrinsics.c29 __INT64_TYPE__ i64; local
30 return __ldrexd(&i64);
/external/valgrind/drd/tests/
H A Dannotate_trace_memory.c10 volatile int64_t i64; variable
19 DRD_TRACE_VAR(i64);
37 i64 = 9;
38 i64 += 0x12345678ULL;
45 DRD_STOP_TRACING_VAR(i64);
/external/clang/test/Sema/
H A Dformat-strings-ms.c11 void non_iso_warning_test(__int32 i32, __int64 i64, wchar_t c, void *p) { argument
14 printf("%I64d", i64); // expected-warning{{'I64' length modifier is not supported by ISO C}}
H A Datomic-ops.c51 int __attribute__((vector_size(8))) i64; variable
55 _Static_assert(__atomic_is_lock_free(1, &i64), "");
58 _Static_assert(__atomic_is_lock_free(2, &i64), "");
61 _Static_assert(__atomic_is_lock_free(4, &i64), "");
63 _Static_assert(__atomic_is_lock_free(8, &i64), "");
78 _Static_assert(__atomic_always_lock_free(1, &i64), "");
81 _Static_assert(__atomic_always_lock_free(2, &i64), "");
84 _Static_assert(__atomic_always_lock_free(4, &i64), "");
86 _Static_assert(__atomic_always_lock_free(8, &i64), "");
/external/libyuv/files/unit_test/
H A Dbasictypes_test.cc33 int64 i64 = -1; local
41 EXPECT_EQ(8u, sizeof(i64));
49 EXPECT_GT(0, i64);
/external/valgrind/none/tests/s390x/
H A Drounding-5.c11 volatile int64_t i64; variable
49 __asm__ volatile("cegbr %[r1],%[r2]" : [r1] "=f"(out) : [r2] "d"(i64));
50 printf("cegbr: %"PRId64" -> %f\n", i64, out);
59 __asm__ volatile("cdgbr %[r1],%[r2]" : [r1] "=f"(out) : [r2] "d"(i64));
60 printf("cegbr: %"PRId64" -> %f\n", i64, out);
76 /* i64 -> f32 */
77 i64 = INT64_MAX;
80 i64 = INT64_MIN;
84 /* i64 -> f64 */
85 i64
[all...]
/external/valgrind/none/tests/arm64/
H A Dcvtf_imm.c11 typedef union { double d64; float f32[2]; unsigned long long int i64; } U; member in union:__anon25291
17 U block[2]; block[0].i64 = x; block[1].i64 = 0;
25 U block[2]; block[0].i64 = x; block[1].i64 = 0;
33 U block[2]; block[0].i64 = x; block[1].i64 = 0;
42 U block[2]; block[0].i64 = x; block[1].i64 = 0;
50 U block[2]; block[0].i64
[all...]
/external/icu/icu4c/source/test/intltest/
H A Dwinnmtst.cpp237 int64_t i64 = randomInt64(); local
243 getWindowsFormat(lcid, currency, w6Buffer, L"%I64d", i64);
261 wnf->format(i64, u6Buffer);
/external/icu/icu4c/source/test/iotest/
H A Dstrtst.c753 int64_t i64 = -1; local
767 if (u_sscanf(testStr, "%*[123]%*[1-9]%lln", &i64) != 0) {
770 if (i64 != 10) {
771 log_err("test 3: scanf did not return 10\n", i64);
H A Diotest.cpp217 int64_t i64; local
281 i64 = uto64(argument);
282 uBufferLenReturned = u_sprintf_u(uBuffer, format, i64);
283 uFileBufferLenReturned = u_fprintf_u(testFile.getAlias(), format, i64);
382 int64_t i64, expected64; local
472 uBufferLenReturned = u_sscanf_u(argument, format, &i64);
473 //uFileBufferLenReturned = u_fscanf_u(testFile, format, i64);
474 if (i64 != expected64) {
586 int64_t i64; local
637 i64
[all...]
/external/libchrome/base/time/
H A Dtime_unittest.cc994 int64_t i64 = 2; local
996 TimeDelta::FromMilliseconds(1000) * i64);
998 TimeDelta::FromMilliseconds(1000) / i64);
1000 TimeDelta::FromMilliseconds(1000) *= i64);
1002 TimeDelta::FromMilliseconds(1000) /= i64);
1004 i64 * TimeDelta::FromMilliseconds(1000));
/external/mesa3d/src/gallium/drivers/radeonsi/
H A Dsi_shader_internal.h150 LLVMTypeRef i64; member in struct:si_shader_context
/external/python/cpython2/Modules/_ctypes/libffi/src/x86/
H A Dffi64.c56 UINT64 i64; member in union:big_int_union
513 reg_args->sse[ssecount++].i64 = *(UINT64 *) a;
/external/protobuf/src/google/protobuf/stubs/
H A Dstrutil.h626 AlphaNum(int64 i64) argument
628 piece_size_(FastInt64ToBufferLeft(i64, digits) - &digits[0]) {}
/external/protobuf/src/google/protobuf/util/internal/
H A Dproto_writer.cc165 StatusOr<int64> i64 = data.ToInt64(); local
166 if (i64.ok()) {
167 WireFormatLite::WriteInt64(field_number, i64.ValueOrDie(), stream);
169 return i64.status();
175 StatusOr<int64> i64 = data.ToInt64(); local
176 if (i64.ok()) {
177 WireFormatLite::WriteSFixed64(field_number, i64.ValueOrDie(), stream);
179 return i64.status();
185 StatusOr<int64> i64 = data.ToInt64(); local
186 if (i64
[all...]
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
H A DValueTypes.h42 i64 = 5, // This is a 64 bit integer value enumerator in enum:llvm::MVT::SimpleValueType
66 v1i64 = 24, // 1 x i64
67 v2i64 = 25, // 2 x i64
68 v4i64 = 26, // 4 x i64
69 v8i64 = 27, // 8 x i64
205 case v8i64: return i64;
262 case i64 :
328 return MVT::i64;
356 case MVT::i64:
/external/icu/icu4c/source/common/
H A Dputil.cpp171 int64_t i64; /* This must be defined first in order to allow the initialization to work. This is a C89 feature. */ member in union:__anon7264
341 return (UBool)((convertedNumber.i64 & U_INT64_MAX) > gInf.i64);
367 return (UBool)((convertedNumber.i64 & U_INT64_MAX) == gInf.i64);
/external/libcxx/test/std/algorithms/alg.sorting/alg.heap.operations/is.heap/
H A Dis_heap.pass.cpp143 int i64[] = {0, 0, 0, 1, 1, 1}; local
206 assert(std::is_heap(i64, i64+6) == (std::is_heap_until(i64, i64+6) == i64+6));
H A Dis_heap_comp.pass.cpp144 int i64[] = {0, 0, 0, 1, 1, 1}; local
207 assert(std::is_heap(i64, i64+6, std::greater<int>()) == (std::is_heap_until(i64, i64+6, std::greater<int>()) == i64+6));
H A Dis_heap_until.pass.cpp143 int i64[] = {0, 0, 0, 1, 1, 1}; local
206 assert(std::is_heap_until(i64, i64+6) == i64+3);
H A Dis_heap_until_comp.pass.cpp144 int i64[] = {0, 0, 0, 1, 1, 1}; local
207 assert(std::is_heap_until(i64, i64+6, std::greater<int>()) == i64+6);
/external/mesa3d/src/gallium/auxiliary/tgsi/
H A Dtgsi_ureg.c1069 int64_t i64[2]; member in union:__anon14845
1075 fu.i64[i] = v[i];
/external/valgrind/VEX/priv/
H A Dir_defs.c73 union { ULong i64; Double f64; UInt i32; Float f32; } u; member in union:__anon24274
86 vex_printf( "F64{0x%llx}", u.i64);
/external/vulkan-validation-layers/libs/glm/gtc/
H A Dtype_precision.hpp264 typedef detail::int64 i64; typedef in namespace:glm
320 typedef detail::tvec1<i64, defaultp> i64vec1;
324 typedef detail::tvec2<i64, defaultp> i64vec2;
328 typedef detail::tvec3<i64, defaultp> i64vec3;
332 typedef detail::tvec4<i64, defaultp> i64vec4;
/external/v8/src/mips/
H A Dsimulator-mips.cc1099 int64_t i64 = bit_cast<int64_t>(value); local
1100 set_fpu_register_word(fpureg, i64 & 0xffffffff);
1101 set_fpu_register_word(fpureg + 1, i64 >> 32);
1137 uint64_t i64; local
1138 i64 = static_cast<uint32_t>(get_fpu_register_word(fpureg));
1139 i64 |= static_cast<uint64_t>(get_fpu_register_word(fpureg + 1)) << 32;
1140 return static_cast<int64_t>(i64);
1175 int64_t i64; local
1176 i64 = static_cast<uint32_t>(get_fpu_register_word(fpureg));
1177 i64 |
2546 int64_t i64; local
2810 SetFPUResult(fd_reg(), i64); local
2828 int64_t i64 = static_cast<int64_t>(result); local
2830 SetFPUResult(fd_reg(), i64); local
2842 int64_t i64 = static_cast<int64_t>(rounded); local
2844 SetFPUResult(fd_reg(), i64); local
2856 int64_t i64 = static_cast<int64_t>(rounded); local
2858 SetFPUResult(fd_reg(), i64); local
3298 int64_t i64 = static_cast<int64_t>(rounded); local
3300 SetFPUResult(fd_reg(), i64); local
3321 int64_t i64 = static_cast<int64_t>(rounded); local
3323 SetFPUResult(fd_reg(), i64); local
3355 int64_t i64 = static_cast<int64_t>(result); local
3357 SetFPUResult(fd_reg(), i64); local
3378 int64_t i64 = static_cast<int64_t>(rounded); local
3380 SetFPUResult(fd_reg(), i64); local
3444 int64_t i64; local
[all...]

Completed in 8612 milliseconds

12