• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/Heimdal-398.1.2/lib/sqlite/

Lines Matching defs:min

2043 #define SQLITE_CONFIG_HEAP          8  /* void*, int nByte, int min */
2634 ** ^If M is the size of the prior allocation, then min(N,M) bytes
10598 #define WHERE_ORDERBY_MIN 0x0001 /* ORDER BY processing for min() func */
13283 ** min minimum allowed value of the integer
13295 int min;
13303 min = va_arg(ap, int);
13315 if( val<min || val>max || (nextC!=0 && nextC!=*zDate) ){
47441 ** the cell size drop below the min embedded payload fraction.
47443 ** The min leaf payload fraction is like the min embedded payload fraction
55988 /* For intKey leaf pages, check that the min/max keys are in order
55998 "Rowid %lld out of order (max larger than parent min of %lld)",
56004 "Rowid %lld out of order (min less than parent min of %lld)",
56018 "Rowid %lld out of order (min less than parent max of %lld)",
64856 ** be returned. This is used by the built-in min(), max() and nullif()
84083 ** Implementation of the non-aggregate min() and max() functions
84091 int mask; /* 0 for min() or 0xffffffff for max() */
85379 ** Routines to implement min() and max() aggregate functions.
85398 /* This step function is used for both the min() and max() aggregates,
85401 ** sqlite3_user_data() function returns (void *)-1. For min() it
85404 ** aggregate, or 0 for min().
85581 FUNCTION(min, -1, 0, 1, minmaxFunc ),
85582 FUNCTION(min, 0, 0, 1, 0 ),
85583 AGGREGATE(min, 1, 0, 1, minmaxStep, minMaxFinalize ),
95416 ** is a min() or max() query. Return WHERE_ORDERBY_MIN or WHERE_ORDERBY_MAX if
95418 ** a min()/max() query if:
95423 ** either min(x) or max(x), where x is a column reference.
95437 if( sqlite3StrICmp(pExpr->u.zToken,"min")==0 ){
96736 ** SELECT min(x) FROM ...
96750 ** + If the query is a "SELECT min(x)", then the loop coded by
96785 (flag==WHERE_ORDERBY_MIN?"min":"max")));
104364 int isMinQuery = 0; /* If this is an optimized SELECT min(x).. */
104385 ** was passed to this function to implement a "SELECT min(x) ..."
110535 /* cap min request size at 2^12 */