Home
last modified time | relevance | path

Searched refs:type0 (Results 1 – 1 of 1) sorted by relevance

/sqlite-3.40.0/src/
H A Dfunc.c2142 int type0; in math1Func() local
2146 type0 = sqlite3_value_numeric_type(argv[0]); in math1Func()
2147 if( type0!=SQLITE_INTEGER && type0!=SQLITE_FLOAT ) return; in math1Func()
2164 int type0, type1; in math2Func() local
2168 type0 = sqlite3_value_numeric_type(argv[0]); in math2Func()
2169 if( type0!=SQLITE_INTEGER && type0!=SQLITE_FLOAT ) return; in math2Func()
2201 int type0; in signFunc() local
2205 type0 = sqlite3_value_numeric_type(argv[0]); in signFunc()
2206 if( type0!=SQLITE_INTEGER && type0!=SQLITE_FLOAT ) return; in signFunc()