Lines Matching defs:FF
759 const MCFillFragment &FF = cast<MCFillFragment>(F);
761 assert(FF.getValueSize() && "Invalid virtual align in concrete fragment!");
763 for (uint64_t i = 0, e = FF.getSize() / FF.getValueSize(); i != e; ++i) {
764 switch (FF.getValueSize()) {
766 case 1: OW->write8 (uint8_t (FF.getValue())); break;
767 case 2: OW->write16(uint16_t(FF.getValue())); break;
768 case 4: OW->write32(uint32_t(FF.getValue())); break;
769 case 8: OW->write64(uint64_t(FF.getValue())); break;
1234 const MCFillFragment *FF = cast<MCFillFragment>(this);
1235 OS << " Value:" << FF->getValue() << " ValueSize:" << FF->getValueSize()
1236 << " Size:" << FF->getSize();