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

  /external/dropbear/libtomcrypt/testprof/
store_test.c 9 ulong64 LL, LL1;
32 LL = CONST64 (0x01020304050607);
34 STORE64L(LL, buf + y);
36 if (LL1 != LL) {
40 STORE64H(LL, buf + y);
42 if (LL1 != LL) {
  /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...]
  /external/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));
LegalizeIntegerTypes.cpp     [all...]
LegalizeVectorTypes.cpp 752 SDValue LL, LH, RL, RH;
755 LL = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, InNVT, N->getOperand(0),
765 Lo = DAG.getNode(N->getOpcode(), DL, LoVT, LL, RL, N->getOperand(2));
    [all...]
DAGCombiner.cpp     [all...]
  /external/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/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/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...]
mltree.cpp     [all...]
  /external/llvm/lib/Target/XCore/
XCoreISelLowering.cpp 659 SDValue LL, RL, AddendL, AddendH;
660 LL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
676 AddendL, LL, RL);
684 AddendL, LL, RL);
695 AddendL, LL, RL);
697 RH = DAG.getNode(ISD::MUL, dl, MVT::i32, LL, RH);
    [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/clang/lib/Serialization/
ASTReader.cpp 118 unsigned LL = 0, RL = 0;
120 LL += L[I].size();
125 if (LL != RL)
127 if (LL == 0 && RL == 0)
333 // If the macro doesn't conflict, then we'll just pick up the macro
    [all...]

Completed in 662 milliseconds