Lines Matching refs:unsigned

19 typedef unsigned int u32;
20 typedef unsigned short int u16;
105 typedef unsigned char u8;
214 #define IsSpace(X) isspace((unsigned char)X)
215 #define IsDigit(X) isdigit((unsigned char)X)
216 #define ToLower(X) (char)tolower((unsigned char)X)
879 if( !isalpha((unsigned char)zName[0]) && zName[0]!='_' ) return '"';
881 if( !isalnum((unsigned char)zName[i]) && zName[i]!='_' ) return '"';
1138 unsigned statsOn; /* True to display memory stats before each finalize */
1139 unsigned mEqpLines; /* Mask of veritical lines in the EQP output graph */
1156 unsigned nProgress; /* Number of progress callbacks encountered */
1157 unsigned mxProgress; /* Maximum progress callbacks before failing */
1158 unsigned flgProgress; /* Flags for the progress callback */
1159 unsigned shellFlgs; /* Various flags */
1160 unsigned priorShFlgs; /* Saved copy of flags */
1402 unsigned char *p = 0;
1534 unsigned char *aBlob = (unsigned char*)pBlob;
1565 unsigned i = 0;
1680 unsigned int c;
1711 unsigned int c;
1810 unsigned i;
1812 if( needCsvQuote[((unsigned char*)z)[i]] ){
3145 static unsigned int savedSelectTrace;
3146 static unsigned int savedWhereTrace;
3148 unsigned int zero = 0;
3299 const unsigned char *z, /* Input text to be transformed */
3300 const unsigned char **pzTail, /* OUT: Tail of the input for next line */
3308 unsigned char *zOut; /* Output text */
3403 const unsigned char *a = sqlite3_column_blob(pStmt,i);
3435 const unsigned char *uz;
3443 const unsigned char **azNextLine = 0;
3481 const unsigned char *zNotUsed;
3487 uz = (const unsigned char*)sqlite3_column_name(pStmt,i);
3514 uz = (const unsigned char*)azQuoted[i];
3516 uz = (const unsigned char*)sqlite3_column_text(pStmt,i);
4818 static unsigned char *readHexDb(ShellState *p, int *pnData){
4819 unsigned char *a = 0;
4828 unsigned int x[16];
4912 const unsigned char *pBlob;
4918 pBlob = (const unsigned char*)sqlite3_value_blob(argv[0]);
4922 const unsigned char *a = &pBlob[iInt*4];
5172 unsigned char *aData;
5174 aData = (unsigned char*)readFile(zDbFilename, &nData);
5362 static void setOrClearFlag(ShellState *p, unsigned mFlag, const char *zArg){
5404 unsigned mType, /* The trace type */
5759 const unsigned char *zName;
5760 const unsigned char *zSql;
5913 static unsigned int get2byteInt(unsigned char *a){
5916 static unsigned int get4byteInt(unsigned char *a){
5953 unsigned iDataVersion;
5957 unsigned char aHdr[100];
5987 unsigned int val = get4byteInt(aHdr + ofst);
9152 unsigned char zBOM[4]; /* Byte-order mark to using if --bom is present */
9683 unsigned int x = nArg>=2 ? (unsigned int)integerValue(azArg[1]) : 0xffffffff;
10457 unsigned int opt = (unsigned int)strtol(azArg[2], 0, 0);
10476 unsigned int opt = (unsigned int)integerValue(azArg[2]);
10585 int opt = (unsigned int)integerValue(azArg[2]);
10823 unsigned int x = nArg>=2 ? (unsigned int)integerValue(azArg[1]) : 0xffffffff;
12050 (unsigned int)(sqlite3_memory_used()-mem_main_enter));
12133 int fiddle_export_db( int (*xCallback)(unsigned const char *zOut, int n) ){
12137 unsigned char buf[1024 * 8];