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 | 6493 ReStateSet aStateSet[2], *pThis, *pNext; in re_match() local 6535 pThis = pNext; in re_match() 6539 for(i=0; i<pThis->nState; i++){ in re_match() 6540 int x = pThis->aState[i]; in re_match() 6547 if( cPrev==RE_START ) re_add_state(pThis, x+1); in re_match() 6579 if( re_word_char(c)!=re_word_char(cPrev) ) re_add_state(pThis, x+1); in re_match() 6584 re_add_state(pThis, x+1); in re_match() 6588 re_add_state(pThis, x+pRe->aArg[x]); in re_match() 6589 re_add_state(pThis, x+1); in re_match() 6593 re_add_state(pThis, x+pRe->aArg[x]); in re_match()
|
H A D | sqlite3.c | 53234 MemFile *pThis = (MemFile*)pFile; 53235 MemStore *p = pThis->pStore; 53237 if( eLock<=pThis->eLock ) return SQLITE_OK; 53241 assert( pThis->eLock<=SQLITE_LOCK_SHARED || p->nWrLock==1 ); 53242 assert( pThis->eLock==SQLITE_LOCK_NONE || p->nRdLock>=1 ); 53249 assert( pThis->eLock==SQLITE_LOCK_NONE ); 53260 assert( pThis->eLock>=SQLITE_LOCK_SHARED ); 53261 if( ALWAYS(pThis->eLock==SQLITE_LOCK_SHARED) ){ 53273 assert( pThis->eLock>=SQLITE_LOCK_SHARED ); 53276 }else if( pThis->eLock==SQLITE_LOCK_SHARED ){ [all …]
|