HomeSort by relevance Sort by last modified time
    Searched defs:makeIntConstant (Results 1 - 2 of 2) sorted by null

  /external/deqp-deps/glslang/SPIRV/
SpvBuilder.cpp 838 Id Builder::makeIntConstant(Id typeId, unsigned value, bool specConstant)
    [all...]
SpvBuilder.h 248 Id makeInt8Constant(int i, bool specConstant = false) { return makeIntConstant(makeIntType(8), (unsigned)i, specConstant); }
249 Id makeUint8Constant(unsigned u, bool specConstant = false) { return makeIntConstant(makeUintType(8), u, specConstant); }
250 Id makeInt16Constant(int i, bool specConstant = false) { return makeIntConstant(makeIntType(16), (unsigned)i, specConstant); }
251 Id makeUint16Constant(unsigned u, bool specConstant = false) { return makeIntConstant(makeUintType(16), u, specConstant); }
252 Id makeIntConstant(int i, bool specConstant = false) { return makeIntConstant(makeIntType(32), (unsigned)i, specConstant); }
253 Id makeUintConstant(unsigned u, bool specConstant = false) { return makeIntConstant(makeUintType(32), u, specConstant); }
669 Id makeIntConstant(Id typeId, unsigned value, bool specConstant);
    [all...]

Completed in 191 milliseconds