Lines Matching refs:eType
1932 int eType = sqlite3_value_type(argv[0]); in sha3Func() local
1945 if( eType==SQLITE_NULL ) return; in sha3Func()
1947 if( eType==SQLITE_BLOB ){ in sha3Func()
10719 int eType; /* SQLITE_NULL, INTEGER, REAL, TEXT, BLOB */ member
10745 switch( pSlot->eType ){ in idxRemFunc()
10767 pSlot->eType = sqlite3_value_type(argv[1]); in idxRemFunc()
10768 switch( pSlot->eType ){ in idxRemFunc()
10794 if( pSlot->eType==SQLITE_BLOB ){ in idxRemFunc()
11652 static int dbdataValueBytes(int eType){ in dbdataValueBytes() argument
11653 switch( eType ){ in dbdataValueBytes()
11671 if( eType>0 ){ in dbdataValueBytes()
11672 return ((eType-12) / 2); in dbdataValueBytes()
11684 int eType, in dbdataValue() argument
11688 if( eType>=0 && dbdataValueBytes(eType)<=nData ){ in dbdataValue()
11689 switch( eType ){ in dbdataValue()
11706 switch( eType ){ in dbdataValue()
11715 if( eType==7 ){ in dbdataValue()
11726 int n = ((eType-12) / 2); in dbdataValue()
11727 if( eType % 2 ){ in dbdataValue()