Searched refs:is_uint (Results 1 – 6 of 6) sorted by relevance
156 bool is_uint = (text[len - 1] == 'u' ||162 is_uint = (text[len - 2] == 'u' && text[len - 1] == 'l') ||175 if (is_long && !is_uint && base == 10 && value > (uint64_t)LLONG_MAX + 1) {189 } else if (base == 10 && !is_uint && (unsigned)value > (unsigned)INT_MAX + 1) {199 return is_uint ? UINT64CONSTANT : INT64CONSTANT;201 return is_uint ? UINTCONSTANT : INTCONSTANT;
5538 bool is_uint = type->base_type == GLSL_TYPE_UINT; in _bitfieldExtract() local5545 operand cast_offset = is_uint ? i2u(offset) : operand(offset); in _bitfieldExtract()5546 operand cast_bits = is_uint ? i2u(bits) : operand(bits); in _bitfieldExtract()5558 bool is_uint = type->base_type == GLSL_TYPE_UINT; in _bitfieldInsert() local5566 operand cast_offset = is_uint ? i2u(offset) : operand(offset); in _bitfieldInsert()5567 operand cast_bits = is_uint ? i2u(bits) : operand(bits); in _bitfieldInsert()
703 bool is_uint = false; in FormatIsUInt() local728 is_uint = true; in FormatIsUInt()734 return is_uint; in FormatIsUInt()
1042 ttn_if(struct ttn_compile *c, nir_ssa_def *src, bool is_uint) in ttn_if() argument1049 if (is_uint) { in ttn_if()
156 VIXL_DEPRECATED("IsUint" #N, inline bool is_uint##N(int64_t x)) { \
955 inline bool is_uint##N(T x) { return is_uintn(x, N); }