Searched refs:pThis (Results 1 – 5 of 5) sorted by relevance
| /freebsd-12-stable/contrib/telnet/telnet/ |
| D | utilities.c | 129 unsigned char *pThis; in Dump() local 137 pThis = buffer; in Dump() 140 while (pThis < buffer) { in Dump() 142 (((*pThis)&0xff) == 0xff) ? '*' : ' ', in Dump() 143 (*pThis)&0xff); in Dump() 144 pThis++; in Dump() 150 while (pThis < buffer) { in Dump() 151 fprintf(NetTrace, "%.2x", (*pThis)&0xff); in Dump() 152 pThis++; in Dump()
|
| /freebsd-12-stable/crypto/heimdal/appl/telnet/telnet/ |
| 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-12-stable/contrib/sqlite3/ |
| D | sqlite3.c | 52519 MemFile *pThis = (MemFile*)pFile; 52520 MemStore *p = pThis->pStore; 52522 if( eLock<=pThis->eLock ) return SQLITE_OK; 52526 assert( pThis->eLock<=SQLITE_LOCK_SHARED || p->nWrLock==1 ); 52527 assert( pThis->eLock==SQLITE_LOCK_NONE || p->nRdLock>=1 ); 52534 assert( pThis->eLock==SQLITE_LOCK_NONE ); 52545 assert( pThis->eLock>=SQLITE_LOCK_SHARED ); 52546 if( ALWAYS(pThis->eLock==SQLITE_LOCK_SHARED) ){ 52558 assert( pThis->eLock>=SQLITE_LOCK_SHARED ); 52561 }else if( pThis->eLock==SQLITE_LOCK_SHARED ){ [all …]
|
| D | shell.c | 5699 ReStateSet aStateSet[2], *pThis, *pNext; in re_match() local 5741 pThis = pNext; in re_match() 5745 for(i=0; i<pThis->nState; i++){ in re_match() 5746 int x = pThis->aState[i]; in re_match() 5753 if( cPrev==RE_START ) re_add_state(pThis, x+1); in re_match() 5785 if( re_word_char(c)!=re_word_char(cPrev) ) re_add_state(pThis, x+1); in re_match() 5790 re_add_state(pThis, x+1); in re_match() 5794 re_add_state(pThis, x+pRe->aArg[x]); in re_match() 5795 re_add_state(pThis, x+1); in re_match() 5799 re_add_state(pThis, x+pRe->aArg[x]); in re_match()
|
| /freebsd-12-stable/crypto/heimdal/lib/sqlite/ |
| D | sqlite3.c | 117637 char *pThis = 0; 117638 rc = fts3TermSelect(pTab, pToken, p->iColumn, &nThis, &pThis); 117640 fts3EvalPhraseMergeToken(pTab, p, iToken, pThis, nThis);
|