Searched refs:pThis (Results 1 – 3 of 3) sorted by relevance
| /netbsd-src/usr.bin/telnet/ |
| H A D | utilities.c | 130 unsigned char *pThis; in Dump() local 138 pThis = buffer; in Dump() 141 while (pThis < buffer) { in Dump() 143 (((*pThis)&0xff) == 0xff) ? '*' : ' ', in Dump() 144 (*pThis)&0xff); in Dump() 145 pThis++; in Dump() 151 while (pThis < buffer) { in Dump() 152 fprintf(NetTrace, "%.2x", (*pThis)&0xff); in Dump() 153 pThis++; in Dump()
|
| /netbsd-src/external/public-domain/sqlite/dist/ |
| H A D | shell.c | 6423 ReStateSet aStateSet[2], *pThis, *pNext; in re_match() local 6465 pThis = pNext; in re_match() 6469 for(i=0; i<pThis->nState; i++){ in re_match() 6470 int x = pThis->aState[i]; in re_match() 6477 if( cPrev==RE_START ) re_add_state(pThis, x+1); in re_match() 6509 if( re_word_char(c)!=re_word_char(cPrev) ) re_add_state(pThis, x+1); in re_match() 6514 re_add_state(pThis, x+1); in re_match() 6518 re_add_state(pThis, x+pRe->aArg[x]); in re_match() 6519 re_add_state(pThis, x+1); in re_match() 6523 re_add_state(pThis, x+pRe->aArg[x]); in re_match()
|
| H A D | sqlite3.c | 52883 MemFile *pThis = (MemFile*)pFile; 52884 MemStore *p = pThis->pStore; 52886 if( eLock<=pThis->eLock ) return SQLITE_OK; 52890 assert( pThis->eLock<=SQLITE_LOCK_SHARED || p->nWrLock==1 ); 52891 assert( pThis->eLock==SQLITE_LOCK_NONE || p->nRdLock>=1 ); 52898 assert( pThis->eLock==SQLITE_LOCK_NONE ); 52909 assert( pThis->eLock>=SQLITE_LOCK_SHARED ); 52910 if( ALWAYS(pThis->eLock==SQLITE_LOCK_SHARED) ){ 52922 assert( pThis->eLock>=SQLITE_LOCK_SHARED ); 52925 }else if( pThis->eLock==SQLITE_LOCK_SHARED ){ [all …]
|