Lines Matching refs:eType
3342 int eType = sqlite3_value_type(argv[0]); in sha3Func() local
3355 if( eType==SQLITE_NULL ) return; in sha3Func()
3357 if( eType==SQLITE_BLOB ){ in sha3Func()
3841 int eType = sqlite3_value_type(pIn); in decimal_new() local
3842 if( bTextOnly && (eType==SQLITE_FLOAT || eType==SQLITE_BLOB) ){ in decimal_new()
3843 eType = SQLITE_TEXT; in decimal_new()
3845 switch( eType ){ in decimal_new()
13409 int eType; /* SQLITE_NULL, INTEGER, REAL, TEXT, BLOB */ member
13435 switch( pSlot->eType ){ in idxRemFunc()
13457 pSlot->eType = sqlite3_value_type(argv[1]); in idxRemFunc()
13458 switch( pSlot->eType ){ in idxRemFunc()
13485 if( pSlot->eType==SQLITE_BLOB ){ in idxRemFunc()
15883 static int dbdataValueBytes(int eType){ in dbdataValueBytes() argument
15884 switch( eType ){ in dbdataValueBytes()
15902 if( eType>0 ){ in dbdataValueBytes()
15903 return ((eType-12) / 2); in dbdataValueBytes()
15916 int eType, in dbdataValue() argument
15920 if( eType>=0 ){ in dbdataValue()
15921 if( dbdataValueBytes(eType)<=nData ){ in dbdataValue()
15922 switch( eType ){ in dbdataValue()
15939 switch( eType ){ in dbdataValue()
15948 if( eType==7 ){ in dbdataValue()
15959 int n = ((eType-12) / 2); in dbdataValue()
15960 if( eType % 2 ){ in dbdataValue()
15980 if( eType==7 ){ in dbdataValue()
15982 }else if( eType<7 ){ in dbdataValue()
15984 }else if( eType%2 ){ in dbdataValue()
18553 int eType = 0; in recoverIsValidPage() local
18556 eType = (int)a[0]; in recoverIsValidPage()
18557 if( eType!=0x02 && eType!=0x05 && eType!=0x0A && eType!=0x0D ) return 0; in recoverIsValidPage()
18585 if( eType==0x02 || eType==0x05 ){ in recoverIsValidPage()
18599 if( eType==0x05 || eType==0x02 ) nByte += 4; in recoverIsValidPage()
18601 if( eType==0x0D ){ in recoverIsValidPage()
18605 if( eType!=0x05 ){ in recoverIsValidPage()
18606 int X = (eType==0x0D) ? n-35 : (((n-12)*64/255)-23); in recoverIsValidPage()