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

123

/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:__anon29694
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/flatbuffers/tests/MyGame/Example/
H A DTypeAliases.java29 public long i64() { int o = __offset(16); return o != 0 ? bb.getLong(o + bb_pos) : 0L; } method in class:TypeAliases
30 public boolean mutateI64(long i64) { int o = __offset(16); if (o != 0) { bb.putLong(o + bb_pos, i64); return true; } else { return false; } } argument
53 long i64,
62 TypeAliases.addI64(builder, i64);
82 public static void addI64(FlatBufferBuilder builder, long i64) { builder.addLong(6, i64, 0L); } argument
46 createTypeAliases(FlatBufferBuilder builder, byte i8, int u8, short i16, int u16, int i32, long u32, long i64, long u64, float f32, double f64, int v8Offset, int vf64Offset) argument
H A DTypeAliases.cs33 public bool MutateI64(long i64) { int o = __p.__offset(16); if (o != 0) { __p.bb.PutLong(o + __p.bb_pos, i64); return true; } else { return false; } } argument
56 long i64 = 0,
65 TypeAliases.AddI64(builder, i64);
85 public static void AddI64(FlatBufferBuilder builder, long i64) { builder.AddLong(6, i64, 0); } argument
/external/icu/icu4c/source/test/intltest/
H A Dwinnmtst.cpp241 int64_t i64 = randomInt64(); local
247 getWindowsFormat(lcid, currency, w6Buffer, L"%I64d", i64);
265 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/tensorflow/tensorflow/core/lib/strings/
H A Dstrcat.h115 AlphaNum(long long int i64) // NOLINT(runtime/explicit) argument
116 : piece_(digits_, FastInt64ToBufferLeft(i64, digits_) - &digits_[0]) {}
/external/libchrome/base/time/
H A Dtime_unittest.cc1011 int64_t i64 = 2; local
1013 TimeDelta::FromMilliseconds(1000) * i64);
1015 TimeDelta::FromMilliseconds(1000) / i64);
1017 TimeDelta::FromMilliseconds(1000) *= i64);
1019 TimeDelta::FromMilliseconds(1000) /= i64);
1021 i64 * TimeDelta::FromMilliseconds(1000));
/external/libffi/src/x86/
H A Dffi64.c56 UINT64 i64; member in union:big_int_union
513 reg_args->sse[ssecount++].i64 = *(UINT64 *) a;
/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/python/cpython3/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/tensorflow/tensorflow/contrib/lite/
H A Dcontext.h147 int64_t* i64; member in union:__anon25905
/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/libevent/test/
H A Dregress_util.c387 ev_int64_t i64 = -1 * (ev_int64_t) u64; local
403 r = evutil_snprintf(buf, sizeof(buf), EV_I64_FMT, EV_I64_ARG(i64));
689 ev_int64_t i64; local
705 tt_int_op(sizeof(i64), ==, 8);
720 i64 = -1000000000;
721 i64 *= 1000000000;
722 tt_assert(i64 / 1000000000 == -1000000000);
725 i64 = EV_INT64_MAX;
727 tt_assert(i64 > 0);
729 /* 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/deqp/external/openglcts/modules/gl/
H A Dgl4cComputeShaderTests.cpp2219 GLint64 i64; local
2236 glGetInteger64i_v(target, c, &i64);
2237 if (i64 < static_cast<GLint64>(min_values[c]))
2240 << tcu::TestLog::Message << "Is " << static_cast<GLint>(i64) << " should be at least "
2284 GLint64 i64; local
2296 glGetInteger64v(target, &i64);
2297 if (static_cast<GLint>(i64) < min_value)
2300 << tcu::TestLog::Message << "Is " << static_cast<GLint>(i64) << " should be at least " << min_value
2934 GLint64 i64; local
2944 glGetInteger64v(GL_DISPATCH_INDIRECT_BUFFER_BINDING, &i64);
[all...]
H A Dgl4cShaderAtomicCountersTests.cpp367 GLint64 i64; local
368 glGetInteger64v(e, &i64);
369 if (i64 < static_cast<GLint64>(expected))
373 << " state is incorrect (GetInteger64v, is: " << static_cast<GLint>(i64)
417 GLint64 i64; local
418 glGetInteger64v(e, &i64);
419 if (i64 != static_cast<GLint64>(expected))
423 << " state is incorrect (GetInteger64v, is: " << static_cast<GLint>(i64)
475 GLint64 i64; local
476 glGetInteger64i_v(GL_ATOMIC_COUNTER_BUFFER_BINDING, index, &i64);
746 GLint64 i64; local
[all...]

Completed in 2689 milliseconds

123