| /src/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/ |
| ManagedStringPool.h | 32 SmallVectorImpl<std::string *>::iterator Current = Pool.begin(); 33 while (Current != Pool.end()) { 34 delete *Current; 35 ++Current;
|
| /src/external/apache2/llvm/dist/llvm/utils/TableGen/GlobalISel/ |
| CodeExpander.cpp | 22 StringRef Current = Code; 24 while (!Current.empty()) { 25 size_t Pos = Current.find_first_of("$\n\\"); 27 OS << Current; 28 Current = ""; 32 OS << Current.substr(0, Pos); 33 Current = Current.substr(Pos); 35 if (Current.startswith("\n")) { 37 Current = Current.drop_front(1) [all...] |
| /src/sys/external/bsd/acpica/dist/common/ |
| dmswitch.c | 88 ACPI_PARSE_OBJECT_LIST *Current; 111 Current = AcpiGbl_TempListHead; 114 AcpiGbl_TempListHead->Next = Current; 136 Previous = Current = AcpiGbl_TempListHead; 137 while (Current) 141 if (!strncmp(Temp, (char *) (&Current->Op->Named.Name), 4)) 145 Current->Op->Common.DisasmFlags |= ACPI_PARSEOP_IGNORE; 149 if (Current == AcpiGbl_TempListHead) 151 AcpiGbl_TempListHead = Current->Next; 155 Previous->Next = Current->Next [all...] |
| acfileio.c | 85 ACPI_NEW_TABLE_DESC *Current = ListHead; 86 ACPI_NEW_TABLE_DESC *Previous = Current; 89 while (Current) 91 Current = Current->Next; 93 Previous = Current; 412 * Note: Maintains current file position. 461 * Note: Maintains current file position.
|
| /src/sys/external/bsd/acpica/dist/compiler/ |
| cvdisasm.c | 82 ACPI_COMMENT_NODE *Current = CommentList; 86 while (Current) 88 Previous = Current; 89 if (Current->Comment) 92 AcpiOsPrintf("%s\n", Current->Comment); 93 Current->Comment = NULL; 96 Current = Current->Next; 404 ACPI_FILE_NODE *Current; 424 Current = FNode [all...] |
| aslcodegen.c | 205 * PARAMETERS: Op - Current parse op 437 ACPI_COMMENT_NODE *Current; 530 Current = Op->Asl.CommentList; 531 while (Current) 533 CommentLength = strlen (Current->Comment)+3; 535 CvDbgPrint (" Comment string: %s\n\n", Current->Comment); 538 Current = Current->Next;
|
| aslfiles.c | 147 ASL_GLOBAL_FILE_NODE *Current = AslGbl_FilesList; 150 while (Current) 152 if (!strcmp (Filename, Current->Files[ASL_FILE_INPUT].Filename)) 157 Current = Current->Next; 172 * DESCRIPTION: Set the current line number 180 ASL_GLOBAL_FILE_NODE *Current = AslGbl_FilesList; 181 char *PrevFilename = Current->Files[ASL_FILE_INPUT].Filename; 184 while (Current) 186 if (!strcmp(Current->Files[ASL_FILE_INPUT].Filename, InputFilename) [all...] |
| cvcompiler.c | 55 * PARAMETERS: CurrentState Current comment parse state 57 * c1 Current input 183 * PARAMETERS: CurrentState Current comment parse state 287 ACPI_COMMENT_NODE *Current = NULL; 311 Current = Op->Asl.CommentList; 312 while (Current) 314 CommentLength = strlen (Current->Comment)+3; 316 CvDbgPrint (" Comment string: %s\n\n", Current->Comment); 318 Current = Current->Next [all...] |
| cvparser.c | 170 /* Set the root file to the current open file */ 267 ACPI_COMMENT_ADDR_NODE *Current = AcpiGbl_CommentAddrListHead; 288 if (!Current) 298 while (Current) 300 if (Current->Addr != Address) 302 Current = Current->Next; 315 Current = AcpiGbl_CommentAddrListHead; 320 AcpiGbl_CommentAddrListHead->Next = Current; 344 ACPI_FILE_NODE *Current = Head [all...] |
| aslerror.c | 701 * Column - Column in current line 774 * case, get the current file node. The source output of the current 796 * Column - Column in current line 831 * Column - Column in current line 874 * Column - Column in current line 1021 ASL_EXPECTED_MSG_NODE *Current = AslGbl_ExpectedErrorCodeList; 1034 while (Current) 1036 LocationNode = Current->LocationList; 1045 LocationNode->Filename, Current->MessageIdStr) [all...] |
| aslutils.c | 385 * DESCRIPTION: Saves the current time with this event 400 /* Init event with current (start) time */ 417 * DESCRIPTION: Saves the current time (end time) with this event 707 ASL_GLOBAL_FILE_NODE *Current = AslGbl_FilesList; 710 while (Current) 712 switch (FlSwitchFileSet(Current->Files[ASL_FILE_INPUT].Filename)) 718 Current = Current->Next; 724 Current = NULL;
|
| /src/external/apache2/llvm/dist/clang/include/clang/AST/ |
| CurrentSourceLocExprScope.h | 10 // This file defines types used to track the current context needed to evaluate 23 /// Represents the current source location and context used to determine the 31 /// A RAII style scope guard used for tracking the current source 52 CurrentSourceLocExprScope &Current) 53 : Current(Current), OldVal(Current), Enable(false) { 55 if ((Enable = (Current.getDefaultExpr() == nullptr))) 56 Current = CurrentSourceLocExprScope(DefaultExpr); 61 Current = OldVal [all...] |
| /src/external/apache2/llvm/dist/clang/lib/AST/Interp/ |
| InterpState.h | 103 /// The current frame. 104 InterpFrame *Current = nullptr;
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/MCA/ |
| SourceMgr.h | 31 unsigned Current; 37 : Sequence(S), Current(0), Iterations(Iter ? Iter : DefaultIterations) {} 41 bool hasNext() const { return Current < (Iterations * Sequence.size()); } 42 void updateNext() { ++Current; } 46 return SourceRef(Current, *Sequence[Current % Sequence.size()]);
|
| /src/external/apache2/llvm/dist/llvm/lib/MCA/Stages/ |
| RetireStage.cpp | 33 const RetireControlUnit::RUToken &Current = RCU.getCurrentToken(); 34 if (!Current.Executed) 36 notifyInstructionRetired(Current.IR);
|
| /src/sys/external/bsd/acpica/dist/tools/acpiexec/ |
| aetests.c | 526 ACPI_ADDRESS_RANGE *Current; 533 Current = AcpiGbl_AddressRangeList[i]; 535 while (Current) 539 Status = AcpiGetName (Current->RegionNode, ACPI_SINGLE_NAME, &ReturnBuffer); 543 Current = Current->Next;
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/BinaryFormat/ |
| MsgPackReader.h | 128 StringRef::iterator Current; 132 // The rest of the code maintains the invariant that End >= Current, so 134 return static_cast<size_t>(End - Current);
|
| /src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/ |
| WasmAsmParser.cpp | 237 auto *Current = 239 if (Current->getGroup())
|
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/ |
| SpeculativeExecution.cpp | 314 // We have to increment I before moving Current as moving Current 316 auto Current = I; 318 if (!NotHoisted.count(&*Current)) { 319 Current->moveBefore(ToBlock.getTerminator());
|
| /src/external/apache2/llvm/dist/llvm/tools/llvm-mca/Views/ |
| BottleneckAnalysis.cpp | 82 uint64_t Current = CumulativeMask & (-CumulativeMask); 83 unsigned ResIdx = getResourceStateIndex(Current); 87 if (Mask == Current) { 89 CumulativeMask ^= Current; 93 Mask ^= Current; 102 CumulativeMask ^= Current; 511 uint64_t Current = ResourceMask & (-ResourceMask); 512 Tracker.getResourceUsers(Current, Users); 514 addResourceDep(U.first % Source.size(), To, Current, U.second + Cycles); 516 ResourceMask ^= Current; [all...] |
| /src/sys/external/bsd/acpica/dist/parser/ |
| psargs.c | 74 * PARAMETERS: ParserState - Current parser state object 132 * PARAMETERS: ParserState - Current parser state object 164 * PARAMETERS: ParserState - Current parser state object 240 * PARAMETERS: ParserState - Current parser state object 287 * Lookup the name in the internal namespace, starting with the current 421 * PARAMETERS: ParserState - Current parser state object 523 * PARAMETERS: ParserState - Current parser state object 787 ACPI_PARSE_OBJECT *Current = Start; 791 while (Current) 793 Next = Current->Common.Next [all...] |
| /src/external/apache2/llvm/dist/clang/lib/Format/ |
| MacroExpander.cpp | 53 Current = Tokens[0]; 59 if (!Current->is(tok::identifier)) 61 Def.Name = Current->TokenText; 63 if (Current->is(tok::l_paren)) { 76 assert(Current->is(tok::l_paren)); 78 while (Current->is(tok::identifier)) { 79 Def.Params.push_back(Current); 82 if (Current->isNot(tok::comma)) 86 if (Current->isNot(tok::r_paren)) 93 if (!Current->isOneOf(tok::equal, tok::eof) [all...] |
| TokenAnnotator.h | 54 FormatToken *Current = First; 59 Current->Next = I->Tok; 60 I->Tok->Previous = Current; 61 Current = Current->Next; 62 Current->Children.clear(); 65 Current->Children.push_back(Children.back()); 68 Last = Current; 76 FormatToken *Current = First; 77 while (Current) { [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/Object/ |
| SymbolicFile.h | 68 content_type Current; 77 content_iterator(content_type symb) : Current(std::move(symb)) {} 79 const content_type *operator->() const { return &Current; } 81 const content_type &operator*() const { return Current; } 84 return Current == other.Current; 92 Current.moveNext();
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/X86/ |
| X86InsertPrefetch.cpp | 192 auto Current = MI; 195 int Offset = X86II::getMemoryOperandNo(Current->getDesc().TSFlags); 198 unsigned Bias = X86II::getOperandBias(Current->getDesc()); 201 if (!IsMemOpCompatibleWithPrefetch(*Current, MemOpOffset)) 204 if (!findPrefetchInfo(Samples, *Current, Prefetches)) 214 MF.CreateMachineInstr(Desc, Current->getDebugLoc(), true); 225 MIB.addReg(Current->getOperand(MemOpOffset + X86::AddrBaseReg).getReg()) 227 Current->getOperand(MemOpOffset + X86::AddrScaleAmt).getImm()) 229 Current->getOperand(MemOpOffset + X86::AddrIndexReg).getReg()) 230 .addImm(Current->getOperand(MemOpOffset + X86::AddrDisp).getImm() [all...] |