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.py99 def vert( intype, outtype, v0 ): argument
100 if intype == GENERATE:
105 def line( intype, outtype, ptr, v0, v1 ): argument
106 print ' (' + ptr + ')[0] = ' + vert( intype, outtype, v0 ) + ';'
107 print ' (' + ptr + ')[1] = ' + vert( intype, outtype, v1 ) + ';'
113 def do_tri( intype, outtype, ptr, v0, v1, v2 ): argument
114 line( intype, outtype, ptr, v0, v1 )
115 line( intype, outtype, ptr + '+2', v1, v2 )
116 line( intype, outtype, ptr + '+4', v2, v0 )
118 def do_quad( intype, outtype, ptr, v0, v1, v2, v3 ): argument
[all …]
Du_indices_gen.py116 def vert( intype, outtype, v0 ): argument
117 if intype == GENERATE:
122 def point( intype, outtype, ptr, v0 ): argument
123 print ' (' + ptr + ')[0] = ' + vert( intype, outtype, v0 ) + ';'
125 def line( intype, outtype, ptr, v0, v1 ): argument
126 print ' (' + ptr + ')[0] = ' + vert( intype, outtype, v0 ) + ';'
127 print ' (' + ptr + ')[1] = ' + vert( intype, outtype, v1 ) + ';'
129 def tri( intype, outtype, ptr, v0, v1, v2 ): argument
130 print ' (' + ptr + ')[0] = ' + vert( intype, outtype, v0 ) + ';'
131 print ' (' + ptr + ')[1] = ' + vert( intype, outtype, v1 ) + ';'
[all …]
/external/libmtp/src/
Dlibmtp.c164 static uint16_t map_libmtp_type_to_ptp_type(LIBMTP_filetype_t intype);
165 static LIBMTP_filetype_t map_ptp_type_to_libmtp_type(uint16_t intype);
167 static LIBMTP_property_t map_ptp_property_to_libmtp_property(uint16_t intype);
418 static uint16_t map_libmtp_type_to_ptp_type(LIBMTP_filetype_t intype) in map_libmtp_type_to_ptp_type() argument
425 if(current->id == intype) { in map_libmtp_type_to_ptp_type()
441 static LIBMTP_filetype_t map_ptp_type_to_libmtp_type(uint16_t intype) in map_ptp_type_to_libmtp_type() argument
448 if(current->ptp_id == intype) { in map_ptp_type_to_libmtp_type()
807 char const * LIBMTP_Get_Filetype_Description(LIBMTP_filetype_t intype) in LIBMTP_Get_Filetype_Description() argument
814 if(current->id == intype) { in LIBMTP_Get_Filetype_Description()
/external/llvm/lib/Target/AArch64/
DAArch64InstrFormats.td5096 RegisterOperand outtype, RegisterOperand intype,
5099 : I<(outs outtype:$Rd), (ins intype:$Rn), asm,
5117 RegisterOperand outtype, RegisterOperand intype,
5120 : I<(outs outtype:$dst), (ins outtype:$Rd, intype:$Rn), asm,