HomeSort by relevance Sort by last modified time
    Searched refs:LL (Results 176 - 200 of 731) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/clang/lib/Frontend/
ASTUnit.cpp 209 /// reparses during which we'll skip even trying to precompile the
294 Contexts |= (1LL << CodeCompletionContext::CCC_TopLevel)
295 | (1LL << CodeCompletionContext::CCC_ObjCIvarList)
296 | (1LL << CodeCompletionContext::CCC_ClassStructUnion)
297 | (1LL << CodeCompletionContext::CCC_Statement)
298 | (1LL << CodeCompletionContext::CCC_Type)
299 | (1LL << CodeCompletionContext::CCC_ParenthesizedExpression);
303 Contexts |= (1LL << CodeCompletionContext::CCC_Expression);
308 Contexts |= (1LL << CodeCompletionContext::CCC_ObjCMessageReceiver);
312 Contexts |= (1LL << CodeCompletionContext::CCC_ObjCInterfaceName)
    [all...]
  /external/valgrind/main/callgrind/
sim.c 94 static cache_t2 I1, D1, LL;
234 * Simple model: L1 & LL Write Through
308 if ( cachesim_ref( &LL, a, size) == Hit ) return LL_Hit;
316 if ( cachesim_ref( &LL, a, size) == Hit ) return LL_Hit;
326 * More complex model: L1 Write-through, LL Write-back
415 switch( cachesim_ref_wb( &LL, Read, a, size) ) {
427 switch( cachesim_ref_wb( &LL, Read, a, size) ) {
440 * the write to the LL to make the LL line dirty.
443 cachesim_ref_wb( &LL, Write, a, size)
    [all...]
  /external/llvm/unittests/Support/
MathExtrasTest.cpp 128 EXPECT_TRUE(isPowerOf2_64(1LL << 46));
129 EXPECT_TRUE(isPowerOf2_64(1LL << 12));
130 EXPECT_FALSE(isPowerOf2_64((1LL << 53) + 3));
154 EXPECT_EQ(63u - i, CountLeadingOnes_64(0xFFFFFFFFFFFFFFFFLL ^ (1LL << i)));
188 EXPECT_EQ(0u, RoundUpToAlignment(~0LL, 8));
DataExtractorTest.cpp 87 EXPECT_EQ(-9182558167379214336LL, DE.getSigned(&offset, 8));
108 EXPECT_EQ(-7002LL, DE.getSLEB128(&offset));
116 EXPECT_EQ(-29839268287359830LL, BDE.getSLEB128(&offset));
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/debugging/
profile-mode.rb 19 * alternatives is not LL(k) for a fixed k. However, it is
20 * LL(*). The LL(*) algorithm simply scans ahead until it sees
  /external/clang/test/Sema/
constant-builtins-2.c 84 char g41[__builtin_popcountll(0LL) == 0 ? 1 : -1];
86 char g43[__builtin_popcountll(~0LL) == BITSIZE(long long) ? 1 : -1];
97 char g53[__builtin_parityll(1LL << (BITSIZE(long long) - 1)) == 1 ? 1 : -1];
  /external/libffi/testsuite/libffi.call/
nested_struct10.c 93 struct A e_dbl = { 1LL, 7};
94 struct B f_dbl = { 99, {12LL , 127}, 255};
95 struct C g_dbl = { 2LL, 9};
nested_struct8.c 92 struct A e_dbl = { 1LL, 7};
93 struct B f_dbl = {{12LL , 127}, 99};
94 struct C g_dbl = { 2LL, 9};
  /frameworks/av/media/libcpustats/
ThreadCpuUsage.cpp 63 long long delta = (ts.tv_sec - mPreviousTs.tv_sec) * 1000000000LL +
109 long long delta = (ts.tv_sec - mPreviousTs.tv_sec) * 1000000000LL +
140 elapsed = (ts.tv_sec - mMonotonicTs.tv_sec) * 1000000000LL +
  /prebuilts/gcc/darwin-x86/host/i686-apple-darwin-4.2.1/include/gcc/darwin/4.2/
stdint.h 122 #define INT64_MAX 9223372036854775807LL
243 #define INT64_C(v) (v ## LL)
250 #define INTMAX_C(v) (v ## LL)
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
stdint.h 153 # define __INT64_C(c) c ## LL
296 # define INT64_C(c) c ## LL
314 # define INTMAX_C(c) c ## LL
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
stdint.h 153 # define __INT64_C(c) c ## LL
296 # define INT64_C(c) c ## LL
314 # define INTMAX_C(c) c ## LL
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
stdint.h 153 # define __INT64_C(c) c ## LL
296 # define INT64_C(c) c ## LL
314 # define INTMAX_C(c) c ## LL
  /system/core/libsync/
sync_test.c 57 int ts_sec = pt_info->timestamp_ns / 1000000000LL;
58 int ts_usec = (pt_info->timestamp_ns % 1000000000LL) / 1000LL;
  /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;
  /libcore/luni/src/main/native/
java_lang_System.cpp 91 jlong when = now.tv_sec * 1000LL + now.tv_usec / 1000;
98 return now.tv_sec * 1000000000LL + now.tv_nsec;
  /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));
  /dalvik/vm/jdwp/
JdwpMain.cpp 291 * "timeout=xxx" option we'll need to tweak this.
414 return now.tv_sec * 1000LL + now.tv_nsec / 1000000LL;
418 return now.tv_sec * 1000LL + now.tv_usec / 1000LL;
  /external/chromium/third_party/libjingle/overrides/talk/base/
basictypes.h 29 #define INT64_C(x) x ## LL
35 #define INT64_F "ll"
  /external/chromium_org/base/containers/
hash_tables.h 138 uint64 odd_random = 481046412LL << 32 | 1025306955LL;
173 uint64 odd_random = 1578233944LL << 32 | 194370989LL;

Completed in 1375 milliseconds

1 2 3 4 5 6 78 91011>>