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

1 2

  /external/clang/lib/CodeGen/
CGObjCRuntime.cpp 41 const ASTRecordLayout *RL;
43 RL = &CGM.getContext().getASTObjCImplementationLayout(ID);
45 RL = &CGM.getContext().getASTObjCInterfaceLayout(Container);
60 assert(Index < RL->getFieldCount() && "Ivar is not inside record layout!");
62 return RL->getFieldOffset(Index);
CGRecordLayoutBuilder.cpp 713 CGRecordLayout *RL =
717 RL->NonVirtualBases.swap(Builder.NonVirtualBases);
718 RL->CompleteObjectVirtualBases.swap(Builder.VirtualBases);
721 RL->FieldInfo.swap(Builder.Fields);
724 RL->BitFields.swap(Builder.BitFields);
732 RL->print(llvm::outs());
    [all...]
CGClass.cpp     [all...]
CGDebugInfo.cpp     [all...]
CGExprScalar.cpp     [all...]
CGOpenMPRuntime.cpp     [all...]
CGExpr.cpp     [all...]
CGObjCMac.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
PaddingChecker.cpp 79 const ASTRecordLayout &RL = ASTContext.getASTRecordLayout(RD);
80 assert(llvm::isPowerOf2_64(RL.getAlignment().getQuantity()));
82 CharUnits BaselinePad = calculateBaselinePad(RD, ASTContext, RL);
85 CharUnits OptimalPad = calculateOptimalPad(RD, ASTContext, RL);
168 const ASTRecordLayout &RL) {
170 CharUnits Offset = ASTContext.toCharUnitsFromBits(RL.getFieldOffset(0));
177 auto FieldOffsetBits = RL.getFieldOffset(FD->getFieldIndex());
182 PaddingSum += RL.getSize() - Offset;
204 const ASTRecordLayout &RL) {
234 CharUnits NewOffset = ASTContext.toCharUnitsFromBits(RL.getFieldOffset(0))
    [all...]
  /toolchain/binutils/binutils-2.25/include/opcode/
i960.h 86 * RL: global or local register, or integer literal
110 #define RL OP( 0, LIT, 0, 0 )
232 { 0x30000000, "bbc", I_BASE, COBR, 3, { RL, RS, 0 } },
233 { 0x31000000, "cmpobg", I_BASE, COBR, 3, { RL, RS, 0 } },
234 { 0x32000000, "cmpobe", I_BASE, COBR, 3, { RL, RS, 0 } },
235 { 0x33000000, "cmpobge", I_BASE, COBR, 3, { RL, RS, 0 } },
236 { 0x34000000, "cmpobl", I_BASE, COBR, 3, { RL, RS, 0 } },
237 { 0x35000000, "cmpobne", I_BASE, COBR, 3, { RL, RS, 0 } },
238 { 0x36000000, "cmpoble", I_BASE, COBR, 3, { RL, RS, 0 } },
239 { 0x37000000, "bbs", I_BASE, COBR, 3, { RL, RS, 0 } }
    [all...]
  /external/compiler-rt/test/tsan/
deadlock_detector_stress_test.cc 129 void RL(size_t i) {
284 RL(0); L(1); RU(0); U(1);
285 L(1); RL(0); RU(0); U(1);
290 RL(2); RL(3); RU(2); RU(3);
291 RL(3); RL(2); RU(2); RU(3);
374 RL(000);
375 RL(100);
376 RL(200)
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeTypesGeneric.cpp 525 SDValue LL, LH, RL, RH, CL, CH;
528 GetSplitOp(N->getOperand(2), RL, RH);
541 Lo = DAG.getNode(N->getOpcode(), dl, LL.getValueType(), CL, LL, RL);
547 SDValue LL, LH, RL, RH;
550 GetSplitOp(N->getOperand(3), RL, RH);
553 N->getOperand(1), LL, RL, N->getOperand(4));
LegalizeIntegerTypes.cpp     [all...]
LegalizeVectorTypes.cpp     [all...]
  /external/v8/tools/release/
test_scripts.py 279 def RL(text, cb=None):
479 RL("Y"),
491 RL("n"),
502 RL("Y"),
636 RL(""), # Open editor.
829 expectations.append(RL("")) # Open editor.
847 expectations.append(RL("Y")) # Sanity check.
    [all...]
  /frameworks/compile/slang/
slang_rs_export_type.cpp     [all...]
  /external/llvm/include/llvm/ADT/
ImmutableSet.h 516 TreeTy *RL = getLeft(R);
519 if (getHeight(RR) >= getHeight(RL))
520 return createNode(createNode(L,V,RL), R, RR);
522 assert(!isEmpty(RL) && "RL cannot be empty because it has a height >= 1");
524 TreeTy *RLL = getLeft(RL);
525 TreeTy *RLR = getRight(RL);
527 return createNode(createNode(L,V,RLL), RL, createNode(RLR,R,RR));
    [all...]
  /external/opencv/ml/src/
mlboost.cpp 580 // RL - ... primary split sends to the right and the surrogate split sends 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.
621 RL += w; RR -= w;
622 if( RL + LR > best_val && sorted[i].val + epsilon < sorted[i+1].val )
624 best_val = RL + LR;
645 // RL - ... primary split sends to the right and the surrogate split sends to the left
    [all...]
mltree.cpp     [all...]
  /external/opencv3/apps/traincascade/
old_ml_boost.cpp 668 // RL - ... primary split sends to the right and the surrogate split sends to the left
672 double LL = 0, RL = 0, LR, RR;
691 // now iteratively compute LL, LR, RL and RR for every possible surrogate split value.
709 RL += w; RR -= w;
710 if( RL + LR > best_val && values[i] + epsilon < values[i+1] )
712 best_val = RL + LR;
742 // RL - ... primary split sends to the right and the surrogate split sends to the left
    [all...]
old_ml_tree.cpp     [all...]
  /external/llvm/lib/Target/XCore/
XCoreISelLowering.cpp 676 SDValue LL, RL, AddendL, AddendH;
679 RL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
693 AddendL, LL, RL);
701 AddendL, LL, RL);
712 AddendL, LL, RL);
715 LH = DAG.getNode(ISD::MUL, dl, MVT::i32, LH, RL);
    [all...]
  /external/clang/lib/AST/
ASTContext.cpp     [all...]
ExprConstant.cpp     [all...]
  /external/clang/lib/Sema/
SemaExpr.cpp     [all...]

Completed in 1785 milliseconds

1 2