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 | shell.c | 7275 ReStateSet aStateSet[2], *pThis, *pNext; in re_match() local 7317 pThis = pNext; in re_match() 7321 for(i=0; i<pThis->nState; i++){ in re_match() 7322 int x = pThis->aState[i]; in re_match() 7329 if( cPrev==RE_START ) re_add_state(pThis, x+1); in re_match() 7361 if( re_word_char(c)!=re_word_char(cPrev) ) re_add_state(pThis, x+1); in re_match() 7366 re_add_state(pThis, x+1); in re_match() 7370 re_add_state(pThis, x+pRe->aArg[x]); in re_match() 7371 re_add_state(pThis, x+1); in re_match() 7375 re_add_state(pThis, x+pRe->aArg[x]); in re_match()
|
| H A D | sqlite3.c | 54183 MemFile *pThis = (MemFile*)pFile; local 54184 MemStore *p = pThis->pStore; 54186 if( eLock<=pThis->eLock ) return SQLITE_OK; 54190 assert( pThis->eLock<=SQLITE_LOCK_SHARED || p->nWrLock==1 ); 54191 assert( pThis->eLock==SQLITE_LOCK_NONE || p->nRdLock>=1 ); 54198 assert( pThis->eLock==SQLITE_LOCK_NONE ); 54209 assert( pThis->eLock>=SQLITE_LOCK_SHARED ); 54210 if( ALWAYS(pThis->eLock==SQLITE_LOCK_SHARED) ){ 54222 assert( pThis->eLock>=SQLITE_LOCK_SHARED ); 54225 }else if( pThis->eLock==SQLITE_LOCK_SHARED ){ [all …]
|