Searched refs:pThis (Results 1 – 4 of 4) sorted by relevance
| /freebsd/contrib/telnet/telnet/ |
| H A D | utilities.c | 127 unsigned char *pThis; in Dump() local 135 pThis = buffer; in Dump() 138 while (pThis < buffer) { in Dump() 140 (((*pThis)&0xff) == 0xff) ? '*' : ' ', in Dump() 141 (*pThis)&0xff); in Dump() 142 pThis++; in Dump() 148 while (pThis < buffer) { in Dump() 149 fprintf(NetTrace, "%.2x", (*pThis)&0xff); in Dump() 150 pThis++; in Dump()
|
| /freebsd/crypto/heimdal/appl/telnet/telnet/ |
| H A D | utilities.c | 98 unsigned char *pThis; in Dump() local 106 pThis = buffer; in Dump() 109 while (pThis < buffer) { in Dump() 111 (((*pThis)&0xff) == 0xff) ? '*' : ' ', in Dump() 112 (*pThis)&0xff); in Dump() 113 pThis++; in Dump() 119 while (pThis < buffer) { in Dump() 120 fprintf(NetTrace, "%.2x", (*pThis)&0xff); in Dump() 121 pThis++; in Dump()
|
| /freebsd/contrib/sqlite3/ |
| H A D | sqlite3.c | 55630 MemFile *pThis = (MemFile*)pFile; local 55631 MemStore *p = pThis->pStore; 55633 if( eLock<=pThis->eLock ) return SQLITE_OK; 55637 assert( pThis->eLock<=SQLITE_LOCK_SHARED || p->nWrLock==1 ); 55638 assert( pThis->eLock==SQLITE_LOCK_NONE || p->nRdLock>=1 ); 55645 assert( pThis->eLock==SQLITE_LOCK_NONE ); 55656 assert( pThis->eLock>=SQLITE_LOCK_SHARED ); 55657 if( ALWAYS(pThis->eLock==SQLITE_LOCK_SHARED) ){ 55669 assert( pThis->eLock>=SQLITE_LOCK_SHARED ); 55672 }else if( pThis->eLock==SQLITE_LOCK_SHARED ){ [all …]
|
| H A D | shell.c | 8962 ReStateSet aStateSet[2], *pThis, *pNext; in re_match() local 9004 pThis = pNext; in re_match() 9008 for(i=0; i<pThis->nState; i++){ in re_match() 9009 int x = pThis->aState[i]; in re_match() 9016 if( cPrev==RE_START ) re_add_state(pThis, x+1); in re_match() 9048 if( re_word_char(c)!=re_word_char(cPrev) ) re_add_state(pThis, x+1); in re_match() 9053 re_add_state(pThis, x+1); in re_match() 9057 re_add_state(pThis, x+pRe->aArg[x]); in re_match() 9058 re_add_state(pThis, x+1); in re_match() 9062 re_add_state(pThis, x+pRe->aArg[x]); in re_match()
|