HomeSort by relevance Sort by last modified time
    Searched refs:InitVal (Results 1 - 25 of 61) sorted by null

1 2 3

  /external/swiftshader/third_party/LLVM/lib/VMCore/
Globals.cpp 84 Constant *InitVal, const Twine &Name,
89 InitVal != 0, Link, Name),
91 if (InitVal) {
92 assert(InitVal->getType() == Ty &&
94 Op<0>() = InitVal;
101 LinkageTypes Link, Constant *InitVal,
108 InitVal != 0, Link, Name),
110 if (InitVal) {
111 assert(InitVal->getType() == Ty &&
113 Op<0>() = InitVal;
    [all...]
  /external/llvm/lib/IR/
Globals.cpp 221 Constant *InitVal, const Twine &Name,
226 InitVal != nullptr, Link, Name, AddressSpace),
230 if (InitVal) {
231 assert(InitVal->getType() == Ty &&
233 Op<0>() = InitVal;
238 LinkageTypes Link, Constant *InitVal,
244 InitVal != nullptr, Link, Name, AddressSpace),
248 if (InitVal) {
249 assert(InitVal->getType() == Ty &&
251 Op<0>() = InitVal;
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
Globals.cpp 307 Constant *InitVal, const Twine &Name,
312 InitVal != nullptr, Link, Name, AddressSpace),
318 if (InitVal) {
319 assert(InitVal->getType() == Ty &&
321 Op<0>() = InitVal;
326 LinkageTypes Link, Constant *InitVal,
332 InitVal != nullptr, Link, Name, AddressSpace),
338 if (InitVal) {
339 assert(InitVal->getType() == Ty &&
341 Op<0>() = InitVal;
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
StringMap.h 36 static void Initialize(StringMapEntry<ValueTy> &T, InitTy InitVal) {
37 T.second = InitVal;
150 InitType InitVal) {
173 StringMapEntryInitializer<ValueTy>::Initialize(*NewItem, InitVal);
187 InitType InitVal) {
189 return Create(KeyStart, KeyEnd, A, InitVal);
  /external/capstone/
MCRegisterInfo.c 53 static void DiffListIterator_init(DiffListIterator *d, MCPhysReg InitVal, MCPhysReg *DiffList)
55 d->Val = InitVal;
  /external/llvm/include/llvm/IR/
GlobalVariable.h 132 /// any existing initializer if InitVal==NULL. If this GV has type T*, the
134 void setInitializer(Constant *InitVal);
  /external/swiftshader/third_party/LLVM/include/llvm/
GlobalVariable.h 126 /// any existing initializer if InitVal==NULL. If this GV has type T*, the
128 void setInitializer(Constant *InitVal);
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/PBQP/
Math.h 35 Vector(unsigned Length, PBQPNum InitVal)
37 std::fill(Data.get(), Data.get() + Length, InitVal);
134 Matrix(unsigned Rows, unsigned Cols, PBQPNum InitVal)
137 std::fill(Data.get(), Data.get() + (Rows * Cols), InitVal);
  /external/llvm/include/llvm/CodeGen/PBQP/
Math.h 36 Vector(unsigned Length, PBQPNum InitVal)
40 // << InitVal << ")\n";
41 std::fill(Data, Data + Length, InitVal);
175 Matrix(unsigned Rows, unsigned Cols, PBQPNum InitVal)
177 std::fill(Data, Data + (Rows * Cols), InitVal);
  /external/swiftshader/third_party/LLVM/unittests/ADT/
StringMapTest.cpp 178 static void Initialize(StringMapEntry<uint32_t> &T, InitTy InitVal) {
179 T.second = InitVal;
  /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...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
GlobalVariable.h 146 /// any existing initializer if InitVal==NULL. If this GV has type T*, the
148 void setInitializer(Constant *InitVal);
  /external/llvm/include/llvm/MC/
MCRegisterInfo.h 200 /// init - Point the iterator to InitVal, decoding subsequent values from
201 /// DiffList. The iterator will initially point to InitVal, sub-classes are
203 void init(MCPhysReg InitVal, const MCPhysReg *DiffList) {
204 Val = InitVal;
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/MC/
MCRegisterInfo.h 201 /// init - Point the iterator to InitVal, decoding subsequent values from
202 /// DiffList. The iterator will initially point to InitVal, sub-classes are
204 void init(MCPhysReg InitVal, const MCPhysReg *DiffList) {
205 Val = InitVal;
  /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...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 1122 Value *InitVal;
1124 InitVal = Init->Codegen();
1125 if (InitVal == 0) return 0
    [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...]

Completed in 1041 milliseconds

1 2 3