/external/mesa3d/src/intel/compiler/ |
D | brw_ir_fs.h | 472 brw_reg_type exec_type = BRW_REGISTER_TYPE_B; in get_exec_type() local 478 if (type_sz(t) > type_sz(exec_type)) in get_exec_type() 479 exec_type = t; in get_exec_type() 480 else if (type_sz(t) == type_sz(exec_type) && in get_exec_type() 482 exec_type = t; in get_exec_type() 486 if (exec_type == BRW_REGISTER_TYPE_B) in get_exec_type() 487 exec_type = inst->dst.type; in get_exec_type() 489 assert(exec_type != BRW_REGISTER_TYPE_B); in get_exec_type() 504 if (type_sz(exec_type) == 2 && in get_exec_type() 505 inst->dst.type != exec_type) { in get_exec_type() [all …]
|
D | brw_ir_vec4.h | 442 enum brw_reg_type exec_type = BRW_REGISTER_TYPE_B; in get_exec_type() local 447 if (type_sz(t) > type_sz(exec_type)) in get_exec_type() 448 exec_type = t; in get_exec_type() 449 else if (type_sz(t) == type_sz(exec_type) && in get_exec_type() 451 exec_type = t; in get_exec_type() 455 if (exec_type == BRW_REGISTER_TYPE_B) in get_exec_type() 456 exec_type = inst->dst.type; in get_exec_type() 459 assert(exec_type != BRW_REGISTER_TYPE_HF || in get_exec_type() 461 assert(exec_type != BRW_REGISTER_TYPE_B); in get_exec_type() 463 return exec_type; in get_exec_type()
|
D | brw_reg_type.c | 222 enum gen10_align1_3src_exec_type exec_type; member 443 unsigned hw_type, unsigned exec_type) in brw_a1_hw_3src_type_to_reg_type() argument 451 table[i].exec_type == exec_type) { in brw_a1_hw_3src_type_to_reg_type()
|
D | brw_reg_type.h | 128 unsigned hw_type, unsigned exec_type);
|
D | brw_eu_validate.c | 754 unsigned exec_type = execution_type(devinfo, inst); in general_restrictions_based_on_operand_types() local 755 unsigned exec_type_size = brw_reg_type_to_size(exec_type); in general_restrictions_based_on_operand_types() 1751 enum brw_reg_type exec_type = execution_type(devinfo, inst); in special_requirements_for_handling_double_precision_data_types() local 1752 unsigned exec_type_size = brw_reg_type_to_size(exec_type); in special_requirements_for_handling_double_precision_data_types() 1922 enum brw_reg_type exec_type = execution_type(devinfo, inst); in instruction_restrictions() local 1932 ERROR_IF(!brw_reg_type_is_floating_point(exec_type) && in instruction_restrictions() 1933 type_sz(exec_type) == 4 && !(src0_valid && src1_valid), in instruction_restrictions()
|
D | brw_fs_lower_regioning.cpp | 174 const brw_reg_type exec_type = get_exec_type(inst); in has_invalid_dst_region() local 178 type_sz(inst->dst.type) < type_sz(exec_type); in has_invalid_dst_region()
|
D | brw_inst.h | 447 UNUSED enum gen10_align1_3src_exec_type exec_type = \ in REG_TYPE() 451 assert(exec_type == BRW_ALIGN1_3SRC_EXEC_TYPE_FLOAT); \ in REG_TYPE() 453 assert(exec_type == BRW_ALIGN1_3SRC_EXEC_TYPE_INT); \ in REG_TYPE() 463 enum gen10_align1_3src_exec_type exec_type = \ 467 return brw_a1_hw_3src_type_to_reg_type(devinfo, hw_type, exec_type); \
|
D | test_eu_validate.cpp | 471 unsigned exec_type; in TEST_P() member 500 unsigned hw_exec_type = hw_type | (test_case[i].exec_type << 3); in TEST_P() 527 const unsigned exec_type = e >> 3; in TEST_P() local 539 brw_inst_set_3src_a1_exec_type(&devinfo, last_inst, exec_type); in TEST_P()
|
D | brw_fs.cpp | 449 const brw_reg_type exec_type = get_exec_type(this); in can_do_source_mods() local 454 if (brw_reg_type_is_integer(exec_type) && in can_do_source_mods() 455 type_sz(exec_type) >= 4 && in can_do_source_mods() 456 type_sz(exec_type) != min_type_sz) in can_do_source_mods()
|
/external/selinux/secilc/test/ |
D | policy.cil | 117 (typeattribute exec_type) 122 (typeattributeset exec_type (or bin_t kernel_t)) 123 (typeattributeset foo_type (and exec_type kernel_t)) 124 (typeattributeset bar_type (xor exec_type foo_type)) 126 (typeattributeset baz_type (and exec_type (and bar_type bin_t))) 216 (roletype system_r exec_type) 218 (roletype exec_role exec_type)
|
D | integration.cil | 68 (typeattribute exec_type) 72 (typeattributeset exec_type (or bin_t kernel_t)) 73 (typeattributeset foo_type (and exec_type kernel_t)) 74 (typeattributeset bar_type (xor exec_type foo_type))
|
/external/bazelbuild-rules_android/rules/ |
D | utils.bzl | 367 exec_type = type(executable) 370 if exec_type == "FilesToRunProvider": 373 elif exec_type == "File": 376 elif exec_type == type(""): 381 "string that represents a path to a tool, got: %s" % exec_type,
|
/external/tensorflow/tensorflow/python/client/ |
D | session.py | 1613 def __exit__(self, exec_type, exec_value, exec_tb): argument 1614 if exec_type is errors.OpError: 1617 self._default_session_context_manager.__exit__(exec_type, exec_value, 1632 self._default_graph_context_manager.__exit__(exec_type, exec_value, exec_tb) 1640 if exec_type:
|
/external/tensorflow/tensorflow/python/debug/wrappers/ |
D | framework.py | 812 def __exit__(self, exec_type, exec_value, exec_tb): argument 814 exec_type, exec_value, exec_tb)
|
/external/tensorflow/tensorflow/python/profiler/ |
D | profile_context.py | 354 def __exit__(self, exec_type, exec_value, exec_tb): argument
|