HomeSort by relevance Sort by last modified time
    Searched refs:constmode (Results 1 - 10 of 10) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/bgen/bgen/
bgenBuffer.py 41 def getArgDeclarations(self, name, reference=False, constmode=False, outmode=False):
44 return (self.getBufferDeclarations(name, constmode, outmode) +
47 def getBufferDeclarations(self, name, constmode=False, outmode=False):
48 return self.getInputBufferDeclarations(name, constmode) + \
49 self.getOutputBufferDeclarations(name, constmode, outmode)
51 def getInputBufferDeclarations(self, name, constmode=False):
52 if constmode:
58 def getOutputBufferDeclarations(self, name, constmode=False, outmode=False):
59 if constmode:
123 def getOutputBufferDeclarations(self, name, constmode=False, outmode=False):
    [all...]
bgenVariable.py 17 ConstMode = 64
50 constmode = False
53 constmode = (self.flags & ConstMode)
56 reference=refmode, constmode=constmode, outmode=outmode)
bgenHeapBuffer.py 19 def getOutputBufferDeclarations(self, name, constmode=False, outmode=False):
20 if constmode:
83 def getInputBufferDeclarations(self, name, constmode=False):
bgenType.py 32 def getArgDeclarations(self, name, reference=False, constmode=False, outmode=False):
39 if constmode:
220 def getArgDeclarations(self, name, reference=False, constmode=False, outmode=False):
  /external/python/cpython2/Tools/bgen/bgen/
bgenBuffer.py 41 def getArgDeclarations(self, name, reference=False, constmode=False, outmode=False):
44 return (self.getBufferDeclarations(name, constmode, outmode) +
47 def getBufferDeclarations(self, name, constmode=False, outmode=False):
48 return self.getInputBufferDeclarations(name, constmode) + \
49 self.getOutputBufferDeclarations(name, constmode, outmode)
51 def getInputBufferDeclarations(self, name, constmode=False):
52 if constmode:
58 def getOutputBufferDeclarations(self, name, constmode=False, outmode=False):
59 if constmode:
123 def getOutputBufferDeclarations(self, name, constmode=False, outmode=False)
    [all...]
bgenVariable.py 17 ConstMode = 64
50 constmode = False
53 constmode = (self.flags & ConstMode)
56 reference=refmode, constmode=constmode, outmode=outmode)
bgenHeapBuffer.py 19 def getOutputBufferDeclarations(self, name, constmode=False, outmode=False):
20 if constmode:
83 def getInputBufferDeclarations(self, name, constmode=False):
bgenType.py 32 def getArgDeclarations(self, name, reference=False, constmode=False, outmode=False):
39 if constmode:
220 def getArgDeclarations(self, name, reference=False, constmode=False, outmode=False):
  /external/mesa3d/src/gallium/drivers/freedreno/a3xx/
fd3_program.c 153 int constmode; local
204 /* seems like vs->constlen + fs->constlen > 256, then CONSTMODE=1 */
205 constmode = ((vp->constlen + fp->constlen) > 256) ? 1 : 0;
233 A3XX_HLSQ_CONTROL_0_REG_CONSTMODE(constmode) |
254 OUT_RING(ring, A3XX_SP_SP_CTRL_REG_CONSTMODE(constmode) |
  /external/mesa3d/src/gallium/drivers/freedreno/a4xx/
fd4_program.c 222 int constmode; local
234 /* blob seems to always use constmode currently: */
235 constmode = 1;
276 A4XX_HLSQ_CONTROL_0_REG_CONSTMODE(constmode) |

Completed in 757 milliseconds