Searched refs:LL (Results 151 - 175 of 565) sorted by relevance

1234567891011>>

/external/libcxx/test/std/utilities/ratio/ratio.comparison/
H A Dratio_less.pass.cpp89 typedef std::ratio<1291640, 2694141LL> R2;
93 typedef std::ratio<1291640, 2694141LL> R1;
/external/libxcam/xcore/base/
H A Dxcam_defs.h97 #define XCAM_TIMESPEC_2_USEC(timespec) ((timespec).tv_sec*1000000LL + (timespec).tv_nsec/1000)
98 #define XCAM_TIMEVAL_2_USEC(timeval) ((timeval).tv_sec*1000000LL + (timeval).tv_usec)
/external/llvm/unittests/Support/
H A DMathExtrasTest.cpp127 EXPECT_EQ(-32768LL, minIntN(16));
128 EXPECT_EQ(-64LL, minIntN(7));
157 EXPECT_TRUE(isPowerOf2_64(1LL << 46));
158 EXPECT_TRUE(isPowerOf2_64(1LL << 12));
159 EXPECT_FALSE(isPowerOf2_64((1LL << 53) + 3));
180 EXPECT_EQ(63u - i, countLeadingOnes(0xFFFFFFFFFFFFFFFFULL ^ (1LL << i)));
214 EXPECT_EQ(0u, alignTo(~0LL, 8));
218 EXPECT_EQ(3u, alignTo(~0LL, 8, 3));
/external/tensorflow/tensorflow/core/lib/core/
H A Dbit_cast_test.cc76 static const int64 int64_list[] = {0, 1, 1LL << 40, -1, -(1LL << 40)};
H A Dbits.h104 return 1LL << exponent;
/external/tensorflow/tensorflow/core/lib/random/
H A Dsimple_philox_test.cc118 uint64 range = 3 * (1LL << 59);
119 uint64 threshold = 1LL << 60;
/external/llvm/unittests/ADT/
H A DAPIntTest.cpp529 EXPECT_EQ(APInt(32, uint64_t(-0LL)), APInt(32, "-0", 2));
530 EXPECT_EQ(APInt(32, uint64_t(-1LL)), APInt(32, "-1", 2));
531 EXPECT_EQ(APInt(32, uint64_t(-2LL)), APInt(32, "-10", 2));
532 EXPECT_EQ(APInt(32, uint64_t(-3LL)), APInt(32, "-11", 2));
533 EXPECT_EQ(APInt(32, uint64_t(-4LL)), APInt(32, "-100", 2));
550 EXPECT_EQ(APInt(32, uint64_t(-0LL)), APInt(32, "-0", 8));
551 EXPECT_EQ(APInt(32, uint64_t(-1LL)), APInt(32, "-1", 8));
552 EXPECT_EQ(APInt(32, uint64_t(-7LL)), APInt(32, "-7", 8));
553 EXPECT_EQ(APInt(32, uint64_t(-8LL)), APInt(32, "-10", 8));
554 EXPECT_EQ(APInt(32, uint64_t(-15LL)), APIn
[all...]
/external/clang/test/Sema/
H A Dtypes.c44 extern int i[1LL];
/external/clang/test/SemaTemplate/
H A Dcanonical-expr-type.cpp54 template<typename T> void literal_suffix(int (&)[sizeof(T() + 0LL)]) {}
/external/compiler-rt/test/builtins/timing/
H A Ddivdi3.c28 input2[i] = ((((int64_t)rand() << 36) | (uint64_t)rand()) >> (rand() & 63)) + 1LL;
H A Dmoddi3.c28 input2[i] = ((((int64_t)rand() << 36) | (uint64_t)rand()) >> (rand() & 63)) + 1LL;
H A Dudivdi3.c28 input2[i] = ((((uint64_t)rand() << 36) | (uint64_t)rand()) >> (rand() & 63)) + 1LL;
H A Dumoddi3.c28 input2[i] = ((((uint64_t)rand() << 36) | (uint64_t)rand()) >> (rand() & 63)) + 1LL;
/external/deqp/framework/delibs/debase/
H A DdeMathTest.c88 const deInt64 x = (deInt64)(sign == -1 ? (-1) : (+1)) * (1LL << (deInt64)numBits) + (deInt64)delta;
/external/libcxx/test/std/depr/depr.c.headers/
H A Dstdint_h.pass.cpp175 static_assert(INT64_MIN == -9223372036854775807LL - 1, "INT64_MIN == -9223372036854775808LL");
181 static_assert(INT64_MAX == 9223372036854775807LL, "INT64_MAX == 9223372036854775807LL");
193 static_assert(INT_FAST64_MIN <= -9223372036854775807LL - 1, "INT_FAST64_MIN <= -9223372036854775808LL");
199 static_assert(INT_FAST64_MAX >= 9223372036854775807LL, "INT_FAST64_MAX >= 9223372036854775807LL");
/external/libcxx/test/std/language.support/cstdint/cstdint.syn/
H A Dcstdint.pass.cpp176 static_assert(INT64_MIN == -9223372036854775807LL - 1, "INT64_MIN == -9223372036854775808LL");
182 static_assert(INT64_MAX == 9223372036854775807LL, "INT64_MAX == 9223372036854775807LL");
194 static_assert(INT_FAST64_MIN <= -9223372036854775807LL - 1, "INT_FAST64_MIN <= -9223372036854775808LL");
200 static_assert(INT_FAST64_MAX >= 9223372036854775807LL, "INT_FAST64_MAX >= 9223372036854775807LL");
/external/libcxx/test/std/language.support/support.runtime/
H A Dcstdlib.pass.cpp93 static_assert((std::is_same<decltype(std::div(0LL,0LL)), std::lldiv_t>::value), "");
95 static_assert((std::is_same<decltype(std::lldiv(0LL,0LL)), std::lldiv_t>::value), "");
/external/linux-kselftest/tools/testing/selftests/timers/
H A Dset-2038.c32 #define NSEC_PER_SEC 1000000000LL
/external/sfntly/cpp/src/test/
H A Dopen_type_data_test.cc40 EXPECT_EQ(4278255873LL, data->ReadULong(0));
/external/strace/tests/
H A Dpkey_mprotect.c82 -1LL,
/external/strace/tests-m32/
H A Dpkey_mprotect.c82 -1LL,
/external/strace/tests-mx32/
H A Dpkey_mprotect.c82 -1LL,
/external/swiftshader/third_party/LLVM/unittests/Support/
H A DBlockFrequencyTest.cpp41 const uint64_t Big = 387246523487234346LL;
/external/tensorflow/tensorflow/core/common_runtime/gpu/
H A Dprocess_state.cc198 1LL << 16 /*64GB max by default*/,
203 int64 cpu_mem_limit = cpu_mem_limit_in_mb * (1LL << 20);
273 1LL << 16 /*64GB max by default*/,
278 int64 cuda_host_mem_limit = cuda_host_mem_limit_in_mb * (1LL << 20);
/external/tensorflow/tensorflow/core/util/
H A Dwork_sharder.cc38 cost_per_unit = std::max(1LL, cost_per_unit);

Completed in 590 milliseconds

1234567891011>>