Lines Matching defs:FF
443 MCFillFragment &FF = cast<MCFillFragment>(F);
445 assert(FF.getValueSize() && "Invalid virtual align in concrete fragment!");
447 for (uint64_t i = 0, e = FF.getSize() / FF.getValueSize(); i != e; ++i) {
448 switch (FF.getValueSize()) {
451 case 1: OW->Write8 (uint8_t (FF.getValue())); break;
452 case 2: OW->Write16(uint16_t(FF.getValue())); break;
453 case 4: OW->Write32(uint32_t(FF.getValue())); break;
454 case 8: OW->Write64(uint64_t(FF.getValue())); break;
891 const MCFillFragment *FF = cast<MCFillFragment>(this);
892 OS << " Value:" << FF->getValue() << " ValueSize:" << FF->getValueSize()
893 << " Size:" << FF->getSize();