Home
last modified time | relevance | path

Searched refs:lastcmd (Results 1 – 19 of 19) sorted by relevance

/external/mesa3d/src/mesa/drivers/dri/r200/
Dr200_ioctl.h100 memcpy( rmesa->hw.ATOM.lastcmd, rmesa->hw.ATOM.cmd, \
107 if (memcmp(atom->cmd, atom->lastcmd, atom->cmd_size*4)) { in R200_DB_STATECHANGE()
113 atom->cmd = atom->lastcmd; in R200_DB_STATECHANGE()
114 atom->lastcmd = tmp; in R200_DB_STATECHANGE()
Dradeon_common_context.h133 GLuint *lastcmd; /* one or more cmd's */ member
Dradeon_common_context.c231 free(atom->lastcmd); in radeon_destroy_atom_list()
Dr200_state_init.c634 rmesa->hw.ATOM.lastcmd = (GLuint *) calloc(SZ, sizeof(int)); \ in r200InitState()
/external/mesa3d/src/mesa/drivers/dri/radeon/
Dradeon_ioctl.h109 memcpy( rmesa->hw.ATOM.lastcmd, rmesa->hw.ATOM.cmd, \
115 if (memcmp(atom->cmd, atom->lastcmd, atom->cmd_size*4)) { in RADEON_DB_STATECHANGE()
121 atom->cmd = atom->lastcmd; in RADEON_DB_STATECHANGE()
122 atom->lastcmd = tmp; in RADEON_DB_STATECHANGE()
Dradeon_common_context.h133 GLuint *lastcmd; /* one or more cmd's */ member
Dradeon_common_context.c231 free(atom->lastcmd); in radeon_destroy_atom_list()
Dradeon_state_init.c523 rmesa->hw.ATOM.lastcmd = (GLuint *) calloc(SZ, sizeof(int)); \ in radeonInitState()
/external/python/cpython2/Lib/
Dcmd.py70 lastcmd = '' variable in Cmd
211 self.lastcmd = line
213 self.lastcmd = ''
230 if self.lastcmd:
231 return self.onecmd(self.lastcmd)
Dpdb.py171 lastcmd_back = self.lastcmd
175 self.lastcmd = lastcmd_back
722 self.lastcmd = p.lastcmd
783 self.lastcmd = 'list'
/external/python/cpython3/Lib/
Dcmd.py67 lastcmd = '' variable in Cmd
207 self.lastcmd = line
209 self.lastcmd = ''
226 if self.lastcmd:
227 return self.onecmd(self.lastcmd)
Dpdb.py274 lastcmd_back = self.lastcmd
278 self.lastcmd = lastcmd_back
1106 self.lastcmd = p.lastcmd
1213 self.lastcmd = 'list'
/external/python/cpython3/Lib/curses/
Dtextpad.py48 self.lastcmd = None
99 self.lastcmd = ch
/external/python/cpython2/Lib/curses/
Dtextpad.py48 self.lastcmd = None
99 self.lastcmd = ch
/external/python/cpython3/Lib/idlelib/
Dundo.py123 lastcmd = self.undolist[self.pointer-1]
124 if lastcmd.merge(cmd):
/external/python/cpython2/Lib/idlelib/
DUndoDelegator.py121 lastcmd = self.undolist[self.pointer-1]
122 if lastcmd.merge(cmd):
/external/mksh/src/
Dedit.c3512 static char lastcmd[MAXVICMD]; /* last non-move command */ variable
3916 switch (vi_cmd(lastac, lastcmd)) { in vi_hook()
3923 if (lastcmd[0] == 's' || in vi_hook()
3924 ksh_eq(lastcmd[0], 'C', 'c')) { in vi_hook()
4050 lastcmd[0] = 'a'; in vi_insert()
4053 if (lastcmd[0] == 's' || ksh_eq(lastcmd[0], 'C', 'c')) in vi_insert()
4122 memmove(lastcmd, cmd, MAXVICMD); in vi_cmd()
/external/python/cpython2/Doc/library/
Dcmd.rst167 .. attribute:: Cmd.lastcmd
/external/python/cpython3/Doc/library/
Dcmd.rst169 .. attribute:: Cmd.lastcmd