Home
last modified time | relevance | path

Searched refs:EndOfBlock (Results 1 – 3 of 3) sorted by relevance

/third_party/flutter/skia/third_party/externals/dawn/src/dawn_native/
DCommandAllocator.cpp26 constexpr uint32_t EndOfBlock = UINT_MAX; // std::numeric_limits<uint32_t>::max(); variable
31 CommandIterator::CommandIterator() : mEndOfBlock(EndOfBlock) { in CommandIterator()
45 CommandIterator::CommandIterator(CommandIterator&& other) : mEndOfBlock(EndOfBlock) { in CommandIterator()
67 : mBlocks(allocator.AcquireBlocks()), mEndOfBlock(EndOfBlock) { in CommandIterator()
107 if (id == EndOfBlock) { in NextCommandId()
111 *commandId = EndOfBlock; in NextCommandId()
164 *reinterpret_cast<uint32_t*>(mCurrentPtr) = EndOfBlock; in AcquireBlocks()
176 ASSERT(commandId != EndOfBlock); in Allocate()
214 *idAlloc = EndOfBlock; in Allocate()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/
DSectionMemoryManager.cpp69 uintptr_t EndOfBlock = Addr + FreeMB.Free.allocatedSize(); in allocateSection() local
89 sys::MemoryBlock((void *)(Addr + Size), EndOfBlock - Addr - Size); in allocateSection()
118 uintptr_t EndOfBlock = Addr + MB.allocatedSize(); in allocateSection() local
128 unsigned FreeSize = EndOfBlock - Addr - Size; in allocateSection()
/third_party/python/Lib/
Dinspect.py1045 class EndOfBlock(Exception): pass class
1081 raise EndOfBlock
1099 raise EndOfBlock
1107 raise EndOfBlock
1116 except (EndOfBlock, IndentationError):