Lines Matching defs:Width
125 uint32_t Offset, uint32_t Width);
511 // has a separate operand for the offset and width, the scalar version packs
512 // the width and offset into a single operand. Try to move to the scalar
522 ConstantSDNode *Width = dyn_cast<ConstantSDNode>(N->getOperand(2));
523 if (!Width)
529 uint32_t WidthVal = Width->getZExtValue();
1157 uint32_t Offset, uint32_t Width) {
1158 // Transformation function, pack the offset and width of a BFE into
1160 // source, bits [5:0] contain the offset and bits [22:16] the width.
1161 uint32_t PackedVal = Offset | (Width << 16);