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

  /external/clang/lib/StaticAnalyzer/Core/
ExprEngineCXX.cpp 593 SVal InitVal;
597 InitVal = State->getSVal(InitExpr, LocCtxt);
603 InitVal = State->getSVal(SizeExpr, LocCtxt);
606 State = State->bindLoc(FieldLoc, InitVal);
ExprEngineC.cpp 504 SVal InitVal = state->getSVal(InitEx, LC);
519 InitVal.getAs<loc::MemRegionVal>()) {
520 InitVal = state->getSVal(M->getRegion());
521 assert(InitVal.getAs<nonloc::LazyCompoundVal>());
527 if (InitVal.isUnknown()) {
533 InitVal = svalBuilder.conjureSymbolVal(nullptr, InitEx, LC, Ty,
540 evalBind(Dst2, DS, UpdatedN, state->getLValue(VD, LC), InitVal, true);
    [all...]
ExprEngine.cpp 495 SVal InitVal;
505 InitVal = State->getSVal(*LValueLoc);
508 if (InitVal.isUnknownOrUndef()) {
510 InitVal = SVB.conjureSymbolVal(BMI->getInit(), stackFrame,
515 InitVal = State->getSVal(BMI->getInit(), stackFrame);
523 evalBind(Tmp, Init, Pred, FieldLoc, InitVal, /*isInit=*/true, &PP);
    [all...]
  /external/tensorflow/tensorflow/core/lib/gtl/
flatmap.h 331 void InitVal(uint32 i, V&& v) {
360 r.b->InitVal(r.index, std::forward<V>(v));
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/
toy.cpp 989 Value *InitVal;
991 InitVal = Init->codegen();
992 if (!InitVal)
995 InitVal = ConstantFP::get(TheContext, APFloat(0.0));
999 Builder.CreateStore(InitVal, Alloca);
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
toy.cpp 989 Value *InitVal;
991 InitVal = Init->codegen();
992 if (!InitVal)
995 InitVal = ConstantFP::get(TheContext, APFloat(0.0));
999 Builder.CreateStore(InitVal, Alloca);
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
toy.cpp 989 Value *InitVal;
991 InitVal = Init->codegen();
992 if (!InitVal)
995 InitVal = ConstantFP::get(TheContext, APFloat(0.0));
999 Builder.CreateStore(InitVal, Alloca);
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
toy.cpp 978 Value *InitVal;
980 InitVal = Init->codegen();
981 if (!InitVal)
984 InitVal = ConstantFP::get(TheContext, APFloat(0.0));
988 Builder.CreateStore(InitVal, Alloca);
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/
toy.cpp 1000 Value *InitVal;
1002 InitVal = Init->codegen();
1003 if (!InitVal)
1006 InitVal = ConstantFP::get(TheContext, APFloat(0.0));
1010 Builder.CreateStore(InitVal, Alloca);
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 990 Value *InitVal;
992 InitVal = Init->codegen();
993 if (!InitVal)
996 InitVal = ConstantFP::get(TheContext, APFloat(0.0));
1000 Builder.CreateStore(InitVal, Alloca);
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter8/
toy.cpp 985 Value *InitVal;
987 InitVal = Init->codegen();
988 if (!InitVal)
991 InitVal = ConstantFP::get(TheContext, APFloat(0.0));
995 Builder.CreateStore(InitVal, Alloca);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 900 Value *InitVal;
902 InitVal = Init->Codegen();
903 if (InitVal == 0) return 0;
905 InitVal = ConstantFP::get(TheContext, APFloat(0.0));
909 Builder.CreateStore(InitVal, Alloca);
    [all...]
toy.cpp     [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 882 Value *InitVal;
884 InitVal = Init->Codegen();
885 if (InitVal == 0) return 0;
887 InitVal = ConstantFP::get(TheContext, APFloat(0.0));
891 Builder.CreateStore(InitVal, Alloca);
    [all...]
toy.cpp     [all...]
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter7/
toy.cpp 875 Value *InitVal;
877 InitVal = Init->Codegen();
878 if (InitVal == 0) return 0;
880 InitVal = ConstantFP::get(getGlobalContext(), APFloat(0.0));
884 Builder.CreateStore(InitVal, Alloca);
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter9/
toy.cpp 1171 Value *InitVal
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp     [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 1122 Value *InitVal;
1124 InitVal = Init->Codegen();
1125 if (InitVal == 0) return 0
    [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
GlobalOpt.cpp     [all...]
  /external/llvm/lib/CodeGen/
MachinePipeliner.cpp     [all...]
  /external/clang/lib/Sema/
SemaDecl.cpp     [all...]

Completed in 408 milliseconds