HomeSort by relevance Sort by last modified time
    Searched refs:LL (Results 226 - 250 of 883) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /hardware/invensense/60xx/libsensors_iio/
MPLSupport.cpp 35 return int64_t(t.tv_sec) * 1000000000LL + t.tv_nsec;
39 return t.tv_sec * 1000000000LL + t.tv_usec * 1000;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/ratio/ratio.arithmetic/
ratio_add.pass.cpp 56 static_assert(R::num == 127970191639601LL && R::den == 5177331081415LL, "");
ratio_subtract.pass.cpp 56 static_assert(R::num == -126708206685271LL && R::den == 5177331081415LL, "");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/ratio/ratio.comparison/
ratio_less.pass.cpp 78 typedef std::ratio<1291640, 2694141LL> R2;
82 typedef std::ratio<1291640, 2694141LL> R1;
  /external/chromium_org/third_party/protobuf/src/google/protobuf/
wire_format_unittest.cc 584 #define LL(x) GOOGLE_LONGLONG(x)
613 EXPECT_EQ(ULL(0x000000007FFFFFFE), ZigZagEncode64(LL(0x000000003FFFFFFF)));
614 EXPECT_EQ(ULL(0x000000007FFFFFFF), ZigZagEncode64(LL(0xFFFFFFFFC0000000)));
615 EXPECT_EQ(ULL(0x00000000FFFFFFFE), ZigZagEncode64(LL(0x000000007FFFFFFF)));
616 EXPECT_EQ(ULL(0x00000000FFFFFFFF), ZigZagEncode64(LL(0xFFFFFFFF80000000)));
617 EXPECT_EQ(ULL(0xFFFFFFFFFFFFFFFE), ZigZagEncode64(LL(0x7FFFFFFFFFFFFFFF)));
618 EXPECT_EQ(ULL(0xFFFFFFFFFFFFFFFF), ZigZagEncode64(LL(0x8000000000000000)));
624 EXPECT_EQ(LL(0x000000003FFFFFFF), ZigZagDecode64(ULL(0x000000007FFFFFFE)));
625 EXPECT_EQ(LL(0xFFFFFFFFC0000000), ZigZagDecode64(ULL(0x000000007FFFFFFF)));
626 EXPECT_EQ(LL(0x000000007FFFFFFF), ZigZagDecode64(ULL(0x00000000FFFFFFFE)))
    [all...]
  /external/protobuf/src/google/protobuf/
wire_format_unittest.cc 536 #define LL(x) GOOGLE_LONGLONG(x)
565 EXPECT_EQ(ULL(0x000000007FFFFFFE), ZigZagEncode64(LL(0x000000003FFFFFFF)));
566 EXPECT_EQ(ULL(0x000000007FFFFFFF), ZigZagEncode64(LL(0xFFFFFFFFC0000000)));
567 EXPECT_EQ(ULL(0x00000000FFFFFFFE), ZigZagEncode64(LL(0x000000007FFFFFFF)));
568 EXPECT_EQ(ULL(0x00000000FFFFFFFF), ZigZagEncode64(LL(0xFFFFFFFF80000000)));
569 EXPECT_EQ(ULL(0xFFFFFFFFFFFFFFFE), ZigZagEncode64(LL(0x7FFFFFFFFFFFFFFF)));
570 EXPECT_EQ(ULL(0xFFFFFFFFFFFFFFFF), ZigZagEncode64(LL(0x8000000000000000)));
576 EXPECT_EQ(LL(0x000000003FFFFFFF), ZigZagDecode64(ULL(0x000000007FFFFFFE)));
577 EXPECT_EQ(LL(0xFFFFFFFFC0000000), ZigZagDecode64(ULL(0x000000007FFFFFFF)));
578 EXPECT_EQ(LL(0x000000007FFFFFFF), ZigZagDecode64(ULL(0x00000000FFFFFFFE)))
    [all...]
  /art/compiler/utils/arm/
constants_arm.h 342 uint64_t imm64 = (Bit(19)*(1LL << 63)) | (((1LL << 8) - Bit(18)) << 54) |
343 (Bits(16, 2)*(1LL << 52)) | (Bits(0, 4)*(1LL << 48));
  /external/chromium_org/base/containers/
hash_tables.h 138 uint64 odd_random = 481046412LL << 32 | 1025306955LL;
173 uint64 odd_random = 1578233944LL << 32 | 194370989LL;
  /external/chromium_org/components/invalidation/
push_client_channel_unittest.cc 113 int64 scheduling_hash = 0LL;
218 int64 scheduling_hash = 0LL;
226 EXPECT_EQ(0LL, scheduling_hash);
239 int64 scheduling_hash = 0LL;
  /external/chromium_org/third_party/libjpeg_turbo/
rrutil.h 53 for(i=0; i<sizeof(long*)*8; i++) if(ProcAff&(1LL<<i)) count++;
  /external/chromium_org/third_party/sfntly/cpp/src/test/
open_type_data_test.cc 40 EXPECT_EQ(4278255873LL, data->ReadULong(0));
  /external/chromium_org/third_party/skia/src/core/
SkFDot6.h 30 double magic = (1LL << (52 - (fractionalBits))) * 1.5;
  /external/clang/test/CodeGen/
ppc64-complex-return.c 120 return __real__(foo_long_long(2LL - 3LLi));
  /external/clang/test/Sema/
types.c 41 extern int i[1LL];
  /external/compiler-rt/test/builtins/timing/
divdi3.c 28 input2[i] = ((((int64_t)rand() << 36) | (uint64_t)rand()) >> (rand() & 63)) + 1LL;
moddi3.c 28 input2[i] = ((((int64_t)rand() << 36) | (uint64_t)rand()) >> (rand() & 63)) + 1LL;
udivdi3.c 28 input2[i] = ((((uint64_t)rand() << 36) | (uint64_t)rand()) >> (rand() & 63)) + 1LL;
umoddi3.c 28 input2[i] = ((((uint64_t)rand() << 36) | (uint64_t)rand()) >> (rand() & 63)) + 1LL;
  /external/libcxx/test/language.support/support.runtime/
cstdlib.pass.cpp 75 static_assert((std::is_same<decltype(std::div(0LL,0LL)), std::lldiv_t>::value), "");
77 static_assert((std::is_same<decltype(std::lldiv(0LL,0LL)), std::lldiv_t>::value), "");
  /external/libyuv/files/include/libyuv/
basic_types.h 47 #define INT64_C(x) x ## LL
52 #define INT64_F "ll"
  /external/sfntly/cpp/src/test/
open_type_data_test.cc 40 EXPECT_EQ(4278255873LL, data->ReadULong(0));
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
fst.cpp 36 DEFINE_int64(fst_default_cache_gc_limit, 1<<20LL,
  /frameworks/av/services/camera/libcameraservice/device3/
StatusTracker.h 123 static const nsecs_t kWaitDuration = 250000000LL; // 250 ms
  /frameworks/wilhelm/src/desktop/
SndFile.c 58 1000000LL) / sampleRateMilliHz) + thisAP->mPlay.mLastSeekPosition;
79 // not much we can do if the Enqueue fails, so we'll just drop the decoded data
220 audioPlayer->mSndFile.mSfInfo.samplerate) / 1000LL), SEEK_SET);
262 1000LL) / thiz->mSndFile.mSfInfo.samplerate);
267 (long long) thiz->mSampleRateMilliHz) / 1000000LL;
  /hardware/invensense/6515/libsensors_iio/
SensorBase.h 80 return t.tv_sec * 1000000000LL + t.tv_usec * 1000;

Completed in 1611 milliseconds

1 2 3 4 5 6 7 8 91011>>