Lines Matching defs:FragmentSize
605 uint64_t FragmentSize = Asm.computeFragmentSize(F);
610 Asm.writeFragmentPadding(OS, *EF, FragmentSize);
625 uint64_t Count = FragmentSize / AF.getValueSize();
630 if (Count * AF.getValueSize() != FragmentSize)
634 Twine(FragmentSize) + "'");
700 for (uint64_t I = 0, E = FragmentSize / ChunkSize; I != E; ++I)
704 unsigned TrailingCount = FragmentSize % ChunkSize;
760 if (!Asm.getBackend().writeNopData(OS, FragmentSize, BF.getSubtargetInfo()))
762 Twine(FragmentSize) + " bytes");
776 for (uint64_t i = 0, e = FragmentSize; i != e; ++i)
811 assert(OS.tell() - Start == FragmentSize &&