Lines Matching defs:lhs
18033 i8 r1; /* Value to return if (lhs < rhs) */
18034 i8 r2; /* Value to return if (lhs > rhs) */
18261 ** a CASE expression or an IN expression of the form "<lhs> IN (<y>, <z>...)".
18263 ** the form "<lhs> IN (SELECT ...)". If the EP_xIsSelect bit is set in the
87129 i64 lhs = vdbeRecordDecodeInt(serial_type, &aKey1[d1]);
87131 if( lhs<rhs ){
87133 }else if( lhs>rhs ){
87300 i64 lhs;
87306 lhs = ONE_BYTE_INT(aKey);
87307 testcase( lhs<0 );
87311 lhs = TWO_BYTE_INT(aKey);
87312 testcase( lhs<0 );
87316 lhs = THREE_BYTE_INT(aKey);
87317 testcase( lhs<0 );
87322 lhs = (i64)*(int*)&y;
87323 testcase( lhs<0 );
87327 lhs = FOUR_BYTE_UINT(aKey+2) + (((i64)1)<<32)*TWO_BYTE_INT(aKey);
87328 testcase( lhs<0 );
87334 lhs = *(i64*)&x;
87335 testcase( lhs<0 );
87339 lhs = 0;
87342 lhs = 1;
87360 if( v>lhs ){
87362 }else if( v<lhs ){
155476 int iColumn = -1; /* Column index on lhs of IN operator */
191555 const void *lhs,
191558 char *z1 = fts3HashKey(*(Fts3HashElem **)lhs);
191560 int n1 = fts3HashKeysize(*(Fts3HashElem **)lhs);
220921 int nLeft, /* Number of bytes in lhs input */