| /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
| sanitizer_procmaps_solaris.cc | 32 bool MemoryMappingLayout::Next(MemoryMappedSegment *segment) {
|
| sanitizer_procmaps_linux.cc | 33 bool MemoryMappingLayout::Next(MemoryMappedSegment *segment) {
|
| sanitizer_procmaps_bsd.cc | 101 bool MemoryMappingLayout::Next(MemoryMappedSegment *segment) {
|
| /src/sys/external/bsd/acpica/dist/parser/ |
| pswalk.c | 71 ACPI_PARSE_OBJECT *Next = NULL; 109 Next = AcpiPsGetArg (Op, 0); 110 if (Next) 114 Op = Next; 122 Next = Op->Common.Next; 134 if (Next) 136 Op = Next;
|
| pstree.c | 117 Arg = Arg->Common.Next; 182 while (PrevArg->Common.Next) 184 PrevArg = PrevArg->Common.Next; 186 PrevArg->Common.Next = Arg; 200 Arg = Arg->Common.Next; 216 * RETURN: Next Op found in the search. 218 * DESCRIPTION: Get next op in tree (walking the tree in depth-first order) 228 ACPI_PARSE_OBJECT *Next = NULL; 243 Next = AcpiPsGetArg (Op, 0); 244 if (Next) [all...] |
| /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/ |
| sanitizer_procmaps_linux.cpp | 32 bool MemoryMappingLayout::Next(MemoryMappedSegment *segment) {
|
| /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/ |
| sanitizer_procmaps_linux.cpp | 32 bool MemoryMappingLayout::Next(MemoryMappedSegment *segment) {
|
| sanitizer_procmaps_solaris.cpp | 33 bool MemoryMappingLayout::Next(MemoryMappedSegment *segment) {
|
| /src/sys/external/bsd/acpica/dist/compiler/ |
| aslcache.c | 89 Cache = UtLocalCalloc (sizeof (Cache->Next) + CacheSize); 93 Cache->Next = AslGbl_StringCacheList->Next; 94 AslGbl_StringCacheList->Next = Cache; 110 Cache = UtLocalCalloc (sizeof (Cache->Next) + CacheSize); 114 Cache->Next = AslGbl_StringCacheList; 157 Cache = UtLocalCalloc (sizeof (Cache->Next) + 162 Cache->Next = AslGbl_ParseOpCacheList; 201 Cache = UtLocalCalloc (sizeof (Cache->Next) + 206 Cache->Next = AslGbl_SubtableCacheList [all...] |
| asllookup.c | 121 ACPI_NAMESPACE_NODE *Next; 221 Next = Node->Parent; 222 while (Next) 224 if (Next->Type == ACPI_TYPE_METHOD) 232 Node->Name.Ascii, Next->Name.Ascii); 238 Next = Next->Parent; 300 NameOp = Op->Asl.Child->Asl.Next; 310 NameOp = NameOp->Asl.Next;
|
| prexpress.c | 62 * Next - "Next" buffer from GetNextToken 68 * If Next is NULL, there were no tokens found in the Buffer, 76 char *Next) 81 if (!Next) 114 char *Next; 119 Token = PrGetNextToken (AslGbl_ExpressionTokenBuffer, PR_EXPR_SEPARATORS, &Next); 137 DefineInfo, &Next); 161 Token = PrGetNextToken (NULL, PR_EXPR_SEPARATORS, &Next);
|
| /src/sys/external/bsd/acpica/dist/dispatcher/ |
| dsdebug.c | 137 ACPI_PARSE_OBJECT *Next; 212 Next = Op->Common.Next; 213 Op->Common.Next = NULL; 224 Op->Common.Next = Next; 239 NextWalkState = NextWalkState->Next;
|
| /src/sys/external/bsd/acpica/dist/utilities/ |
| utcache.c | 121 void *Next; 145 Next = ACPI_GET_DESCRIPTOR_PTR (Cache->ListHead); 148 Cache->ListHead = Next;
|
| utaddress.c | 108 RangeInfo->Next = AcpiGbl_AddressRangeList[SpaceId]; 165 AcpiGbl_AddressRangeList[SpaceId] = RangeInfo->Next; 169 Prev->Next = RangeInfo->Next; 183 RangeInfo = RangeInfo->Next; 271 RangeInfo = RangeInfo->Next; 295 ACPI_ADDRESS_RANGE *Next; 304 Next = AcpiGbl_AddressRangeList[i]; 306 while (Next) 308 RangeInfo = Next; [all...] |
| /src/external/apache2/llvm/dist/clang/lib/AST/Interp/ |
| InterpStack.cpp | 21 if (Chunk && Chunk->Next) 22 free(Chunk->Next); 33 if (Chunk && Chunk->Next) { 34 Chunk = Chunk->Next; 36 StackChunk *Next = new (malloc(ChunkSize)) StackChunk(Chunk); 38 Chunk->Next = Next; 39 Chunk = Next; 67 if (Chunk->Next) { 68 free(Chunk->Next); [all...] |
| InterpState.cpp | 31 InterpFrame *Next = Current->Caller; 33 Current = Next; 37 DeadBlock *Next = DeadBlocks->Next; 39 DeadBlocks = Next;
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/ |
| ExecutionDomainFix.h | 60 /// Pointer to the next DomainValue in a chain. When two DomainValues are 61 /// merged, Victim.Next is set to point to Victor, so old DomainValue 63 DomainValue *Next; 108 /// Clear this DomainValue and point to next which has all its data. 111 Next = nullptr;
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/ |
| TypeCollection.h | 35 Optional<TypeIndex> Next = getFirst(); 37 while (Next.hasValue()) { 38 TypeIndex N = *Next; 40 Next = getNext(N);
|
| /src/sys/external/bsd/acpica/dist/debugger/ |
| dbxface.c | 101 /* Go into the command loop and await next user command */ 167 * next AML instruction. 262 ACPI_PARSE_OBJECT *Next; 347 AcpiOsPrintf ("\nAML Debug: Next AML Opcode to execute:\n"); 351 * Display this op (and only this op - zero out the NEXT field 357 Next = Op->Common.Next; 358 Op->Common.Next = NULL; 393 Op->Common.Next = Next; [all...] |
| /src/sys/external/bsd/acpica/dist/executer/ |
| exmutex.c | 86 if (ObjDesc->Mutex.Next) 88 (ObjDesc->Mutex.Next)->Mutex.Prev = ObjDesc->Mutex.Prev; 93 (ObjDesc->Mutex.Prev)->Mutex.Next = ObjDesc->Mutex.Next; 106 Thread->AcquiredMutexList = ObjDesc->Mutex.Next; 137 ObjDesc->Mutex.Next = ListHead; 539 ACPI_OPERAND_OBJECT *Next = Thread->AcquiredMutexList; 548 while (Next) 550 ObjDesc = Next; 575 Next = ObjDesc->Mutex.Next [all...] |
| /src/sys/external/bsd/compiler_rt/dist/lib/xray/ |
| xray_log_interface.cc | 40 ModeImpl *Next; 73 for (ModeImpl *it = ModeImpls; it != &SentinelModeImpl; it = it->Next) { 78 NewModeImpl->Next = ModeImpls; 88 for (ModeImpl *it = ModeImpls; it != &SentinelModeImpl; it = it->Next) {
|
| /src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
| VarBypassDetector.cpp | 116 const Stmt *Next; 118 Next = SC->getSubStmt(); 120 Next = LS->getSubStmt(); 125 SubStmt = Next;
|
| /src/external/apache2/llvm/dist/clang/lib/Lex/ |
| MacroArgs.cpp | 92 MacroArgs *Next = ArgCache; 101 return Next; 193 // will not otherwise be popped until the next token is lexed. The problem is
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/ |
| ilist_base.h | 22 static void insertBeforeImpl(node_base_type &Next, node_base_type &N) { 23 node_base_type &Prev = *Next.getPrev(); 24 N.setNext(&Next); 27 Next.setPrev(&N); 32 node_base_type *Next = N.getNext(); 33 Next->setPrev(Prev); 34 Prev->setNext(Next); 52 static void transferBeforeImpl(node_base_type &Next, node_base_type &First, 54 if (&Next == &Last || &First == &Last) 58 assert(&Next != &First & [all...] |
| ilist_node_base.h | 23 ilist_node_base *Next = nullptr; 27 void setNext(ilist_node_base *Next) { this->Next = Next; } 29 ilist_node_base *getNext() const { return Next; } 37 ilist_node_base *Next = nullptr; 41 void setNext(ilist_node_base *Next) { this->Next = Next; } 43 ilist_node_base *getNext() const { return Next; } [all...] |