Lines Matching full:upper
120 ** The hard upper limit here is 32676. Most database people will
195 ** and 30. The upper bound on 30 is because a 32-bit integer bitmap
210 /* Maximum page size. The upper bound on this value is 32768. This a limit
2788 ** [limits | hard upper bound]
2792 ** ^Attempts to increase a limit above its hard upper bound are
2793 ** silently truncated to the hard upper bound.
4478 ** is an upper bound on the total memory allocation for all threads. In
10627 /* An array to map all upper-case characters into their corresponding
10684 ** Bit 0x20 is set if the mapped character requires translation to upper
10686 ** If x is a lower-case ASCII character, then its upper-case equivalent
12245 ** error in sqlite3_os_init() by the upper layers can be tested.
24654 ** in the OS-X msdos filesystem. In order to avoid problems with upper
25408 /* Assert that the upper layer has set one of the "file-type" flags. */
25430 /* If zName is NULL, the upper layer is requesting a temp file. */
31047 ** upper bound on the size of allocated memory. No memory is freed
49895 ** upper 4 bytes. Return the result.
54630 ** to get u.am.nField type values. u.am.offset is an upper bound on this. But
67157 ** "sqlite_" (in upper, lower or mixed case). This portion of the namespace
71575 ** Implementation of the upper() and lower() SQL functions.
71751 ** able to participate in upper-case-to-lower-case mappings in EBCDIC
72736 FUNCTION(upper, 1, 0, 0, upperFunc ),
88808 ** by scanning an index for a range of values. The range may have an upper
88809 ** bound, a lower bound, or both. The WHERE clause terms that set the upper
88818 ** If either of the upper or lower bound is not present, then NULL is passed in
88852 WhereTerm *pUpper, /* Upper bound on the range. ex: "x<455" Might be NULL */
94291 ** an upper-to-lower case map. On EBCDIC machines we also need
95980 ** comparison". SQLite's knowledge of upper and lower case equivalents
96892 ** This array defines hard upper bounds on limit values. The
102788 ** Any upper-case characters in the US-ASCII character set ([A-Z])
102789 ** are converted to lower case. Upper-case UTF characters are
110388 ** * Implementations of the SQL scalar upper() and lower() functions
110663 ** Implementations of scalar functions for case mapping - upper() and
110664 ** lower(). Function upper() converts its input to upper-case (ABC).
110671 ** To utilise "general" case mapping, the upper() or lower() scalar
110674 ** upper('ABC') -> 'abc'
110677 ** To access ICU "language specific" case mapping, upper() or lower()
110681 ** of upper() or lower().
110824 {"upper", 1, SQLITE_UTF16, (void*)1, icuCaseFunc16},
110825 {"upper", 2, SQLITE_UTF16, (void*)1, icuCaseFunc16},
110829 {"upper", 1, SQLITE_UTF8, (void*)1, icuCaseFunc16},
110830 {"upper", 2, SQLITE_UTF8, (void*)1, icuCaseFunc16},