Lines Matching refs:octet
3956 ** specifying an octet value. ^Before the path or query components of a
3959 ** corresponding octet. If this process generates an invalid UTF-8 encoding,
176419 int octet = (sqlite3HexToInt(zUri[iIn++]) << 4);
176420 octet += sqlite3HexToInt(zUri[iIn++]);
176422 assert( octet>=0 && octet<256 );
176423 if( octet==0 ){
176444 c = octet;