Home
last modified time | relevance | path

Searched refs:intype (Results 1 – 4 of 4) sorted by relevance

/external/mesa3d/src/gallium/auxiliary/indices/
Du_unfilled_gen.py95 def vert( intype, outtype, v0 ): argument
96 if intype == GENERATE:
101 def line( intype, outtype, ptr, v0, v1 ): argument
102 print ' (' + ptr + ')[0] = ' + vert( intype, outtype, v0 ) + ';'
103 print ' (' + ptr + ')[1] = ' + vert( intype, outtype, v1 ) + ';'
109 def do_tri( intype, outtype, ptr, v0, v1, v2 ): argument
110 line( intype, outtype, ptr, v0, v1 )
111 line( intype, outtype, ptr + '+2', v1, v2 )
112 line( intype, outtype, ptr + '+4', v2, v0 )
114 def do_quad( intype, outtype, ptr, v0, v1, v2, v3 ): argument
[all …]
Du_indices_gen.py106 def vert( intype, outtype, v0 ): argument
107 if intype == GENERATE:
112 def point( intype, outtype, ptr, v0 ): argument
113 print ' (' + ptr + ')[0] = ' + vert( intype, outtype, v0 ) + ';'
115 def line( intype, outtype, ptr, v0, v1 ): argument
116 print ' (' + ptr + ')[0] = ' + vert( intype, outtype, v0 ) + ';'
117 print ' (' + ptr + ')[1] = ' + vert( intype, outtype, v1 ) + ';'
119 def tri( intype, outtype, ptr, v0, v1, v2 ): argument
120 print ' (' + ptr + ')[0] = ' + vert( intype, outtype, v0 ) + ';'
121 print ' (' + ptr + ')[1] = ' + vert( intype, outtype, v1 ) + ';'
[all …]
/external/libmtp/src/
Dlibmtp.c124 static uint16_t map_libmtp_type_to_ptp_type(LIBMTP_filetype_t intype);
125 static LIBMTP_filetype_t map_ptp_type_to_libmtp_type(uint16_t intype);
127 static LIBMTP_property_t map_ptp_property_to_libmtp_property(uint16_t intype);
374 static uint16_t map_libmtp_type_to_ptp_type(LIBMTP_filetype_t intype) in map_libmtp_type_to_ptp_type() argument
381 if(current->id == intype) { in map_libmtp_type_to_ptp_type()
397 static LIBMTP_filetype_t map_ptp_type_to_libmtp_type(uint16_t intype) in map_ptp_type_to_libmtp_type() argument
404 if(current->ptp_id == intype) { in map_ptp_type_to_libmtp_type()
730 char const * LIBMTP_Get_Filetype_Description(LIBMTP_filetype_t intype) in LIBMTP_Get_Filetype_Description() argument
737 if(current->id == intype) { in LIBMTP_Get_Filetype_Description()
/external/llvm/lib/Target/AArch64/
DAArch64InstrFormats.td5099 RegisterOperand outtype, RegisterOperand intype,
5102 : I<(outs outtype:$Rd), (ins intype:$Rn), asm,
5120 RegisterOperand outtype, RegisterOperand intype,
5123 : I<(outs outtype:$dst), (ins outtype:$Rd, intype:$Rn), asm,