Home
last modified time | relevance | path

Searched refs:CurrentPos (Results 1 – 6 of 6) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ProfileData/
DInstrProfReader.cpp317 Error RawInstrProfReader<IntPtrT>::readNextHeader(const char *CurrentPos) { in readNextHeader() argument
320 while (CurrentPos != End && *CurrentPos == 0) in readNextHeader()
321 ++CurrentPos; in readNextHeader()
323 if (CurrentPos == End) in readNextHeader()
327 if (CurrentPos + sizeof(RawInstrProf::Header) > End) in readNextHeader()
330 if (reinterpret_cast<size_t>(CurrentPos) % alignof(uint64_t)) in readNextHeader()
333 uint64_t Magic = *reinterpret_cast<const uint64_t *>(CurrentPos); in readNextHeader()
338 auto *Header = reinterpret_cast<const RawInstrProf::Header *>(CurrentPos); in readNextHeader()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Bitcode/Reader/
DMetadataLoader.cpp705 uint64_t CurrentPos = IndexCursor.GetCurrentBitNo(); in lazyLoadModuleMetadataBlock() local
713 if (Error Err = IndexCursor.JumpToBit(CurrentPos)) in lazyLoadModuleMetadataBlock()
734 if (Error Err = IndexCursor.JumpToBit(CurrentPos)) in lazyLoadModuleMetadataBlock()
780 if (Error Err = IndexCursor.JumpToBit(CurrentPos)) in lazyLoadModuleMetadataBlock()
825 if (Error Err = IndexCursor.JumpToBit(CurrentPos)) in lazyLoadModuleMetadataBlock()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ProfileData/
DInstrProfReader.h234 Error readNextHeader(const char *CurrentPos);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/
DPPCAsmPrinter.cpp1343 MCSymbol *CurrentPos = OutContext.createTempSymbol(); in EmitStartOfAsmFile() local
1345 OutStreamer->EmitLabel(CurrentPos); in EmitStartOfAsmFile()
1350 MCBinaryExpr::createAdd(MCSymbolRefExpr::create(CurrentPos, OutContext), in EmitStartOfAsmFile()
/third_party/mesa3d/src/mesa/main/
Ddlist.c1509 ctx->ListState.CurrentPos % 2 == 1) { in dlist_alloc()
1510 Node *last = ctx->ListState.CurrentBlock + ctx->ListState.CurrentPos - in dlist_alloc()
1513 ctx->ListState.CurrentPos++; in dlist_alloc()
1516 if (ctx->ListState.CurrentPos + numNodes + contNodes > BLOCK_SIZE) { in dlist_alloc()
1519 Node *n = ctx->ListState.CurrentBlock + ctx->ListState.CurrentPos; in dlist_alloc()
1532 ctx->ListState.CurrentPos = 0; in dlist_alloc()
1535 Node *n = ctx->ListState.CurrentBlock + ctx->ListState.CurrentPos; in dlist_alloc()
1536 ctx->ListState.CurrentPos += numNodes; in dlist_alloc()
13508 ctx->ListState.CurrentPos = 0; in _mesa_NewList()
13669 (list->CurrentPos < BLOCK_SIZE)) { in _mesa_EndList()
[all …]
Dmtypes.h2918 GLuint CurrentPos; /**< Index into current block of nodes */ member