| /external/llvm/examples/Kaleidoscope/MCJIT/cached/ |
| toy.cpp | 199 ExprAST *Start, *End, *Step, *Body; 201 ForExprAST(const std::string &varname, ExprAST *start, ExprAST *end, 203 : VarName(varname), Start(start), End(end), Step(step), Body(body) {} 385 ExprAST *Start = ParseExpression(); 386 if (Start == 0) return 0; 388 return Error("expected ',' after for start value"); 409 return new ForExprAST(IdName, Start, End, Step, Body); 647 // Start with what we have 918 // Set up the optimizer pipeline. Start with registering info about how th [all...] |
| /external/llvm/examples/Kaleidoscope/MCJIT/complete/ |
| toy.cpp | 218 ExprAST *Start, *End, *Step, *Body; 220 ForExprAST(const std::string &varname, ExprAST *start, ExprAST *end, 222 : VarName(varname), Start(start), End(end), Step(step), Body(body) {} 404 ExprAST *Start = ParseExpression(); 405 if (Start == 0) return 0; 407 return Error("expected ',' after for start value"); 428 return new ForExprAST(IdName, Start, End, Step, Body); 666 // Start with what we have 961 // Set up the optimizer pipeline. Start with registering info about how th [all...] |
| /external/llvm/examples/Kaleidoscope/MCJIT/initial/ |
| toy.cpp | 176 ExprAST *Start, *End, *Step, *Body; 178 ForExprAST(const std::string &varname, ExprAST *start, ExprAST *end, 180 : VarName(varname), Start(start), End(end), Step(step), Body(body) {} 362 ExprAST *Start = ParseExpression(); 363 if (Start == 0) return 0; 365 return Error("expected ',' after for start value"); 386 return new ForExprAST(IdName, Start, End, Step, Body); 624 // Start with what we have 791 // Set up the optimizer pipeline. Start with registering info about how th [all...] |
| /external/llvm/examples/Kaleidoscope/MCJIT/lazy/ |
| toy.cpp | 178 ExprAST *Start, *End, *Step, *Body; 180 ForExprAST(const std::string &varname, ExprAST *start, ExprAST *end, 182 : VarName(varname), Start(start), End(end), Step(step), Body(body) {} 364 ExprAST *Start = ParseExpression(); 365 if (Start == 0) return 0; 367 return Error("expected ',' after for start value"); 388 return new ForExprAST(IdName, Start, End, Step, Body); 626 // Start with what we have 821 // Set up the optimizer pipeline. Start with registering info about how th [all...] |
| /external/llvm/include/llvm/Analysis/ |
| BlockFrequencyInfoImpl.h | 572 BlockNode Start; 621 StartIrr = Lookup[Start.Index]; 702 /// the loop. Start by assigning full mass to the Loop header. For each [all...] |
| /external/llvm/include/llvm/TableGen/ |
| Record.h | [all...] |
| /external/llvm/lib/Analysis/ |
| LoopAccessAnalysis.cpp | 237 const SCEV *Start = RtCheck.Pointers[Index].Start; 243 const SCEV *Min0 = getMinFromExprs(Start, Low, RtCheck.SE); 252 if (Min0 == Start) 253 Low = Start; [all...] |
| ScalarEvolution.cpp | [all...] |
| ScalarEvolutionExpander.cpp | 276 // In an AddRec, check if both start and step are divisible. 284 const SCEV *Start = A->getStart(); 285 if (!FactorOutConstant(Start, Remainder, Factor, SE, DL)) 287 S = SE.getAddRecExpr(Start, Step, A->getLoop(), 323 /// SplitAddRecs - Flatten a list of add operands, moving addrec start values 335 const SCEV *Start = A->getStart(); 336 if (Start->isZero()) break; 342 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(Start)) { 347 Ops[i] = Start; [all...] |
| /external/llvm/lib/CodeGen/AsmPrinter/ |
| DwarfDebug.cpp | [all...] |
| /external/llvm/lib/Support/ |
| YAMLParser.cpp | 189 /// which could legally be the start of a simple key. When peekNext is called, 446 /// @brief Skip whitespace and comments until the start of the next token. 461 /// @brief Scan a [ or { and generate the proper flow collection start token. 545 /// @brief Are we at the start of the stream? 548 /// @brief Can the next token be the start of a simple key? 608 OS << "Stream-Start: "; 620 OS << "Document-Start: "; 632 OS << "Block-Sequence-Start: "; 635 OS << "Block-Mapping-Start: "; 641 OS << "Flow-Sequence-Start: " [all...] |
| /external/llvm/lib/Target/Hexagon/ |
| RDFGraph.cpp | 1060 NodeId Start = RA.Id; 1064 } while (RA.Id != 0 && RA.Id != Start); [all...] |
| /external/llvm/lib/Transforms/Scalar/ |
| IndVarSimplify.cpp | 332 // The start/stride/exit values must all fit in signed i32. [all...] |
| InductiveRangeCheckElimination.cpp | 519 // iteration space of the rewritten loop ends at ExitLoopAt. The start of the 553 // This function rewrites the PHI nodes in `LS.Header' to start with the 808 IndVarStartV->setName("indvar.start"); 841 const SCEV *Start = SE.getSCEV(MainLoopStructure.IndVarStart); 852 Smallest = Start; 858 // iteration except the last one, and it starts at `Start` and ends at 872 Greatest = SE.getAddExpr(Start, SE.getSCEV(One)); [all...] |
| LoopRerollPass.cpp | 396 UsesTy::iterator Start, [all...] |
| /external/mesa3d/src/gtest/src/ |
| gtest-internal-inl.h | 315 << "Invalid shuffle range start " << begin << ": must be in range [0, " 568 // Gets the time of the test program start, in ms from the start of the 797 // Gets the random seed used at the start of the current test iteration. [all...] |
| /external/mesa3d/src/mesa/tnl/ |
| t_context.h | 323 typedef void (*tnl_render_func)( struct gl_context *ctx, GLuint start, GLuint count, 330 GLuint start, GLuint end, 422 void (*Start)(struct gl_context *ctx); 478 * rendering. The vertices in question are those n such that start
|
| /external/spirv-llvm/lib/SPIRV/ |
| SPIRVUtil.cpp | 345 getArguments(CallInst* CI, unsigned Start, unsigned End) { 349 for (; Start != End; ++Start) { 350 Args.push_back(CI->getArgOperand(Start)); 375 const size_t Start = strlen(kSPIRVName::Prefix); 377 return S.substr(Start, End - Start); 388 const size_t Start = strlen(kSPIRVName::Prefix); 391 R = R.drop_front(Start); 518 size_t Start = Name.find_first_not_of("0123456789", DemangledNameLenStart) [all...] |
| /external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/ |
| DwarfDebug.cpp | 278 const MCSymbol *Start = getLabelBeforeInsn(RI->first); 283 assert(Start->isDefined() && "Invalid starting label for an inlined scope!"); 286 TheCU->addLabel(ScopeDIE, dwarf::DW_AT_low_pc, dwarf::DW_FORM_addr, Start); 317 assert (0 && "Unexpected Start and End labels for a inlined scope!"); 352 // Track the start label for this inlined function. [all...] |
| /external/swiftshader/third_party/LLVM/lib/CodeGen/ |
| LiveIntervalAnalysis.cpp | 158 SlotIndex idx = range.start.getBaseIndex(); 222 for (SlotIndex index = I->start.getBaseIndex(), 355 // live into some number of blocks, but gets killed. Start by adding a 382 // Finally, this virtual register is live from the start of any killing 386 SlotIndex Start = getMBBStartIdx(Kill->getParent()); 392 assert(getInstructionFromIndex(Start) == 0 && 394 ValNo = interval.getNextValue(Start, 0, VNInfoAllocator); 397 LiveRange LR(Start, killIdx, ValNo); 504 SlotIndex start = baseIndex.getDefIndex(); local 507 start = MIIdx.getUseIndex() 614 SlotIndex start = baseIndex; local 1435 SlotIndex start = I->start.getBaseIndex(); local [all...] |
| /external/swiftshader/third_party/LLVM/lib/MC/MCParser/ |
| AsmParser.cpp | 540 const char *Start = getTok().getLoc().getPointer(); 547 return StringRef(Start, End - Start); 949 // Statements always start with an identifier or are a full line comment. 963 return TokError("unexpected token at start of statement"); [all...] |
| /external/syslinux/efi32/include/efi/ |
| efipxebc.h | 400 EFI_PXE_BASE_CODE_START Start;
|
| /external/syslinux/efi64/include/efi/ |
| efipxebc.h | 400 EFI_PXE_BASE_CODE_START Start;
|
| /external/syslinux/gnu-efi/gnu-efi-3.0/inc/ |
| efipxebc.h | 400 EFI_PXE_BASE_CODE_START Start;
|
| /external/v8/src/base/platform/ |
| platform-win32.cc | 260 // Initialize timestamp to start of epoc. 307 // start time. To deal with rollovers, we resync the clock [all...] |