/frameworks/compile/slang/ |
D | slang_rs_foreach_lowering.cpp | 96 clang::CallExpr* CE, int* slot, bool* hasOptions) { in matchKernelLaunchCall() argument 97 const clang::Decl* D = CE->getCalleeDecl(); in matchKernelLaunchCall() 115 mCtxt->ReportError(CE->getExprLoc(), in matchKernelLaunchCall() 120 clang::Expr* arg0 = CE->getArg(0); in matchKernelLaunchCall() 133 mCtxt->ReportError(CE->getExprLoc(), in matchKernelLaunchCall() 221 void RSForEachLowering::VisitCallExpr(clang::CallExpr* CE) { in VisitCallExpr() argument 224 const clang::FunctionDecl* kernel = matchKernelLaunchCall(CE, &slot, &hasOptions); in VisitCallExpr() 231 const unsigned numArgsOrig = CE->getNumArgs(); in VisitCallExpr() 243 CE->getExprLoc(), in VisitCallExpr() 250 CE->setCallee(calleeNew); in VisitCallExpr() [all …]
|
D | slang_rs_check_ast.cpp | 248 void RSCheckAST::VisitCastExpr(clang::CastExpr *CE) { in VisitCastExpr() argument 249 if (CE->getCastKind() == clang::CK_BitCast) { in VisitCastExpr() 250 clang::QualType QT = CE->getType(); in VisitCastExpr() 253 if (llvm::isa<clang::ImplicitCastExpr>(CE)) { in VisitCastExpr() 254 Context->ReportError(CE->getExprLoc(), "invalid implicit vector cast"); in VisitCastExpr() 256 Context->ReportError(CE->getExprLoc(), "invalid vector cast"); in VisitCastExpr() 261 Visit(CE->getSubExpr()); in VisitCastExpr()
|
D | slang_rs_foreach_lowering.h | 44 void VisitCallExpr(clang::CallExpr *CE); 56 const clang::FunctionDecl* matchKernelLaunchCall(clang::CallExpr* CE,
|
D | slang_rs_check_ast.h | 62 void VisitCallExpr(clang::CallExpr *CE); 64 void VisitCastExpr(clang::CastExpr *CE);
|
D | slang_rs_object_ref_count.h | 281 void VisitCallExpr(clang::CallExpr *CE);
|
D | slang_rs_object_ref_count.cpp | 1539 void RSObjectRefCount::VisitCallExpr(clang::CallExpr* CE) { in VisitCallExpr() argument 1541 const clang::FunctionDecl* FD = CE->getDirectCallee(); in VisitCallExpr() 1550 const clang::Expr* Callee = CE->getCallee(); in VisitCallExpr() 1582 clang::SourceLocation Loc = CE->getSourceRange().getBegin(); in VisitCallExpr() 1597 TempVarDecl->setInit(CE); in VisitCallExpr() 1625 getCurrentScope()->ReplaceExpr(mCtx, CE, CastExpr); in VisitCallExpr()
|
/frameworks/rs/rsov/compiler/ |
D | GlobalMergePass.cpp | 155 } else if (ConstantExpr *CE = dyn_cast<ConstantExpr>(U)) { in ReplaceAllUsesWithNewInstructions() local 156 auto InstMaker([CE, V, &funcCreateAndInsert](Instruction *UserOfU) { in ReplaceAllUsesWithNewInstructions() 157 Instruction *Inst = CE->getAsInstruction(); in ReplaceAllUsesWithNewInstructions()
|
/frameworks/compile/slang/BitWriter_2_9/ |
D | BitcodeWriter.cpp | 938 } else if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) { in WriteConstants() local 939 switch (CE->getOpcode()) { in WriteConstants() 941 if (Instruction::isCast(CE->getOpcode())) { in WriteConstants() 943 Record.push_back(GetEncodedCastOpcode(CE->getOpcode())); in WriteConstants() 948 assert(CE->getNumOperands() == 2 && "Unknown constant expr!"); in WriteConstants() 950 Record.push_back(GetEncodedBinaryOpcode(CE->getOpcode())); in WriteConstants() 953 uint64_t Flags = GetOptimizationFlags(CE); in WriteConstants() 962 for (unsigned i = 0, e = CE->getNumOperands(); i != e; ++i) { in WriteConstants() 1006 Record.push_back(CE->getPredicate()); in WriteConstants()
|
/frameworks/compile/slang/BitWriter_3_2/ |
D | BitcodeWriter.cpp | 969 } else if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) { in WriteConstants() local 970 switch (CE->getOpcode()) { in WriteConstants() 972 if (Instruction::isCast(CE->getOpcode())) { in WriteConstants() 974 Record.push_back(GetEncodedCastOpcode(CE->getOpcode())); in WriteConstants() 979 assert(CE->getNumOperands() == 2 && "Unknown constant expr!"); in WriteConstants() 981 Record.push_back(GetEncodedBinaryOpcode(CE->getOpcode())); in WriteConstants() 984 uint64_t Flags = GetOptimizationFlags(CE); in WriteConstants() 993 for (unsigned i = 0, e = CE->getNumOperands(); i != e; ++i) { in WriteConstants() 1037 Record.push_back(CE->getPredicate()); in WriteConstants()
|
/frameworks/compile/slang/BitWriter_2_9_func/ |
D | BitcodeWriter.cpp | 936 } else if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) { in WriteConstants() local 937 switch (CE->getOpcode()) { in WriteConstants() 939 if (Instruction::isCast(CE->getOpcode())) { in WriteConstants() 941 Record.push_back(GetEncodedCastOpcode(CE->getOpcode())); in WriteConstants() 946 assert(CE->getNumOperands() == 2 && "Unknown constant expr!"); in WriteConstants() 948 Record.push_back(GetEncodedBinaryOpcode(CE->getOpcode())); in WriteConstants() 951 uint64_t Flags = GetOptimizationFlags(CE); in WriteConstants() 960 for (unsigned i = 0, e = CE->getNumOperands(); i != e; ++i) { in WriteConstants() 1004 Record.push_back(CE->getPredicate()); in WriteConstants()
|
/frameworks/compile/libbcc/bcinfo/BitReader_2_7/ |
D | BitcodeReader.cpp | 1558 auto &CE = cast<ConstantExpr>(C); in getGlobalObjectInExpr() local 1559 assert(CE.getOpcode() == Instruction::BitCast || in getGlobalObjectInExpr() 1560 CE.getOpcode() == Instruction::GetElementPtr || in getGlobalObjectInExpr() 1561 CE.getOpcode() == Instruction::AddrSpaceCast); in getGlobalObjectInExpr() 1562 if (CE.getOpcode() == Instruction::GetElementPtr) in getGlobalObjectInExpr() 1563 assert(cast<GEPOperator>(CE).hasAllZeroIndices()); in getGlobalObjectInExpr() 1564 return getGlobalObjectInExpr(Map, *CE.getOperand(0)); in getGlobalObjectInExpr()
|
/frameworks/compile/libbcc/bcinfo/BitReader_3_0/ |
D | BitcodeReader.cpp | 1851 auto &CE = cast<ConstantExpr>(C); in getGlobalObjectInExpr() local 1852 assert(CE.getOpcode() == Instruction::BitCast || in getGlobalObjectInExpr() 1853 CE.getOpcode() == Instruction::GetElementPtr || in getGlobalObjectInExpr() 1854 CE.getOpcode() == Instruction::AddrSpaceCast); in getGlobalObjectInExpr() 1855 if (CE.getOpcode() == Instruction::GetElementPtr) in getGlobalObjectInExpr() 1856 assert(cast<GEPOperator>(CE).hasAllZeroIndices()); in getGlobalObjectInExpr() 1857 return getGlobalObjectInExpr(Map, *CE.getOperand(0)); in getGlobalObjectInExpr()
|
/frameworks/base/services/tests/servicestests/res/raw/ |
D | backup_telephony_no_password | 68 m=렁�.��{�j��^n(;A-}O�%�y@�l*����{:E�~��t9ŎP�|^�8g���p��$CE������Y|����r����y�
|
/frameworks/base/config/ |
D | hiddenapi-greylist-max-o.txt | 33698 Landroid/icu/util/CopticCalendar;->CE:I 117382 Ljava/util/GregorianCalendar;->CE:I
|
/frameworks/base/api/ |
D | current.txt | 68393 enum_constant public static final java.time.chrono.IsoEra CE;
|