Home
last modified time | relevance | path

Searched refs:intype (Results 1 – 7 of 7) 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/chromium_org/third_party/mesa/src/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/qemu/target-arm/
Dneon_helper.c1522 #define DO_ABD(dest, x, y, intype, arithtype) do { \ argument
1523 arithtype tmp_x = (intype)(x); \
1524 arithtype tmp_y = (intype)(y); \
/external/llvm/lib/Target/AArch64/
DAArch64InstrFormats.td4728 RegisterOperand outtype, RegisterOperand intype,
4731 : I<(outs outtype:$Rd), (ins intype:$Rn), asm,
4749 RegisterOperand outtype, RegisterOperand intype,
4752 : I<(outs outtype:$dst), (ins outtype:$Rd, intype:$Rn), asm,