/external/mesa3d/src/gallium/auxiliary/indices/ |
D | u_unfilled_gen.py | 95 def vert( intype, outtype, v0 ): argument 97 return '(' + outtype + ')(' + v0 + ')' 99 return '(' + outtype + ')in[' + v0 + ']' 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 ) [all …]
|
D | u_indices_gen.py | 106 def vert( intype, outtype, v0 ): argument 108 return '(' + outtype + ')(' + v0 + ')' 110 return '(' + outtype + ')in[' + v0 + ']' 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 ) + ';' [all …]
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/indices/ |
D | u_unfilled_gen.py | 95 def vert( intype, outtype, v0 ): argument 97 return '(' + outtype + ')(' + v0 + ')' 99 return '(' + outtype + ')in[' + v0 + ']' 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 ) [all …]
|
D | u_indices_gen.py | 106 def vert( intype, outtype, v0 ): argument 108 return '(' + outtype + ')(' + v0 + ')' 110 return '(' + outtype + ')in[' + v0 + ']' 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 ) + ';' [all …]
|
/external/deqp/modules/gles3/functional/ |
D | es3fPixelBufferObjectTests.cpp | 206 std::string outtype = ""; in init() local 209 outtype = "vec4"; in init() 215 outtype = "vec4"; in init() 219 outtype = "ivec4"; in init() 223 outtype = "uvec4"; in init() 227 outtype = "vec4"; in init() 257 fragmentShaderSource << "layout (location = 0) out mediump " << outtype << " o_color;\n" in init() 260 "\to_color = " << outtype << "(v_color);\n" in init()
|
/external/llvm/lib/Target/AArch64/ |
D | AArch64InstrFormats.td | 4728 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, 4810 RegisterOperand outtype, RegisterOperand intype1, 4814 : I<(outs outtype:$Rd), (ins intype1:$Rn, intype2:$Rm), asm, 4836 RegisterOperand outtype, RegisterOperand intype1, 4840 : I<(outs outtype:$dst), (ins outtype:$Rd, intype1:$Rn, intype2:$Rm), asm,
|