Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DSwiftCallingConv.cpp424 static CharUnits getOffsetAtStartOfUnit(CharUnits offset, CharUnits unitSize) { in getOffsetAtStartOfUnit() argument
425 assert(isPowerOf2(unitSize.getQuantity())); in getOffsetAtStartOfUnit()
426 auto unitMask = ~(unitSize.getQuantity() - 1); in getOffsetAtStartOfUnit()
537 CharUnits unitSize = CharUnits::One(); in finish() local
539 for (; ; unitSize *= 2) { in finish()
540 assert(unitSize <= chunkSize); in finish()
541 unitBegin = getOffsetAtStartOfUnit(localBegin, unitSize); in finish()
542 unitEnd = unitBegin + unitSize; in finish()
549 CGM.getContext().toBits(unitSize)); in finish()