Lines Matching refs:eType
1884 int eType = sqlite3_value_type(argv[0]); in sha3Func() local
1897 if( eType==SQLITE_NULL ) return; in sha3Func()
1899 if( eType==SQLITE_BLOB ){ in sha3Func()
8285 int eType; /* SQLITE_NULL, INTEGER, REAL, TEXT, BLOB */ member
8311 switch( pSlot->eType ){ in idxRemFunc()
8333 pSlot->eType = sqlite3_value_type(argv[1]); in idxRemFunc()
8334 switch( pSlot->eType ){ in idxRemFunc()
8360 if( pSlot->eType==SQLITE_BLOB ){ in idxRemFunc()
9212 static int dbdataValueBytes(int eType){ in dbdataValueBytes() argument
9213 switch( eType ){ in dbdataValueBytes()
9231 if( eType>0 ){ in dbdataValueBytes()
9232 return ((eType-12) / 2); in dbdataValueBytes()
9244 int eType, in dbdataValue() argument
9248 if( eType>=0 && dbdataValueBytes(eType)<=nData ){ in dbdataValue()
9249 switch( eType ){ in dbdataValue()
9266 switch( eType ){ in dbdataValue()
9275 if( eType==7 ){ in dbdataValue()
9286 int n = ((eType-12) / 2); in dbdataValue()
9287 if( eType % 2 ){ in dbdataValue()