Home
last modified time | relevance | path

Searched refs:constmode (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython2/Tools/bgen/bgen/
DbgenBuffer.py41 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 …]
DbgenVariable.py50 constmode = False
53 constmode = (self.flags & ConstMode)
56 reference=refmode, constmode=constmode, outmode=outmode)
DbgenHeapBuffer.py19 def getOutputBufferDeclarations(self, name, constmode=False, outmode=False): argument
20 if constmode:
83 def getInputBufferDeclarations(self, name, constmode=False): argument
DbgenType.py32 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/
Dfd3_program.c153 int constmode; in fd3_program_emit() local
205 constmode = ((vp->constlen + fp->constlen) > 256) ? 1 : 0; in fd3_program_emit()
233 A3XX_HLSQ_CONTROL_0_REG_CONSTMODE(constmode) | in fd3_program_emit()
254 OUT_RING(ring, A3XX_SP_SP_CTRL_REG_CONSTMODE(constmode) | in fd3_program_emit()
/external/mesa3d/src/gallium/drivers/freedreno/a4xx/
Dfd4_program.c222 int constmode; in fd4_program_emit() local
235 constmode = 1; in fd4_program_emit()
276 A4XX_HLSQ_CONTROL_0_REG_CONSTMODE(constmode) | in fd4_program_emit()