HomeSort by relevance Sort by last modified time
    Searched refs:i64 (Results 1 - 25 of 26) sorted by null

1 2

  /external/qemu/target-arm/
helpers.h 22 DEF_HELPER_2(traceBB32, void, i64, i32)
25 DEF_HELPER_2(traceBB64, void, i64, i64)
61 DEF_HELPER_1(logicq_cc, i32, i64)
152 DEF_HELPER_2(neon_add_saturate_u64, i64, i64, i64)
153 DEF_HELPER_2(neon_add_saturate_s64, i64, i64, i64)
    [all...]
  /external/stlport/src/
num_get_float.cpp 39 uint64_t i64; member in union:_ll
490 vv.i64 = 0L;
493 vv.i64 *= 10;
494 vv.i64 += *buffer++;
497 if ( vv.i64 == ULL(0) ) { /* Check for zero and treat it as a special case */
507 if ((vv.i64 >> 32) != 0) { nzero = 32; }
508 if ((vv.i64 >> (16 + nzero)) != 0) { nzero += 16; }
509 if ((vv.i64 >> ( 8 + nzero)) != 0) { nzero += 8; }
510 if ((vv.i64 >> ( 4 + nzero)) != 0) { nzero += 4; }
511 if ((vv.i64 >> ( 2 + nzero)) != 0) { nzero += 2;
    [all...]
  /ndk/sources/android/stlport/src/
num_get_float.cpp 39 uint64_t i64; member in union:_ll
490 vv.i64 = 0L;
493 vv.i64 *= 10;
494 vv.i64 += *buffer++;
497 if ( vv.i64 == ULL(0) ) { /* Check for zero and treat it as a special case */
507 if ((vv.i64 >> 32) != 0) { nzero = 32; }
508 if ((vv.i64 >> (16 + nzero)) != 0) { nzero += 16; }
509 if ((vv.i64 >> ( 8 + nzero)) != 0) { nzero += 8; }
510 if ((vv.i64 >> ( 4 + nzero)) != 0) { nzero += 4; }
511 if ((vv.i64 >> ( 2 + nzero)) != 0) { nzero += 2;
    [all...]
  /external/qemu/
def-helper.h 7 (i32, i64 and ptr). Additional aliases are provided for convenience and
31 #define dh_alias_i64 i64
32 #define dh_alias_s64 i64
34 #define dh_alias_f64 i64
38 #define dh_alias_tl i64
cpu-all.h 1010 uint64_t i64;
1018 return rval.i64;
gdbstub.c 2013 uint64_t i64; local
    [all...]
  /external/chromium/third_party/icu/source/test/iotest/
iotest.cpp 205 int64_t i64; local
269 i64 = uto64(argument);
270 uBufferLenReturned = u_sprintf_u(uBuffer, format, i64);
271 uFileBufferLenReturned = u_fprintf_u(testFile, format, i64);
372 int64_t i64, expected64; local
462 uBufferLenReturned = u_sscanf_u(argument, format, &i64);
463 //uFileBufferLenReturned = u_fscanf_u(testFile, format, i64);
464 if (i64 != expected64) {
576 int64_t i64; local
627 i64 = uto64(argument)
    [all...]
strtst.c 749 int64_t i64 = -1; local
763 if (u_sscanf(testStr, "%*[123]%*[1-9]%lln", &i64) != 0) {
766 if (i64 != 10) {
767 log_err("test 3: scanf did not return 10\n", i64);
  /external/icu4c/test/iotest/
iotest.cpp 213 int64_t i64; local
277 i64 = uto64(argument);
278 uBufferLenReturned = u_sprintf_u(uBuffer, format, i64);
279 uFileBufferLenReturned = u_fprintf_u(testFile.getAlias(), format, i64);
378 int64_t i64, expected64; local
468 uBufferLenReturned = u_sscanf_u(argument, format, &i64);
469 //uFileBufferLenReturned = u_fscanf_u(testFile, format, i64);
470 if (i64 != expected64) {
582 int64_t i64; local
633 i64 = uto64(argument)
    [all...]
strtst.c 749 int64_t i64 = -1; local
763 if (u_sscanf(testStr, "%*[123]%*[1-9]%lln", &i64) != 0) {
766 if (i64 != 10) {
767 log_err("test 3: scanf did not return 10\n", i64);
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
JCEDHKeyAgreement.java 41 Integer i64 = Integer.valueOf(64); typedefs
46 algorithms.put("DES", i64);
  /external/chromium/base/
scoped_variant_win.h 96 void Set(int64 i64);
scoped_variant_win.cc 153 void ScopedVariant::Set(int64 i64) {
156 var_.llVal = i64;
  /external/chromium/third_party/icu/source/test/intltest/
winnmtst.cpp 236 int64_t i64 = randomInt64(); local
242 getWindowsFormat(lcid, currency, w6Buffer, L"%I64d", i64);
260 wnf->format(i64, u6Buffer);
  /external/icu4c/test/intltest/
winnmtst.cpp 236 int64_t i64 = randomInt64(); local
242 getWindowsFormat(lcid, currency, w6Buffer, L"%I64d", i64);
260 wnf->format(i64, u6Buffer);
  /external/sqlite/dist/
sqlite3.c 6614 typedef sqlite_int64 i64; \/* 8-byte signed integer *\/ typedef
107609 typedef sqlite3_int64 i64; typedef
    [all...]
sqlite3.c.orig     [all...]
  /external/chromium/third_party/icu/source/common/
putil.c 143 int64_t i64; /* This must be defined first in order to allow the initialization to work. This is a C89 feature. */ member in union:__anon2905
297 return (UBool)((convertedNumber.i64 & U_INT64_MAX) > gInf.i64);
323 return (UBool)((convertedNumber.i64 & U_INT64_MAX) == gInf.i64);
    [all...]
  /external/qemu/tcg/
tcg.h 138 int i64; member in struct:__anon6598
146 #define GET_TCGV_I64(t) ((t).i64)
  /external/dbus/dbus/
dbus-marshal-basic.h 161 dbus_int64_t i64; /**< as int64 */ member in union:__anon3373
  /external/icu4c/common/
putil.c 160 int64_t i64; /* This must be defined first in order to allow the initialization to work. This is a C89 feature. */ member in union:__anon3894
317 return (UBool)((convertedNumber.i64 & U_INT64_MAX) > gInf.i64);
343 return (UBool)((convertedNumber.i64 & U_INT64_MAX) == gInf.i64);
    [all...]
  /external/bluetooth/glib/
glibconfig.h.win32.in 56 #define G_GINT64_CONSTANT(val) (val##i64)
63 #define G_GINT64_MODIFIER "I64"
75 #define G_GSIZE_MODIFIER "I64"
  /external/stlport/stlport/stl/
_limits.h 261 # define LONGLONG_MIN (-LONGLONG_MAX-1i64)
  /ndk/sources/android/stlport/stlport/stl/
_limits.h 261 # define LONGLONG_MIN (-LONGLONG_MAX-1i64)
  /external/chromium/base/third_party/nspr/
prtime.cc 125 static_cast<PRTime>((uli.QuadPart / 10) - 11644473600000000i64);
    [all...]

Completed in 473 milliseconds

1 2