Searched refs:is_uint (Results 1 - 7 of 7) sorted by relevance

/xsrc/external/mit/MesaLib/dist/src/panfrost/midgard/
H A Dmidgard_print_constant.c37 bool is_sint = false, is_uint = false, is_hex = false; local in function:mir_print_constant_component
47 is_uint = midgard_is_unsigned_op(op);
49 if (!is_uint) {
70 } else if (is_uint) {
96 } else if (is_uint || is_hex) {
104 fprintf(fp, is_uint ? "%"PRIu64 : "0x%"PRIX64, v);
127 } else if (is_uint || is_hex) {
135 fprintf(fp, is_uint ? "%u" : "0x%X", v);
/xsrc/external/mit/MesaLib/dist/src/compiler/nir/
H A Dnir_lower_mediump.c608 bool is_uint = !is_sint && local in function:nir_legalize_16bit_sampler_srcs
618 is_uint ? nir_u2u16 : nir_f2f16;
622 is_uint ? nir_u2u32 : nir_f2f32;
/xsrc/external/mit/MesaLib.old/src/compiler/glsl/
H A Dglsl_lexer.cpp1539 bool is_uint = (text[len - 1] == 'u' || local in function:literal_integer
1545 is_uint = (text[len - 2] == 'u' && text[len - 1] == 'l') ||
1558 if (is_long && !is_uint && base == 10 && value > (uint64_t)LLONG_MAX + 1) {
1572 } else if (base == 10 && !is_uint && (unsigned)value > (unsigned)INT_MAX + 1) {
1582 return is_uint ? UINT64CONSTANT : INT64CONSTANT;
1584 return is_uint ? UINTCONSTANT : INTCONSTANT;
/xsrc/external/mit/MesaLib/src/compiler/glsl/
H A Dglsl_lexer.cpp1562 bool is_uint = (text[len - 1] == 'u' || local in function:literal_integer
1568 is_uint = (text[len - 2] == 'u' && text[len - 1] == 'l') ||
1581 if (is_long && !is_uint && base == 10 && value > (uint64_t)LLONG_MAX + 1) {
1595 } else if (base == 10 && !is_uint && (unsigned)value > (unsigned)INT_MAX + 1) {
1605 return is_uint ? UINT64CONSTANT : INT64CONSTANT;
1607 return is_uint ? UINTCONSTANT : INTCONSTANT;
/xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/nir/
H A Dtgsi_to_nir.c1023 ttn_if(struct ttn_compile *c, nir_ssa_def *src, bool is_uint) argument
1029 if (is_uint) {
/xsrc/external/mit/MesaLib/dist/src/compiler/glsl/
H A Dbuiltin_functions.cpp6886 bool is_uint = type->base_type == GLSL_TYPE_UINT; local in function:builtin_builder::_bitfieldExtract
6893 operand cast_offset = is_uint ? i2u(offset) : operand(offset);
6894 operand cast_bits = is_uint ? i2u(bits) : operand(bits);
6906 bool is_uint = type->base_type == GLSL_TYPE_UINT; local in function:builtin_builder::_bitfieldInsert
6914 operand cast_offset = is_uint ? i2u(offset) : operand(offset);
6915 operand cast_bits = is_uint ? i2u(bits) : operand(bits);
/xsrc/external/mit/MesaLib.old/dist/src/compiler/glsl/
H A Dbuiltin_functions.cpp6429 bool is_uint = type->base_type == GLSL_TYPE_UINT; local in function:builtin_builder::_bitfieldExtract
6436 operand cast_offset = is_uint ? i2u(offset) : operand(offset);
6437 operand cast_bits = is_uint ? i2u(bits) : operand(bits);
6449 bool is_uint = type->base_type == GLSL_TYPE_UINT; local in function:builtin_builder::_bitfieldInsert
6457 operand cast_offset = is_uint ? i2u(offset) : operand(offset);
6458 operand cast_bits = is_uint ? i2u(bits) : operand(bits);

Completed in 34 milliseconds