Home
last modified time | relevance | path

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

/external/llvm/lib/ProfileData/
DInstrProfReader.cpp276 Error RawInstrProfReader<IntPtrT>::readNextHeader(const char *CurrentPos) { in readNextHeader() argument
279 while (CurrentPos != End && *CurrentPos == 0) in readNextHeader()
280 ++CurrentPos; in readNextHeader()
282 if (CurrentPos == End) in readNextHeader()
286 if (CurrentPos + sizeof(RawInstrProf::Header) > End) in readNextHeader()
289 if (reinterpret_cast<size_t>(CurrentPos) % alignOf<uint64_t>()) in readNextHeader()
292 uint64_t Magic = *reinterpret_cast<const uint64_t *>(CurrentPos); in readNextHeader()
297 auto *Header = reinterpret_cast<const RawInstrProf::Header *>(CurrentPos); in readNextHeader()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ProfileData/
DInstrProfReader.cpp299 Error RawInstrProfReader<IntPtrT>::readNextHeader(const char *CurrentPos) { in readNextHeader() argument
302 while (CurrentPos != End && *CurrentPos == 0) in readNextHeader()
303 ++CurrentPos; in readNextHeader()
305 if (CurrentPos == End) in readNextHeader()
309 if (CurrentPos + sizeof(RawInstrProf::Header) > End) in readNextHeader()
312 if (reinterpret_cast<size_t>(CurrentPos) % alignof(uint64_t)) in readNextHeader()
315 uint64_t Magic = *reinterpret_cast<const uint64_t *>(CurrentPos); in readNextHeader()
320 auto *Header = reinterpret_cast<const RawInstrProf::Header *>(CurrentPos); in readNextHeader()
/external/swiftshader/third_party/LLVM/lib/MC/
DMCObjectStreamer.cpp235 MCSymbol *CurrentPos = getContext().CreateTempSymbol(); in EmitValueToOffset() local
236 EmitLabel(CurrentPos); in EmitValueToOffset()
239 MCSymbolRefExpr::Create(CurrentPos, Variant, getContext()); in EmitValueToOffset()
/external/pdfium/third_party/lcms/src/
Dcmstypes.c229 cmsUInt32Number DirectoryPos, CurrentPos, Before; in WritePositionTable() local
263 CurrentPos = io ->Tell(io); in WritePositionTable()
271 if (!io ->Seek(io, CurrentPos)) goto Error; in WritePositionTable()
2687 cmsUInt32Number BaseOffset, DirectoryPos, CurrentPos; in Type_LUTA2B_Write() local
2750 CurrentPos = io ->Tell(io); in Type_LUTA2B_Write()
2760 if (!io ->Seek(io, CurrentPos)) return FALSE; in Type_LUTA2B_Write()
2875 cmsUInt32Number BaseOffset, DirectoryPos, CurrentPos; in Type_LUTB2A_Write() local
2932 CurrentPos = io ->Tell(io); in Type_LUTB2A_Write()
2942 if (!io ->Seek(io, CurrentPos)) return FALSE; in Type_LUTB2A_Write()
4495 cmsUInt32Number i, BaseOffset, DirectoryPos, CurrentPos; in Type_MPE_Write() local
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Bitcode/Reader/
DMetadataLoader.cpp694 uint64_t CurrentPos = IndexCursor.GetCurrentBitNo(); in lazyLoadModuleMetadataBlock() local
699 IndexCursor.JumpToBit(CurrentPos); in lazyLoadModuleMetadataBlock()
715 IndexCursor.JumpToBit(CurrentPos); in lazyLoadModuleMetadataBlock()
750 IndexCursor.JumpToBit(CurrentPos); in lazyLoadModuleMetadataBlock()
783 IndexCursor.JumpToBit(CurrentPos); in lazyLoadModuleMetadataBlock()
/external/llvm/lib/Target/PowerPC/
DPPCAsmPrinter.cpp1038 MCSymbol *CurrentPos = OutContext.createTempSymbol(); in EmitStartOfAsmFile() local
1040 OutStreamer->EmitLabel(CurrentPos); in EmitStartOfAsmFile()
1045 MCBinaryExpr::createAdd(MCSymbolRefExpr::create(CurrentPos, OutContext), in EmitStartOfAsmFile()
/external/llvm/include/llvm/ProfileData/
DInstrProfReader.h207 Error readNextHeader(const char *CurrentPos);
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ProfileData/
DInstrProfReader.h223 Error readNextHeader(const char *CurrentPos);
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/PowerPC/
DPPCAsmPrinter.cpp1265 MCSymbol *CurrentPos = OutContext.createTempSymbol(); in EmitStartOfAsmFile() local
1267 OutStreamer->EmitLabel(CurrentPos); in EmitStartOfAsmFile()
1272 MCBinaryExpr::createAdd(MCSymbolRefExpr::create(CurrentPos, OutContext), in EmitStartOfAsmFile()
/external/mesa3d/src/mesa/main/
Ddlist.c1340 && ctx->ListState.CurrentPos % 2 == 0) { in dlist_alloc()
1351 if (ctx->ListState.CurrentPos + nopNode + numNodes + contNodes in dlist_alloc()
1355 n = ctx->ListState.CurrentBlock + ctx->ListState.CurrentPos; in dlist_alloc()
1368 ctx->ListState.CurrentPos = 0; in dlist_alloc()
1380 n = ctx->ListState.CurrentBlock + ctx->ListState.CurrentPos; in dlist_alloc()
1382 assert(ctx->ListState.CurrentPos % 2 == 0); /* even value */ in dlist_alloc()
1389 ctx->ListState.CurrentPos += nopNode + numNodes; in dlist_alloc()
1498 (list->CurrentPos < BLOCK_SIZE)) { in trim_list()
1500 GLuint newSize = list->CurrentPos * sizeof(Node); in trim_list()
9341 ctx->ListState.CurrentPos = 0; in _mesa_NewList()
[all …]
Dmtypes.h4398 GLuint CurrentPos; /**< Index into current block of nodes */ member