Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DSwiftCallingConv.cpp421 static CharUnits getOffsetAtStartOfUnit(CharUnits offset, CharUnits unitSize) { in getOffsetAtStartOfUnit() argument
422 assert(isPowerOf2(unitSize.getQuantity())); in getOffsetAtStartOfUnit()
423 auto unitMask = ~(unitSize.getQuantity() - 1); in getOffsetAtStartOfUnit()
534 CharUnits unitSize = CharUnits::One(); in finish() local
536 for (; ; unitSize *= 2) { in finish()
537 assert(unitSize <= chunkSize); in finish()
538 unitBegin = getOffsetAtStartOfUnit(localBegin, unitSize); in finish()
539 unitEnd = unitBegin + unitSize; in finish()
546 CGM.getContext().toBits(unitSize)); in finish()