Home
last modified time | relevance | path

Searched refs:exp_type (Results 1 – 15 of 15) sorted by relevance

/third_party/PyYAML/tests/lib/
Dtest_schema.py81 exp_type = test[0]
100 if exp_type == 'null':
107 t = types[exp_type][0]
108 code = types[exp_type][1]
/third_party/mbedtls/tests/suites/
Dtest_suite_oid.function62 void oid_get_x509_extension( data_t *oid, int exp_type )
73 if( exp_type == 0 )
80 TEST_ASSERT( ext_type == exp_type );
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/eap_common/
Deap_common.c82 u32 exp_type; in eap_hdr_validate() local
91 exp_type = WPA_GET_BE32(pos); in eap_hdr_validate()
93 if (exp_vendor != vendor || exp_type != (u32) eap_type) { in eap_hdr_validate()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/eap_common/
Deap_common.c82 u32 exp_type; in eap_hdr_validate() local
91 exp_type = WPA_GET_BE32(pos); in eap_hdr_validate()
93 if (exp_vendor != vendor || exp_type != (u32) eap_type) { in eap_hdr_validate()
/third_party/mesa3d/src/gallium/drivers/r600/sb/
Dsb_dump.cpp349 static const char *exp_type[] = {"PIXEL", "POS ", "PARAM"}; in dump_op() local
350 sblog << " " << exp_type[c->bc.type] << " " << c->bc.array_base; in dump_op()
353 static const char *exp_type[] = {"WRITE", "WRITE_IND", "WRITE_ACK", in dump_op() local
355 sblog << " " << exp_type[c->bc.type] << " " << c->bc.array_base in dump_op()
Dsb_bc_dump.cpp122 static const char *exp_type[] = {"PIXEL", "POS ", "PARAM"}; in dump() local
125 s << " " << exp_type[n.bc.type] << " "; in dump()
142 static const char *exp_type[] = {"WRITE", "WRITE_IND", "WRITE_ACK", in dump() local
145 s << " " << exp_type[n.bc.type] << " "; in dump()
/third_party/spirv-tools/source/val/
Dvalidate_extensions.cpp1004 const uint32_t exp_type = _.GetOperandTypeId(inst, 5); in ValidateExtInst() local
1014 if (!_.GetPointerTypeInfo(exp_type, &exp_data_type, in ValidateExtInst()
1054 const uint32_t exp_type = _.GetOperandTypeId(inst, 5); in ValidateExtInst() local
1062 if (!_.IsIntScalarOrVectorType(exp_type)) { in ValidateExtInst()
1069 if (_.GetDimension(result_type) != _.GetDimension(exp_type)) { in ValidateExtInst()
1753 const uint32_t exp_type = _.GetOperandTypeId(inst, 5); in ValidateExtInst() local
1754 if (!_.IsIntScalarOrVectorType(exp_type) || in ValidateExtInst()
1755 _.GetBitWidth(exp_type) != 32) { in ValidateExtInst()
1761 if (_.GetDimension(exp_type) != num_components) { in ValidateExtInst()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/val/
Dvalidate_extensions.cpp1041 const uint32_t exp_type = _.GetOperandTypeId(inst, 5); in ValidateExtInst() local
1051 if (!_.GetPointerTypeInfo(exp_type, &exp_data_type, in ValidateExtInst()
1091 const uint32_t exp_type = _.GetOperandTypeId(inst, 5); in ValidateExtInst() local
1099 if (!_.IsIntScalarOrVectorType(exp_type)) { in ValidateExtInst()
1106 if (_.GetDimension(result_type) != _.GetDimension(exp_type)) { in ValidateExtInst()
1790 const uint32_t exp_type = _.GetOperandTypeId(inst, 5); in ValidateExtInst() local
1791 if (!_.IsIntScalarOrVectorType(exp_type) || in ValidateExtInst()
1792 _.GetBitWidth(exp_type) != 32) { in ValidateExtInst()
1798 if (_.GetDimension(exp_type) != num_components) { in ValidateExtInst()
/third_party/skia/third_party/externals/spirv-tools/source/val/
Dvalidate_extensions.cpp1041 const uint32_t exp_type = _.GetOperandTypeId(inst, 5); in ValidateExtInst() local
1051 if (!_.GetPointerTypeInfo(exp_type, &exp_data_type, in ValidateExtInst()
1091 const uint32_t exp_type = _.GetOperandTypeId(inst, 5); in ValidateExtInst() local
1099 if (!_.IsIntScalarOrVectorType(exp_type)) { in ValidateExtInst()
1106 if (_.GetDimension(result_type) != _.GetDimension(exp_type)) { in ValidateExtInst()
1790 const uint32_t exp_type = _.GetOperandTypeId(inst, 5); in ValidateExtInst() local
1791 if (!_.IsIntScalarOrVectorType(exp_type) || in ValidateExtInst()
1792 _.GetBitWidth(exp_type) != 32) { in ValidateExtInst()
1798 if (_.GetDimension(exp_type) != num_components) { in ValidateExtInst()
/third_party/mesa3d/src/gallium/drivers/r600/
Dr600_asm.c2242 const char *exp_type[] = {"PIXEL", "POS ", "PARAM"}; in r600_bytecode_disasm() local
2246 o += fprintf(stderr, "%s ", exp_type[cf->output.type]); in r600_bytecode_disasm()
2277 const char *exp_type[] = {"WRITE", "WRITE_IND", "WRITE_ACK", in r600_bytecode_disasm() local
2282 o += fprintf(stderr, "%s ", exp_type[cf->output.type]); in r600_bytecode_disasm()
/third_party/skia/third_party/externals/spirv-cross/
Dspirv_msl.hpp783 …std::string convert_row_major_matrix(std::string exp_str, const SPIRType &exp_type, uint32_t physi…
Dspirv_glsl.cpp12817 string CompilerGLSL::convert_row_major_matrix(string exp_str, const SPIRType &exp_type, uint32_t /*… in convert_row_major_matrix() argument
12821 if (!is_matrix(exp_type)) in convert_row_major_matrix()
12830 auto transposed_expr = type_to_glsl_constructor(exp_type) + "("; in convert_row_major_matrix()
12833 for (uint32_t c = 0; c < exp_type.vecsize; c++) in convert_row_major_matrix()
12836 if (c + 1 < exp_type.vecsize) in convert_row_major_matrix()
12847 if (exp_type.vecsize == 2 && exp_type.columns == 2) in convert_row_major_matrix()
12855 else if (exp_type.vecsize == 3 && exp_type.columns == 3) in convert_row_major_matrix()
12863 else if (exp_type.vecsize == 4 && exp_type.columns == 4) in convert_row_major_matrix()
Dspirv_glsl.hpp524 virtual std::string convert_row_major_matrix(std::string exp_str, const SPIRType &exp_type,
Dspirv_msl.cpp10404 string CompilerMSL::convert_row_major_matrix(string exp_str, const SPIRType &exp_type, uint32_t phy… in convert_row_major_matrix() argument
10407 if (!is_matrix(exp_type)) in convert_row_major_matrix()
10409 …return CompilerGLSL::convert_row_major_matrix(move(exp_str), exp_type, physical_type_id, is_packed… in convert_row_major_matrix()
10415 exp_str = unpack_expression_type(exp_str, exp_type, physical_type_id, is_packed, true); in convert_row_major_matrix()
/third_party/mesa3d/src/compiler/glsl/
Dbuiltin_functions.cpp7680 builtin_builder::_ldexp(const glsl_type *x_type, const glsl_type *exp_type) in _ldexp() argument
7683 ir_binop_ldexp, x_type, x_type, exp_type); in _ldexp()
7687 builtin_builder::_dfrexp(const glsl_type *x_type, const glsl_type *exp_type) in _dfrexp() argument
7690 ir_variable *exponent = out_var(exp_type, "exp"); in _dfrexp()
7700 builtin_builder::_frexp(const glsl_type *x_type, const glsl_type *exp_type) in _frexp() argument
7703 ir_variable *exponent = out_var(exp_type, "exp"); in _frexp()