Home | History | Annotate | Download | only in dist

Lines Matching defs:octet

3186 ** specifying an octet value. ^Before the path or query components of a
3189 ** corresponding octet. If this process generates an invalid UTF-8 encoding,
114408 int octet = (sqlite3HexToInt(zUri[iIn++]) << 4);
114409 octet += sqlite3HexToInt(zUri[iIn++]);
114411 assert( octet>=0 && octet<256 );
114412 if( octet==0 ){
114426 c = octet;