HomeSort by relevance Sort by last modified time
    Searched defs:LL (Results 1 - 25 of 47) sorted by null

1 2

  /prebuilts/go/darwin-x86/src/runtime/internal/atomic/
asm_mips64x.s 9 #define LL(base, rt) WORD $((060<<26)|((base)<<21)|((rt)<<16))
29 LL(1, 4) // R4 = *R1
107 LL(2, 1) // R1 = *R2
135 LL(2, 1) // R1 = *R2
196 LL(3, 4) // R4 = *R3
226 LL(3, 4) // R4 = *R3
  /prebuilts/go/darwin-x86/src/sync/atomic/
asm_mips64x.s 9 #define LL(base, rt) WORD $((060<<26)|((base)<<21)|((rt)<<16))
23 LL(2, 1) // R1 = *R2
58 LL(1, 4) // R4 = *R1
102 LL(2, 1) // R1 = *R2
  /prebuilts/go/linux-x86/src/runtime/internal/atomic/
asm_mips64x.s 9 #define LL(base, rt) WORD $((060<<26)|((base)<<21)|((rt)<<16))
29 LL(1, 4) // R4 = *R1
107 LL(2, 1) // R1 = *R2
135 LL(2, 1) // R1 = *R2
196 LL(3, 4) // R4 = *R3
226 LL(3, 4) // R4 = *R3
  /prebuilts/go/linux-x86/src/sync/atomic/
asm_mips64x.s 9 #define LL(base, rt) WORD $((060<<26)|((base)<<21)|((rt)<<16))
23 LL(2, 1) // R1 = *R2
58 LL(1, 4) // R4 = *R1
102 LL(2, 1) // R1 = *R2
  /external/llvm/lib/Support/
ScaledNumber.cpp 28 uint64_t UL = getU(LHS), LL = getL(LHS), UR = getU(RHS), LR = getL(RHS);
31 uint64_t P1 = UL * UR, P2 = UL * LR, P3 = LL * UR, P4 = LL * LR;
  /device/linaro/bootloader/edk2/AppPkg/Applications/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/compiler-rt/lib/sanitizer_common/tests/
sanitizer_format_interceptor_test.cc 41 static const unsigned LL = sizeof(long long);
115 testScanf("%llu", 1, LL);
116 testScanf("%qd", 1, LL);
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorUInt128.h 76 template <typename HL, typename LL, typename HR, typename LR>
78 bool operator == (const TensorUInt128<HL, LL>& lhs, const TensorUInt128<HR, LR>& rhs)
83 template <typename HL, typename LL, typename HR, typename LR>
85 bool operator != (const TensorUInt128<HL, LL>& lhs, const TensorUInt128<HR, LR>& rhs)
90 template <typename HL, typename LL, typename HR, typename LR>
92 bool operator >= (const TensorUInt128<HL, LL>& lhs, const TensorUInt128<HR, LR>& rhs)
100 template <typename HL, typename LL, typename HR, typename LR>
102 bool operator < (const TensorUInt128<HL, LL>& lhs, const TensorUInt128<HR, LR>& rhs)
110 template <typename HL, typename LL, typename HR, typename LR>
112 TensorUInt128<uint64_t, uint64_t> operator + (const TensorUInt128<HL, LL>& lhs, const TensorUInt128<HR, LR>& rhs
    [all...]
  /external/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/syslinux/com32/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/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/clang/lib/Edit/
RewriteObjCFoundationAPI.cpp 678 StringRef U, F, L, LL;
714 } else if (Suff::has("ll", text)) {
716 } else if (Suff::has("LL", text)) {
739 Info.LL = *UpperL ? "LL" : "ll";
882 commit.insert(LitE, LitInfo.LL);
    [all...]
  /external/clang/test/SemaCXX/
cxx1y-generic-lambdas.cpp 788 auto LL = L(1, 'a', 3.14, "abc");
789 LL("dim");
attr-noreturn.cpp 87 struct LL : KK {};
104 LL l;
120 const LL& ll = LL(); local
  /external/protobuf/src/google/protobuf/
wire_format_unittest.cc 667 #define LL(x) GOOGLE_LONGLONG(x)
696 EXPECT_EQ(ULL(0x000000007FFFFFFE), ZigZagEncode64(LL(0x000000003FFFFFFF)));
697 EXPECT_EQ(ULL(0x000000007FFFFFFF), ZigZagEncode64(LL(0xFFFFFFFFC0000000)));
698 EXPECT_EQ(ULL(0x00000000FFFFFFFE), ZigZagEncode64(LL(0x000000007FFFFFFF)));
699 EXPECT_EQ(ULL(0x00000000FFFFFFFF), ZigZagEncode64(LL(0xFFFFFFFF80000000)));
700 EXPECT_EQ(ULL(0xFFFFFFFFFFFFFFFE), ZigZagEncode64(LL(0x7FFFFFFFFFFFFFFF)));
701 EXPECT_EQ(ULL(0xFFFFFFFFFFFFFFFF), ZigZagEncode64(LL(0x8000000000000000)));
707 EXPECT_EQ(LL(0x000000003FFFFFFF), ZigZagDecode64(ULL(0x000000007FFFFFFE)));
708 EXPECT_EQ(LL(0xFFFFFFFFC0000000), ZigZagDecode64(ULL(0x000000007FFFFFFF)));
709 EXPECT_EQ(LL(0x000000007FFFFFFF), ZigZagDecode64(ULL(0x00000000FFFFFFFE)))
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
LegalizeTypesGeneric.cpp 442 SDValue LL, LH, RL, RH, CL, CH;
444 GetSplitOp(N->getOperand(1), LL, LH);
460 Lo = DAG.getNode(N->getOpcode(), dl, LL.getValueType(), CL, LL, RL);
466 SDValue LL, LH, RL, RH;
468 GetSplitOp(N->getOperand(2), LL, LH);
471 Lo = DAG.getNode(ISD::SELECT_CC, dl, LL.getValueType(), N->getOperand(0),
472 N->getOperand(1), LL, RL, N->getOperand(4));
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeTypesGeneric.cpp 525 SDValue LL, LH, RL, RH, CL, CH;
527 GetSplitOp(N->getOperand(1), LL, LH);
541 Lo = DAG.getNode(N->getOpcode(), dl, LL.getValueType(), CL, LL, RL);
547 SDValue LL, LH, RL, RH;
549 GetSplitOp(N->getOperand(2), LL, LH);
552 Lo = DAG.getNode(ISD::SELECT_CC, dl, LL.getValueType(), N->getOperand(0),
553 N->getOperand(1), LL, RL, N->getOperand(4));
  /libcore/ojluni/src/main/native/
zip_util.h 68 #define LL(b, n) (((jlong)LG(b, n)) | (((jlong)LG(b, n+4)) << 32))
122 #define ZIP64_ENDLEN(b) LL(b, 4) /* size of zip64 end of central dir */
127 #define ZIP64_ENDTOD(b) LL(b, 24) /* total number of entries on this disk */
128 #define ZIP64_ENDTOT(b) LL(b, 32) /* total number of entries */
129 #define ZIP64_ENDSIZ(b) LL(b, 40) /* central directory size in bytes */
130 #define ZIP64_ENDOFF(b) LL(b, 48) /* offset of first CEN header */
136 #define ZIP64_LOCOFF(b) LL(b, 8) /* offset of zip64 end */
  /external/llvm/include/llvm/ADT/
ImmutableSet.h 499 TreeTy *LL = getLeft(L);
502 if (getHeight(LL) >= getHeight(LR))
503 return createNode(LL, L, createNode(LR,V,R));
510 return createNode(createNode(LL,L,LRL), LR, createNode(LRR,V,R));
    [all...]
  /external/opencv/ml/src/
mlboost.cpp 578 // LL - number of samples that both the primary and the surrogate splits send to the left
584 double LL = 0, RL = 0, LR, RR;
603 // now iteratively compute LL, LR, RL and RR for every possible surrogate split value.
612 LL += w; LR -= w;
613 if( LL + RR > best_val && sorted[i].val + epsilon < sorted[i+1].val )
615 best_val = LL + RR;
643 // LL - number of samples that both the primary and the surrogate splits send to the left
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
ImmutableSet.h 497 TreeTy *LL = getLeft(L);
500 if (getHeight(LL) >= getHeight(LR))
501 return createNode(LL, L, createNode(LR,V,R));
508 return createNode(createNode(LL,L,LRL), LR, createNode(LRR,V,R));
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Analysis/
ValueTracking.cpp 107 // If the object is defined in the current Module, we'll be giving
610 Value *LL = LU->getOperand(0);
613 if (LL == I)
616 L = LL;
    [all...]
  /external/valgrind/callgrind/
sim.c 94 static cache_t2 I1, D1, LL;
234 * Model: single inclusive, 2-level cache hierarchy (L1/LL)
319 if ( cachesim_ref( &LL, a, size) == Hit ) return LL_Hit;
327 if ( cachesim_ref( &LL, a, size) == Hit ) return LL_Hit;
337 * More complex model: L1 Write-through, LL Write-back
427 switch( cachesim_ref_wb( &LL, Read, a, size) ) {
439 switch( cachesim_ref_wb( &LL, Read, a, size) ) {
452 * the write to the LL to make the LL line dirty.
455 cachesim_ref_wb( &LL, Write, a, size)
    [all...]
  /frameworks/rs/rsov/driver/
rsovRuntimeStubs.cpp 1021 long2 ll = *c; local
1027 long3 ll = *c; local
1033 long4 ll = *c; local
1039 unsigned long long ll = l; local
1048 ulong2 ll = *c; local
1054 ulong3 ll = *c; local
1060 ulong4 ll = *c; local
1080 long2 ll = *(const long2 *)c; local
1086 long3 ll = *(const long3 *)c; local
1092 long4 ll = *(const long4 *)c; local
1098 ulong2 ll = *(const ulong2 *)c; local
1104 ulong3 ll = *(const ulong3 *)c; local
1110 ulong4 ll = *(const ulong4 *)c; local
    [all...]
  /external/llvm/lib/Target/XCore/
XCoreISelLowering.cpp 672 SDValue LL, RL, AddendL, AddendH;
673 LL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
689 AddendL, LL, RL);
697 AddendL, LL, RL);
708 AddendL, LL, RL);
710 RH = DAG.getNode(ISD::MUL, dl, MVT::i32, LL, RH);
    [all...]

Completed in 1071 milliseconds

1 2