/third_party/mesa3d/src/panfrost/midgard/ |
H A D | midgard_print_constant.c | 40 bool is_int = midgard_is_integer_op(op); in mir_print_constant_component() local 46 if (is_int) { in mir_print_constant_component() 173 mir_print_outmod(FILE *fp, unsigned outmod, bool is_int) in mir_print_outmod() argument 175 fprintf(fp, "%s", is_int ? outmod_names_int[outmod] : in mir_print_outmod()
|
H A D | midgard_ops.h | 86 bool is_int = midgard_is_integer_op(op); in midgard_is_integer_out_op() local 89 return is_int ^ is_conversion; in midgard_is_integer_out_op()
|
H A D | disassemble.c | 308 print_alu_outmod(FILE *fp, unsigned outmod, bool is_int, bool half) in print_alu_outmod() argument 310 if (is_int && !half) { in print_alu_outmod() 315 if (!is_int && half) in print_alu_outmod() 318 mir_print_outmod(fp, outmod, is_int); in print_alu_outmod() 626 print_srcmod(FILE *fp, bool is_int, bool expands, unsigned mod, bool scalar) in print_srcmod() argument 630 if (is_int) { in print_srcmod() 647 uint8_t src_mask, bool is_int, in print_vector_src() 660 print_srcmod(fp, is_int, INPUT_EXPANDS(src->expand_mode), src->mod, false); in print_vector_src() 799 bool is_int = midgard_is_integer_op(op); in print_vector_field() local 855 shrink_mode, src_mask, is_int, argmo in print_vector_field() 644 print_vector_src(disassemble_context *ctx, FILE *fp, unsigned src_binary, midgard_reg_mode mode, unsigned reg, midgard_shrink_mode shrink_mode, uint8_t src_mask, bool is_int, midgard_special_arg_mod arg_mod) print_vector_src() argument 876 print_scalar_src(disassemble_context *ctx, FILE *fp, bool is_int, unsigned src_binary, unsigned reg) print_scalar_src() argument 913 bool is_int = midgard_is_integer_op(alu_field->op); print_scalar_field() local [all...] |
H A D | mir.c | 126 bool is_int = midgard_is_integer_op(ins->op); in mir_nontrivial_mod() local 128 if (is_int) { in mir_nontrivial_mod() 150 bool is_int = midgard_is_integer_op(ins->op); in mir_nontrivial_outmod() local 156 if (is_int) in mir_nontrivial_outmod()
|
H A D | helpers.h | 439 mir_print_outmod(FILE *fp, unsigned outmod, bool is_int);
|
/third_party/skia/third_party/externals/spirv-tools/tools/sva/src/ |
H A D | ast.js | 44 let is_int = inst.name() === "OpTypeInt"; 47 type: is_int ? "int" : "float", 49 signed: is_int ? inst.operand(2).value() : 1
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/tools/sva/src/ |
H A D | ast.js | 44 let is_int = inst.name() === "OpTypeInt"; 47 type: is_int ? "int" : "float", 49 signed: is_int ? inst.operand(2).value() : 1
|
/third_party/spirv-tools/tools/sva/src/ |
H A D | ast.js | 44 let is_int = inst.name() === "OpTypeInt"; 47 type: is_int ? "int" : "float", 49 signed: is_int ? inst.operand(2).value() : 1
|
/third_party/skia/third_party/externals/spirv-tools/source/val/ |
H A D | validate_interfaces.cpp | 144 bool is_int = false; in NumConsumedLocations() local 148 std::tie(is_int, is_const, value) = in NumConsumedLocations() 150 if (is_int && is_const) *num_locations *= value; in NumConsumedLocations() 336 bool is_int = false; in GetLocationsForVariable() local 343 std::tie(is_int, is_const, array_size) = in GetLocationsForVariable() 345 if (!is_int || !is_const) array_size = 1; in GetLocationsForVariable()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/val/ |
H A D | validate_interfaces.cpp | 144 bool is_int = false; in NumConsumedLocations() local 148 std::tie(is_int, is_const, value) = in NumConsumedLocations() 150 if (is_int && is_const) *num_locations *= value; in NumConsumedLocations() 336 bool is_int = false; in GetLocationsForVariable() local 343 std::tie(is_int, is_const, array_size) = in GetLocationsForVariable() 345 if (!is_int || !is_const) array_size = 1; in GetLocationsForVariable()
|
/third_party/spirv-tools/source/val/ |
H A D | validate_interfaces.cpp | 147 bool is_int = false; in NumConsumedLocations() local 151 std::tie(is_int, is_const, value) = in NumConsumedLocations() 153 if (is_int && is_const) *num_locations *= value; in NumConsumedLocations() 371 bool is_int = false; in GetLocationsForVariable() local 378 std::tie(is_int, is_const, array_size) = in GetLocationsForVariable() 380 if (!is_int || !is_const) array_size = 1; in GetLocationsForVariable()
|
/third_party/mesa3d/src/compiler/glsl/ |
H A D | s_expression.h | 70 virtual bool is_int() const { return false; } in is_int() function in s_expression 94 bool is_int() const { return true; } in is_int() function in s_int
|
H A D | s_expression.cpp | 187 case INT: if (expr->is_int()) *p_int = (s_int *) expr; break; in match()
|
/third_party/mesa3d/src/gallium/tests/trivial/ |
H A D | compute.c | 1129 bool is_int = util_format_is_pure_integer(surface_fmts[i]); in test_surface_ld() local 1141 128, 32, (is_int ? test_surface_ld_init0i : test_surface_ld_init0f)); in test_surface_ld() 1148 check_tex(ctx, 1, (is_int ? test_surface_ld_expecti : test_surface_ld_expectf), NULL); in test_surface_ld() 1254 bool is_int = util_format_is_pure_integer(surface_fmts[i]); in test_surface_st() local 1266 512, 32, (is_int ? test_surface_st_init0i : test_surface_st_init0f)); in test_surface_st() 1273 check_tex(ctx, 1, (is_int && is_signed ? test_surface_st_expects : in test_surface_st() 1274 is_int && !is_signed ? test_surface_st_expectu : in test_surface_st()
|
/third_party/mesa3d/src/freedreno/vulkan/ |
H A D | tu_util.h | 352 tu6_pack_border_color(struct bcolor_entry *bcolor, const VkClearColorValue *val, bool is_int) 355 if (is_int) {
|
/third_party/skia/src/core/ |
H A D | SkDevice.cpp | 116 static inline bool is_int(float x) { in is_int() function 125 bool antiAlias = paint.isAntiAlias() && (!is_int(localToDevice.getTranslateX()) || in drawRegion() 126 !is_int(localToDevice.getTranslateY())); in drawRegion()
|
/third_party/vk-gl-cts/external/amber/src/src/ |
H A D | type_parser.cc | 455 bool is_int; in ParseGlslFormat() member 465 if (type.is_int) in ParseGlslFormat()
|
/third_party/ltp/tools/sparse/sparse-src/ |
H A D | evaluate.c | 378 #define is_int(class) ((class & (TYPE_NUM | TYPE_FLOAT)) == TYPE_NUM) macro 966 if (lclass & TYPE_PTR && is_int(rclass) && (op == '+' || op == '-')) { in evaluate_binop() 972 if (rclass & TYPE_PTR && is_int(lclass) && op == '+') { in evaluate_binop() 1347 if (tclass == TYPE_PTR && is_int(sclass)) { in evaluate_assign_op() 2346 if (is_int(class)) { in evaluate_arguments() 3272 if (!is_int(i_class)) { in evaluate_offsetof()
|
/third_party/mesa3d/src/mesa/main/ |
H A D | format_parser.py | 373 def is_int(self): member in Format
|
/third_party/mesa3d/src/util/format/ |
H A D | u_format_parse.py | 270 def is_int(self): member in Format
|
/third_party/python/Lib/idlelib/ |
H A D | configdialog.py | 1899 self.is_int = self.register(is_int) 2044 validatecommand=(self.is_int, '%P'), width=10 2355 def is_int(s): function
|
/third_party/mesa3d/src/gallium/drivers/freedreno/a5xx/ |
H A D | fd5_emit.c | 793 bool is_int = util_format_is_pure_integer(format); in fd5_emit_state() local 797 if (is_int) { in fd5_emit_state()
|
/third_party/mesa3d/src/gallium/drivers/freedreno/a3xx/ |
H A D | fd3_emit.c | 768 bool is_int = util_format_is_pure_integer(format); in fd3_emit_state() local 772 if (is_int) { in fd3_emit_state()
|
/third_party/mesa3d/src/gallium/drivers/freedreno/a4xx/ |
H A D | fd4_emit.c | 860 bool is_int = util_format_is_pure_integer(format); in fd4_emit_state() local 864 if (is_int) { in fd4_emit_state()
|
/third_party/gn/src/base/ |
H A D | values.cc | 219 CHECK(is_int()); in GetInt() 434 if (out_value && is_int()) { in GetAsInteger() 438 return is_int(); in GetAsInteger()
|