Searched defs:IntParam (Results 1 – 1 of 1) sorted by relevance
74494 struct IntParam { struct74495 constexpr IntParam(char val) : value(val) {} in IntParam() function74496 constexpr IntParam(unsigned char val) : value(val) {} in IntParam() function74497 constexpr IntParam(short val) : value(val) {} in IntParam() argument74498 constexpr IntParam(unsigned short val) : value(val) {} in IntParam() argument74499 constexpr IntParam(int val) : value(val) {} in IntParam() argument74500 constexpr IntParam(unsigned int val) : value(val) {} in IntParam() function74501 constexpr IntParam(long val) : value(val) {} in IntParam() function74502 constexpr IntParam(unsigned long val) : value(val) {} in IntParam() function74503 constexpr IntParam(long long val) : value(val) {} in IntParam() function[all …]