Home
last modified time | relevance | path

Searched refs:type_args (Results 1 – 2 of 2) sorted by relevance

/external/mesa3d/prebuilt-intermediates/spirv/
Dvtn_gather_types.c30 struct type_args { struct
35 static struct type_args argument
39 case SpvOpUndef: return (struct type_args){ 1, 0 }; in result_type_args_for_opcode()
40 case SpvOpString: return (struct type_args){ 0, -1 }; in result_type_args_for_opcode()
41 case SpvOpExtInstImport: return (struct type_args){ 0, -1 }; in result_type_args_for_opcode()
42 case SpvOpExtInst: return (struct type_args){ 1, 0 }; in result_type_args_for_opcode()
43 case SpvOpTypeVoid: return (struct type_args){ 0, -1 }; in result_type_args_for_opcode()
44 case SpvOpTypeBool: return (struct type_args){ 0, -1 }; in result_type_args_for_opcode()
45 case SpvOpTypeInt: return (struct type_args){ 0, -1 }; in result_type_args_for_opcode()
46 case SpvOpTypeFloat: return (struct type_args){ 0, -1 }; in result_type_args_for_opcode()
[all …]
/external/rust/crates/bindgen/src/ir/
Dfunction.rs315 let type_args = ty.args().unwrap_or_default().into_iter(); in args_from_ty_and_cursor() localVariable
329 .zip(type_args.map(Some).chain(std::iter::repeat(None))) in args_from_ty_and_cursor()