Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/lib/CodeGen/
H A DSwiftCallingConv.cpp422 static CharUnits getOffsetAtStartOfUnit(CharUnits offset, CharUnits unitSize) { in getOffsetAtStartOfUnit() argument
423 assert(isPowerOf2(unitSize.getQuantity())); in getOffsetAtStartOfUnit()
424 auto unitMask = ~(unitSize.getQuantity() - 1); in getOffsetAtStartOfUnit()
535 CharUnits unitSize = CharUnits::One(); in finish() local
537 for (; ; unitSize *= 2) { in finish()
538 assert(unitSize <= chunkSize); in finish()
539 unitBegin = getOffsetAtStartOfUnit(localBegin, unitSize); in finish()
540 unitEnd = unitBegin + unitSize; in finish()
547 CGM.getContext().toBits(unitSize)); in finish()