Lines Matching defs:width
192 Id makeIntegerType(int width, bool hasSign); // generic
193 Id makeIntType(int width) { return makeIntegerType(width, true); }
194 Id makeUintType(int width) { return makeIntegerType(width, false); }
195 Id makeFloatType(int width);
220 Id makeIntegerDebugType(int const width, bool const hasSign);
221 Id makeFloatDebugType(int const width);
301 bool containsType(Id typeId, Op typeOp, unsigned int width) const;
523 // - promoteScalar(scalar, vector) // smear scalar to width of vector
524 // - promoteScalar(vector, scalar) // smear scalar to width of vector
525 // - promoteScalar(pointer, scalar) // smear scalar to width of what pointer points to