Lines Matching defs:i8
14887 typedef INT8_TYPE i8; /* 1-byte signed integer */
17936 i8 nArg; /* Number of arguments. -1 means unlimited */
18679 i8 default_rc; /* Comparison result if keys are equal */
18681 i8 r1; /* Value to return if (lhs < rhs) */
18682 i8 r2; /* Value to return if (lhs > rhs) */
21086 SQLITE_PRIVATE void sqlite3HaltConstraint(Parse*, int, int, char*, i8, u8);
23182 i8 iDb; /* Index of cursor database in db->aDb[] */
70056 i8 iPage; /* Index of current page in apPage */
88859 #define ONE_BYTE_INT(x) ((i8)(x)[0])
88860 #define TWO_BYTE_INT(x) (256*(i8)((x)[0])|(x)[1])
88861 #define THREE_BYTE_INT(x) (65536*(i8)((x)[0])|((x)[1]<<8)|(x)[2])
88863 #define FOUR_BYTE_INT(x) (16777216*(i8)((x)[0])|((x)[1]<<16)|((x)[2]<<8)|(x)[3])
126707 i8 p4type, /* P4_STATIC or P4_TRANSIENT */
156941 i8 isOrdered; /* True if satisfies ORDER BY */
157002 i8 isOrdered; /* No. of ORDER BY terms satisfied. -1 for unknown */
157268 i8 nOBSat; /* Number of ORDER BY terms satisfied by indices */
166374 pNew->u.vtab.isOrdered = (i8)(pIdxInfo->orderByConsumed ?
166897 static i8 wherePathSatisfiesOrderBy(
167211 if( obSat==obDone ) return (i8)nOrderBy;
167436 i8 isOrdered; /* isOrdered for (pFrom+pWLoop) */