HomeSort by relevance Sort by last modified time
    Searched defs:Start (Results 626 - 650 of 826) sorted by null

<<21222324252627282930>>

  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
Misc.py 86 elif status ==2 and line == 'START GROUP':
132 if re.match("^Start[' ']+Length[' ']+Name[' ']+Class", line):
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Efi/Protocol/PxeBaseCode/
PxeBaseCode.h 367 EFI_PXE_BASE_CODE_START Start;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/Common/
EfiCompress.c 1504 UINT16 Start[18];
1506 Start[1] = 0;
1508 Start[i + 1] = (UINT16)((Start[i] + mLenCnt[i]) << 1);
1511 Code[i] = Start[Len[i]]++;
TianoCompress.c 1662 UINT16 Start[18];
1664 Start[1] = 0;
1666 Start[Index + 1] = (UINT16) ((Start[Index] + mLenCnt[Index]) << 1);
1670 Code[Index] = Start[Len[Index]]++;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/StrGather/
StrGather.c 94 BOOLEAN NewDatabase; // to start from scratch
727 WCHAR *Start;
747 Start = Ptr = SourceFile->FileBufferPtr;
750 Warning (SourceFile->FileName, SourceFile->LineNum, 0, "carriage return found in quoted string", "%S", Start);
767 Start
786 *Ptr = *Start;
787 Start++;
808 WCHAR *Start;
823 Start = Ptr = SourceFile->FileBufferPtr;
829 Warning (SourceFile->FileName, SourceFile->LineNum, 0, "carriage return found in quoted string", "%S", Start);
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Include/Guid/
StatusCodeDataTypeId.h 618 /// with a start address and a length.
631 EFI_PHYSICAL_ADDRESS Start;
726 /// This structure defines extended data describing a call to a driver binding protocol start function.
728 /// This extended data records information about a Start() function call. Start() is a member of
749 /// The size of the RemainingDevicePath. It is zero if the Start() function is
751 /// that the Start() function of bus drivers can be called in this way.
755 /// Matches the RemainingDevicePath parameter being passed to the Start() function.
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDebug1CommandsLib/
Compress.c 754 UINT16 Start[18];
756 Start[1] = 0;
758 Start[LoopVar1 + 1] = (UINT16) ((Start[LoopVar1] + mLenCnt[LoopVar1]) << 1);
762 Code[LoopVar1] = Start[Len[LoopVar1]]++;
1156 Start the huffman encoding.
  /device/linaro/bootloader/edk2/SourceLevelDebugPkg/Include/
TransferProtocol.h 362 UINT64 Start;
  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
PathDiagnostic.h 310 PathDiagnosticLocation Start, End;
312 PathDiagnosticLocationPair(const PathDiagnosticLocation &start,
314 : Start(start), End(end) {}
316 const PathDiagnosticLocation &getStart() const { return Start; }
319 void setStart(const PathDiagnosticLocation &L) { Start = L; }
323 Start.flatten();
328 Start.Profile(ID);
  /external/clang/lib/CodeGen/
CoverageMappingGen.cpp 61 assert(LocStart && "Region has no start location");
107 /// \brief Return the start location of an included file or expanded macro.
143 /// \brief Get the start of \c S ignoring macro arguments and builtin macros.
277 assert(LineStart <= LineEnd && "region start and end out of order");
325 SourceLocation Start = getStart(Body);
327 if (!SM.isWrittenInSameFile(Start, End)) {
330 FileID StartFileID = SM.getFileID(Start);
333 Start = getIncludeOrExpansionLoc(Start);
334 assert(Start.isValid() &
    [all...]
  /external/clang/lib/Format/
TokenAnnotator.cpp 125 // (^ can start a block type.
303 // ')' or ']'), it could be the start of an Objective-C method
304 // expression, or it could the start of an Objective-C array literal.
606 // Lines can start with '}'.
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/
toy.cpp 214 std::unique_ptr<ExprAST> Start, End, Step, Body;
217 ForExprAST(const std::string &VarName, std::unique_ptr<ExprAST> Start,
220 : VarName(VarName), Start(std::move(Start)), End(std::move(End)),
418 auto Start = ParseExpression();
419 if (!Start)
422 return LogError("expected ',' after for start value");
446 return llvm::make_unique<ForExprAST>(IdName, std::move(Start), std::move(End),
877 // start = startexpr
878 // store start -> va
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
toy.cpp 214 std::unique_ptr<ExprAST> Start, End, Step, Body;
217 ForExprAST(const std::string &VarName, std::unique_ptr<ExprAST> Start,
220 : VarName(VarName), Start(std::move(Start)), End(std::move(End)),
418 auto Start = ParseExpression();
419 if (!Start)
422 return LogError("expected ',' after for start value");
446 return llvm::make_unique<ForExprAST>(IdName, std::move(Start), std::move(End),
877 // start = startexpr
878 // store start -> va
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
toy.cpp 214 std::unique_ptr<ExprAST> Start, End, Step, Body;
217 ForExprAST(const std::string &VarName, std::unique_ptr<ExprAST> Start,
220 : VarName(VarName), Start(std::move(Start)), End(std::move(End)),
418 auto Start = ParseExpression();
419 if (!Start)
422 return LogError("expected ',' after for start value");
446 return llvm::make_unique<ForExprAST>(IdName, std::move(Start), std::move(End),
877 // start = startexpr
878 // store start -> va
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
toy.cpp 215 std::unique_ptr<ExprAST> Start, End, Step, Body;
218 ForExprAST(const std::string &VarName, std::unique_ptr<ExprAST> Start,
221 : VarName(VarName), Start(std::move(Start)), End(std::move(End)),
406 auto Start = ParseExpression();
407 if (!Start)
410 return LogError("expected ',' after for start value");
434 return llvm::make_unique<ForExprAST>(IdName, std::move(Start), std::move(End),
866 // start = startexpr
867 // store start -> va
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/
toy.cpp 230 std::unique_ptr<ExprAST> Start, End, Step, Body;
233 ForExprAST(const std::string &VarName, std::unique_ptr<ExprAST> Start,
236 : VarName(VarName), Start(std::move(Start)), End(std::move(End)),
421 auto Start = ParseExpression();
422 if (!Start)
425 return LogError("expected ',' after for start value");
449 return llvm::make_unique<ForExprAST>(IdName, std::move(Start), std::move(End),
888 // start = startexpr
889 // store start -> va
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 207 std::unique_ptr<ExprAST> Start, End, Step, Body;
210 ForExprAST(const std::string &VarName, std::unique_ptr<ExprAST> Start,
213 : VarName(VarName), Start(std::move(Start)), End(std::move(End)),
398 auto Start = ParseExpression();
399 if (!Start)
402 return LogError("expected ',' after for start value");
426 return llvm::make_unique<ForExprAST>(IdName, std::move(Start), std::move(End),
772 // start = startexpr
775 // variable = phi [start, loopheader], [nextvariable, loopend
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 214 std::unique_ptr<ExprAST> Start, End, Step, Body;
217 ForExprAST(const std::string &VarName, std::unique_ptr<ExprAST> Start,
220 : VarName(VarName), Start(std::move(Start)), End(std::move(End)),
418 auto Start = ParseExpression();
419 if (!Start)
422 return LogError("expected ',' after for start value");
446 return llvm::make_unique<ForExprAST>(IdName, std::move(Start), std::move(End),
878 // start = startexpr
879 // store start -> va
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter8/
toy.cpp 211 std::unique_ptr<ExprAST> Start, End, Step, Body;
214 ForExprAST(const std::string &VarName, std::unique_ptr<ExprAST> Start,
217 : VarName(VarName), Start(std::move(Start)), End(std::move(End)),
415 auto Start = ParseExpression();
416 if (!Start)
419 return LogError("expected ',' after for start value");
443 return llvm::make_unique<ForExprAST>(IdName, std::move(Start), std::move(End),
873 // start = startexpr
874 // store start -> va
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 192 ExprAST *Start, *End, *Step, *Body;
194 ForExprAST(const std::string &varname, ExprAST *start, ExprAST *end,
196 : VarName(varname), Start(start), End(end), Step(step), Body(body) {}
378 ExprAST *Start = ParseExpression();
379 if (Start == 0) return 0;
381 return Error("expected ',' after for start value");
402 return new ForExprAST(IdName, Start, End, Step, Body);
790 // start = startexpr
791 // store start -> va
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 177 ExprAST *Start, *End, *Step, *Body;
179 ForExprAST(const std::string &varname, ExprAST *start, ExprAST *end,
181 : VarName(varname), Start(start), End(end), Step(step), Body(body) {}
363 ExprAST *Start = ParseExpression();
364 if (Start == 0) return 0;
366 return Error("expected ',' after for start value");
387 return new ForExprAST(IdName, Start, End, Step, Body);
772 // start = startexpr
773 // store start -> va
    [all...]
  /external/llvm/include/llvm/Analysis/
LoopAccessAnalysis.h 338 const SCEV *Start;
351 PointerInfo(Value *PointerValue, const SCEV *Start, const SCEV *End,
354 : PointerValue(PointerValue), Start(Start), End(End),
368 /// Insert a pointer and calculate the start and end SCEVs.
387 Low(RtCheck.Pointers[Index].Start) {
ScalarEvolution.h 94 /// its start value if the step is non-zero. Computing the same value on
602 const ExitNotTakenInfo *Start;
606 ExitNotTakenInfoIterator(const ExitNotTakenInfo *Start,
608 : Start(Start), Position(Position) {}
612 return *Start;
614 return Start->ExtraInfo->Exits[Position - 1];
619 return Start;
621 return &Start->ExtraInfo->Exits[Position - 1];
625 return Start == RHS.Start && Position == RHS.Position
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfUnit.cpp 400 The following function does just that. We start by getting
430 DW_OP_deref -- optional, if we start with a pointer
472 // Decode the original location, and use that as the start of the byref
576 int Start = (LittleEndian ? 0 : NumBytes - 1);
580 for (; Start != Stop; Start += Incr)
581 addUInt(*Block, dwarf::DW_FORM_data1, (unsigned char)0xFF & FltPtr[Start]);
    [all...]
  /external/llvm/lib/CodeGen/
LiveDebugVariables.cpp 217 if (!I.valid() || I.start() != Idx)
406 OS << " [" << I.start() << ';' << I.stop() << "):";
546 SlotIndex Start = Idx;
547 MachineBasicBlock *MBB = LIS.getMBBFromIndex(Start);
549 LocMap::iterator I = locInts.find(Start);
554 LiveInterval::Segment *Segment = LR->getSegmentContaining(Start);
557 Kills->push_back(Start);
566 // There could already be a short def at Start.
567 if (I.valid() && I.start() <= Start) {
    [all...]

Completed in 2756 milliseconds

<<21222324252627282930>>