Searched defs:DL (Results 1 - 25 of 412) sorted by path

1234567891011>>

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DASN1Encoding.java14 * DL - definite length encoding.
16 static final String DL = "DL"; field in interface:ASN1Encoding
/external/clang/include/clang/AST/
H A DStmt.h753 DefaultStmt(SourceLocation DL, SourceLocation CL, Stmt *substmt) : argument
754 SwitchCase(DefaultStmtClass, DL, CL), SubStmt(substmt) {}
1110 DoStmt(Stmt *body, Expr *cond, SourceLocation DL, SourceLocation WL, argument
1112 : Stmt(DoStmtClass), DoLoc(DL), WhileLoc(WL), RParenLoc(RP) {
/external/clang/include/clang/Basic/
H A DTargetInfo.h101 void resetDataLayout(StringRef DL) { argument
102 DataLayout.reset(new llvm::DataLayout(DL));
/external/clang/lib/CodeGen/
H A DBackendUtil.cpp305 llvm::SymbolRewriter::RewriteDescriptorList DL; local
309 MapParser.parse(MapFile, &DL);
311 MPM->add(createRewriteSymbolsPass(DL));
H A DCGCUDABuiltin.cpp77 const llvm::DataLayout &DL = CGM.getDataLayout(); local
108 Builder.CreateAlignedStore(Arg, P, DL.getPrefTypeAlignment(Arg->getType()));
H A DCGCall.cpp1106 const llvm::DataLayout &DL = CGF.CGM.getDataLayout(); local
1107 if (DL.isBigEndian()) {
1110 uint64_t SrcSize = DL.getTypeSizeInBits(Val->getType());
1111 uint64_t DstSize = DL.getTypeSizeInBits(DestIntTy);
H A DCGDebugInfo.cpp3323 auto DL = llvm::DebugLoc::get(Line, Column, LexicalBlockStack.back()); local
3325 DBuilder.insertDeclare(Storage, D, DBuilder.createExpression(addr), DL,
3328 DBuilder.insertDeclare(Storage, D, DBuilder.createExpression(addr), DL,
H A DCGDecl.cpp1185 auto DL = ApplyDebugLocation::CreateDefaultArtificial(*this, D.getLocation()); local
H A DCGException.cpp751 auto DL = ApplyDebugLocation::CreateDefaultArtificial(*this, CurEHLocation); local
H A DCGOpenMPRuntimeNVPTX.cpp117 auto DL = CGM.getDataLayout(); local
123 ActiveWorkers->setAlignment(DL.getPrefTypeAlignment(CGM.Int32Ty));
130 WorkID->setAlignment(DL.getPrefTypeAlignment(CGM.Int64Ty));
H A DCGStmt.cpp811 llvm::DebugLoc DL = Builder.getCurrentDebugLocation(); local
824 LoopStack.push(CondBlock, CGM.getContext(), ForAttrs, DL);
909 llvm::DebugLoc DL = Builder.getCurrentDebugLocation(); local
922 LoopStack.push(CondBlock, CGM.getContext(), ForAttrs, DL);
/external/clang/lib/Frontend/
H A DVerifyDiagnosticConsumer.cpp327 DirectiveList *DL = nullptr; local
329 DL = ED ? &ED->Errors : nullptr;
331 DL = ED ? &ED->Warnings : nullptr;
333 DL = ED ? &ED->Remarks : nullptr;
335 DL = ED ? &ED->Notes : nullptr;
356 if (!DL)
506 DL->push_back(std::move(D));
644 std::vector<Directive *> &DL, const char *Kind) {
645 if (DL.empty())
650 for (auto *DirPtr : DL) {
642 PrintExpected(DiagnosticsEngine &Diags, SourceManager &SourceMgr, std::vector<Directive *> &DL, const char *Kind) argument
[all...]
/external/clang/lib/Index/
H A DCodegenNameGenerator.cpp30 llvm::DataLayout DL; member in struct:CodegenNameGenerator::Implementation
34 DL(Ctx.getTargetInfo().getDataLayout()) {}
58 llvm::Mangler::getNameWithPrefix(OS, FrontendBufOS.str(), DL);
158 llvm::Mangler::getNameWithPrefix(BOS, FOS.str(), DL);
172 llvm::Mangler::getNameWithPrefix(BOS, FOS.str(), DL);
/external/clang/lib/Sema/
H A DSemaExpr.cpp9078 ValueDecl *DL = getCompareDecl(LHSStripped); local
9080 if (DL && DR && DL == DR && !IsWithinTemplateSpecialization(DL)) {
9086 } else if (DL && DR && LHSType->isArrayType() && RHSType->isArrayType() &&
9087 !DL->getType()->isReferenceType() &&
/external/clang/lib/StaticAnalyzer/Checkers/
H A DBasicObjCFoundationChecks.cpp130 void checkPostStmt(const ObjCDictionaryLiteral *DL,
328 void NilArgChecker::checkPostStmt(const ObjCDictionaryLiteral *DL, argument
330 unsigned NumOfElements = DL->getNumElements();
332 ObjCDictionaryElement Element = DL->getKeyValueElement(i);
H A DRetainCountChecker.cpp2617 void checkPostStmt(const ObjCDictionaryLiteral *DL, CheckerContext &C) const;
2815 void RetainCountChecker::checkPostStmt(const ObjCDictionaryLiteral *DL, argument
2818 processObjCLiterals(C, DL);
H A DUnreachableCodeChecker.cpp147 PathDiagnosticLocation DL; local
151 DL = PathDiagnosticLocation::createBegin(S, B.getSourceManager(), LC);
152 SL = DL.asLocation();
165 "This statement is never executed", DL, SR);
/external/llvm/bindings/ocaml/target/
H A Dtarget_ocaml.c69 CAMLprim value llvm_datalayout_byte_order(value DL) { argument
70 return Val_int(LLVMByteOrder(DataLayout_val(DL)));
74 CAMLprim value llvm_datalayout_pointer_size(value DL) { argument
75 return Val_int(LLVMPointerSize(DataLayout_val(DL)));
79 CAMLprim LLVMTypeRef llvm_datalayout_intptr_type(LLVMContextRef C, value DL) { argument
80 return LLVMIntPtrTypeInContext(C, DataLayout_val(DL));;
84 CAMLprim value llvm_datalayout_qualified_pointer_size(value AS, value DL) { argument
85 return Val_int(LLVMPointerSizeForAS(DataLayout_val(DL), Int_val(AS)));
91 value DL) {
92 return LLVMIntPtrTypeForASInContext(C, DataLayout_val(DL), Int_va
89 llvm_datalayout_qualified_intptr_type(LLVMContextRef C, value AS, value DL) argument
96 llvm_datalayout_size_in_bits(LLVMTypeRef Ty, value DL) argument
101 llvm_datalayout_store_size(LLVMTypeRef Ty, value DL) argument
106 llvm_datalayout_abi_size(LLVMTypeRef Ty, value DL) argument
111 llvm_datalayout_abi_align(LLVMTypeRef Ty, value DL) argument
116 llvm_datalayout_stack_align(LLVMTypeRef Ty, value DL) argument
121 llvm_datalayout_preferred_align(LLVMTypeRef Ty, value DL) argument
126 llvm_datalayout_preferred_align_of_global(LLVMValueRef GlobalVar, value DL) argument
132 llvm_datalayout_element_at_offset(LLVMTypeRef Ty, value Offset, value DL) argument
139 llvm_datalayout_offset_of_element(LLVMTypeRef Ty, value Index, value DL) argument
[all...]
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/
H A DKaleidoscopeJIT.h42 const DataLayout DL; member in class:llvm::orc::KaleidoscopeJIT
50 : TM(EngineBuilder().selectTarget()), DL(TM->createDataLayout()),
89 Mangler::getNameWithPrefix(MangledNameStream, Name, DL);
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
H A DKaleidoscopeJIT.h43 const DataLayout DL; member in class:llvm::orc::KaleidoscopeJIT
56 : TM(EngineBuilder().selectTarget()), DL(TM->createDataLayout()),
99 Mangler::getNameWithPrefix(MangledNameStream, Name, DL);
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
H A DKaleidoscopeJIT.h44 const DataLayout DL; member in class:llvm::orc::KaleidoscopeJIT
59 : TM(EngineBuilder().selectTarget()), DL(TM->createDataLayout()),
109 Mangler::getNameWithPrefix(MangledNameStream, Name, DL);
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
H A DKaleidoscopeJIT.h68 const DataLayout DL; member in class:llvm::orc::KaleidoscopeJIT
84 DL(TM->createDataLayout()),
203 Mangler::getNameWithPrefix(MangledNameStream, Name, DL);
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/
H A DKaleidoscopeJIT.h74 const DataLayout DL; member in class:llvm::orc::KaleidoscopeJIT
91 DL(TM->createDataLayout()),
235 Mangler::getNameWithPrefix(MangledNameStream, Name, DL);
/external/llvm/examples/Kaleidoscope/include/
H A DKaleidoscopeJIT.h49 : TM(EngineBuilder().selectTarget()), DL(TM->createDataLayout()),
90 Mangler::getNameWithPrefix(MangledNameStream, Name, DL);
117 const DataLayout DL; member in class:llvm::orc::KaleidoscopeJIT
/external/llvm/include/llvm/Analysis/
H A DBasicAliasAnalysis.h42 const DataLayout &DL; member in class:llvm::BasicAAResult
49 BasicAAResult(const DataLayout &DL, const TargetLibraryInfo &TLI, argument
52 : AAResultBase(), DL(DL), TLI(TLI), AC(AC), DT(DT), LI(LI) {}
55 : AAResultBase(Arg), DL(Arg.DL), TLI(Arg.TLI), AC(Arg.AC), DT(Arg.DT),
58 : AAResultBase(std::move(Arg)), DL(Arg.DL), TLI(Arg.TLI), AC(Arg.AC),
153 const DataLayout &DL, unsigned Depth, AssumptionCache *AC,
157 const DataLayout &DL, AssumptionCach
[all...]

Completed in 582 milliseconds

1234567891011>>