Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/Support/
H A Draw_ostream.cpp246 size_t BytesRemaining = Size - BytesToWrite; in write() local
247 if (BytesRemaining > size_t(OutBufEnd - OutBufCur)) { in write()
249 return write(Ptr + BytesToWrite, BytesRemaining); in write()
251 copy_to_buffer(Ptr + BytesToWrite, BytesRemaining); in write()
/freebsd-12.1/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyld.cpp99 unsigned BytesRemaining = S.getSize(); in dumpSectionMemory() local
108 while (BytesRemaining > 0) { in dumpSectionMemory()
116 --BytesRemaining; in dumpSectionMemory()
/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DExprConstant.cpp8476 uint64_t BytesRemaining = MaxLength; in VisitBuiltinCallExpr() local
8492 assert(BytesRemaining && "BytesRemaining should not be zero: the " in VisitBuiltinCallExpr()
8518 if (BytesRemaining <= BytesPerElement) in VisitBuiltinCallExpr()
8520 BytesRemaining -= BytesPerElement; in VisitBuiltinCallExpr()