HomeSort by relevance Sort by last modified time
    Searched refs:LL (Results 151 - 175 of 871) sorted by null

1 2 3 4 5 67 8 91011>>

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/ratio/ratio.arithmetic/
ratio_multiply.pass.cpp 56 static_assert(R::num == 15519594064236LL && R::den == 5177331081415LL, "");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/time/time.duration/time.duration.cast/
duration_cast.pass.cpp 40 test(std::chrono::milliseconds(7265000), std::chrono::microseconds(7265000000LL));
41 test(std::chrono::milliseconds(7265000), std::chrono::nanoseconds(7265000000000LL));
  /ndk/tests/abcc/jni/device/
Abcc_device.h 51 long long l0 = _t0.tv_sec * 1000000LL + _t0.tv_usec;
52 long long l = t.tv_sec * 1000000LL + t.tv_usec;
  /prebuilts/clang/darwin-x86/host/3.4/lib/clang/3.4/include/
limits.h 100 #define LLONG_MIN (-__LONG_LONG_MAX__-1LL)
115 #define LONG_LONG_MIN (-__LONG_LONG_MAX__-1LL)
  /prebuilts/clang/darwin-x86/host/3.5/lib/clang/3.5/include/
limits.h 99 #define LLONG_MIN (-__LONG_LONG_MAX__-1LL)
114 #define LONG_LONG_MIN (-__LONG_LONG_MAX__-1LL)
  /prebuilts/clang/linux-x86/host/3.4/lib/clang/3.4/include/
limits.h 100 #define LLONG_MIN (-__LONG_LONG_MAX__-1LL)
115 #define LONG_LONG_MIN (-__LONG_LONG_MAX__-1LL)
  /prebuilts/clang/linux-x86/host/3.5/lib/clang/3.5/include/
limits.h 99 #define LLONG_MIN (-__LONG_LONG_MAX__-1LL)
114 #define LONG_LONG_MIN (-__LONG_LONG_MAX__-1LL)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/
limits.h 105 # define LLONG_MAX 9223372036854775807LL
106 # define LLONG_MIN (-LLONG_MAX - 1LL)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
limits.h 105 # define LLONG_MAX 9223372036854775807LL
106 # define LLONG_MIN (-LLONG_MAX - 1LL)
  /prebuilts/misc/darwin-x86/analyzer/lib/clang/3.3/include/
limits.h 98 #define LLONG_MIN (-__LONG_LONG_MAX__-1LL)
113 #define LONG_LONG_MIN (-__LONG_LONG_MAX__-1LL)
  /prebuilts/misc/linux-x86/analyzer/lib/clang/3.3/include/
limits.h 98 #define LLONG_MIN (-__LONG_LONG_MAX__-1LL)
113 #define LONG_LONG_MIN (-__LONG_LONG_MAX__-1LL)
  /prebuilts/sdk/renderscript/clang-include/
limits.h 99 #define LLONG_MIN (-__LONG_LONG_MAX__-1LL)
114 #define LONG_LONG_MIN (-__LONG_LONG_MAX__-1LL)
  /prebuilts/sdk/tools/darwin/renderscript/clang-include/
limits.h 99 #define LLONG_MIN (-__LONG_LONG_MAX__-1LL)
114 #define LONG_LONG_MIN (-__LONG_LONG_MAX__-1LL)
  /external/llvm/unittests/ADT/
APIntTest.cpp 225 EXPECT_EQ(APInt(32, uint64_t(-0LL)), APInt(32, "-0", 2));
226 EXPECT_EQ(APInt(32, uint64_t(-1LL)), APInt(32, "-1", 2));
227 EXPECT_EQ(APInt(32, uint64_t(-2LL)), APInt(32, "-10", 2));
228 EXPECT_EQ(APInt(32, uint64_t(-3LL)), APInt(32, "-11", 2));
229 EXPECT_EQ(APInt(32, uint64_t(-4LL)), APInt(32, "-100", 2));
246 EXPECT_EQ(APInt(32, uint64_t(-0LL)), APInt(32, "-0", 8));
247 EXPECT_EQ(APInt(32, uint64_t(-1LL)), APInt(32, "-1", 8));
248 EXPECT_EQ(APInt(32, uint64_t(-7LL)), APInt(32, "-7", 8));
249 EXPECT_EQ(APInt(32, uint64_t(-8LL)), APInt(32, "-10", 8));
250 EXPECT_EQ(APInt(32, uint64_t(-15LL)), APInt(32, "-17", 8))
    [all...]
  /external/chromium_org/third_party/skia/third_party/lua/src/
lobject.c 244 #define LL(x) (sizeof(x)/sizeof(char) - 1)
266 addstr(out, RETS, LL(RETS));
267 bufflen -= LL(RETS);
273 addstr(out, PRE, LL(PRE)); /* add prefix */
274 bufflen -= LL(PRE RETS POS) + 1; /* save space for prefix+suffix+'\0' */
282 addstr(out, RETS, LL(RETS));
284 memcpy(out, POS, (LL(POS) + 1) * sizeof(char));
  /external/valgrind/main/cachegrind/
cg_sim.c 166 static cache_t2 LL;
174 cachesim_initcache(LLc, &LL);
183 if (cachesim_ref_is_miss(&LL, a, size))
198 UInt LL_set = block & LL.sets_min_1;
200 // can use block as tag as L1I and LL cache line sizes are equal
201 if (cachesim_setref_is_miss(&LL, LL_set, block))
212 if (cachesim_ref_is_miss(&LL, a, size))
219 * Does this Ir only touch one cache line, and are L1I/LL cache
228 if (I1.line_size_bits != LL.line_size_bits) return False;
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
ll-star.rb 24 * alternatives is not LL(k) for a fixed k. However, it is
25 * LL(*). The LL(*) algorithm simply scans ahead until it sees
119 example "parsing with a LL(*) grammar" do
  /external/clang/test/CodeGenCXX/
mangle-ms-templates.cpp 137 LongLongTemplate<-9223372036854775807LL-1LL> int64_min;
140 LongLongTemplate<9223372036854775807LL> int64_max;
  /external/compiler-rt/test/builtins/Unit/ppc/
fixtfdi_test.c 21 { 0.0, 0.0, 0LL },
22 { -0.0, 0.0, 0LL },
23 { 1.0, 0.0, 1LL },
24 { -1.0, 0.0, -1LL },
25 { 2.0, 0.0, 2LL },
26 { -2.0, 0.0, -2LL },
27 { 3.0, 0.0, 3LL },
28 { -3.0, 0.0, -3LL },
29 { 4.0, 0.0, 4LL },
30 { -4.0, 0.0, -4LL },
    [all...]
  /device/htc/flounder/sensor_hub/libsensors/
SensorBase.h 30 #define NS_PER_SEC 1000000000LL
  /external/chromium_org/third_party/cld/base/
port.h 15 #define GG_LONGLONG(x) x##LL
  /external/chromium_org/third_party/libvpx/source/libvpx/third_party/libyuv/include/libyuv/
basic_types.h 47 #define INT64_C(x) x ## LL
52 #define INT64_F "ll"
  /external/clang/test/CodeGen/
blocks.c 51 long long ll = 0;
53 f4_helper(^{ if (b) return ll; return 0LL; });
ppc64-complex-parms.c 168 foo_long_long(2LL - 3LLi);
  /external/clang/test/FixIt/
fixit.c 72 LL // expected-warning {{unused label}}

Completed in 906 milliseconds

1 2 3 4 5 67 8 91011>>