Searched refs:constmode (Results 1 – 6 of 6) sorted by relevance
/external/python/cpython2/Tools/bgen/bgen/ |
D | bgenBuffer.py | 41 def getArgDeclarations(self, name, reference=False, constmode=False, outmode=False): argument 44 return (self.getBufferDeclarations(name, constmode, outmode) + 47 def getBufferDeclarations(self, name, constmode=False, outmode=False): argument 48 return self.getInputBufferDeclarations(name, constmode) + \ 49 self.getOutputBufferDeclarations(name, constmode, outmode) 51 def getInputBufferDeclarations(self, name, constmode=False): argument 52 if constmode: 58 def getOutputBufferDeclarations(self, name, constmode=False, outmode=False): argument 59 if constmode: 123 def getOutputBufferDeclarations(self, name, constmode=False, outmode=False): argument [all …]
|
D | bgenVariable.py | 50 constmode = False 53 constmode = (self.flags & ConstMode) 56 reference=refmode, constmode=constmode, outmode=outmode)
|
D | bgenHeapBuffer.py | 19 def getOutputBufferDeclarations(self, name, constmode=False, outmode=False): argument 20 if constmode: 83 def getInputBufferDeclarations(self, name, constmode=False): argument
|
D | bgenType.py | 32 def getArgDeclarations(self, name, reference=False, constmode=False, outmode=False): argument 39 if constmode: 220 def getArgDeclarations(self, name, reference=False, constmode=False, outmode=False): argument
|
/external/mesa3d/src/gallium/drivers/freedreno/a3xx/ |
D | fd3_program.c | 107 int constmode; in fd3_program_emit() local 159 constmode = ((vp->constlen + fp->constlen) > 256) ? 1 : 0; in fd3_program_emit() 196 A3XX_HLSQ_CONTROL_0_REG_CONSTMODE(constmode) | in fd3_program_emit() 222 OUT_RING(ring, A3XX_SP_SP_CTRL_REG_CONSTMODE(constmode) | in fd3_program_emit()
|
/external/mesa3d/src/gallium/drivers/freedreno/a4xx/ |
D | fd4_program.c | 169 int constmode; in fd4_program_emit() local 182 constmode = 1; in fd4_program_emit() 224 A4XX_HLSQ_CONTROL_0_REG_CONSTMODE(constmode) | in fd4_program_emit()
|