Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/clang/lib/CodeGen/
H A DSwiftCallingConv.cpp423 static CharUnits getOffsetAtStartOfUnit(CharUnits offset, CharUnits unitSize) { in getOffsetAtStartOfUnit() argument
424 assert(isPowerOf2(unitSize.getQuantity())); in getOffsetAtStartOfUnit()
425 auto unitMask = ~(unitSize.getQuantity() - 1); in getOffsetAtStartOfUnit()
536 CharUnits unitSize = CharUnits::One(); in finish() local
538 for (; ; unitSize *= 2) { in finish()
539 assert(unitSize <= chunkSize); in finish()
540 unitBegin = getOffsetAtStartOfUnit(localBegin, unitSize); in finish()
541 unitEnd = unitBegin + unitSize; in finish()
548 CGM.getContext().toBits(unitSize)); in finish()