Searched defs:zNum (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/sqlite/src/src/
H A Dutil.c412 ** Compare the 19-character string zNum against the text representation
414 ** if zNum is less than, equal to, or greater than the string.
415 ** Note that zNum must contain exactly 19 characters.
425 static int compare2pow63(const char *zNum, int incr){ argument
431 c = (zNum[i*incr]-pow63[i])*10;
434 c = zNum[18*incr] - '8';
444 ** Convert zNum to a 64-bit signed integer.
446 ** If the zNum value is representable as a 64-bit twos-complement
449 ** If zNum is exactly 9223372036854665808, return 2. This special
453 ** If zNum i
460 sqlite3Atoi64(const char *zNum, i64 *pNum, int length, u8 enc) argument
529 sqlite3GetInt32(const char *zNum, int *pValue) argument
[all...]
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c20647 ** Compare the 19-character string zNum against the text representation
20649 ** if zNum is less than, equal to, or greater than the string.
20650 ** Note that zNum must contain exactly 19 characters.
20660 static int compare2pow63(const char *zNum, int incr){ argument
20666 c = (zNum[i*incr]-pow63[i])*10;
20669 c = zNum[18*incr] - '8';
20679 ** Convert zNum to a 64-bit signed integer.
20681 ** If the zNum value is representable as a 64-bit twos-complement
20684 ** If zNum is exactly 9223372036854665808, return 2. This special
20688 ** If zNum i
20695 sqlite3Atoi64(const char *zNum, i64 *pNum, int length, u8 enc) argument
20764 sqlite3GetInt32(const char *zNum, int *pValue) argument
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c21463 ** Compare the 19-character string zNum against the text representation
21465 ** if zNum is less than, equal to, or greater than the string.
21466 ** Note that zNum must contain exactly 19 characters.
21476 static int compare2pow63(const char *zNum, int incr){ argument
21482 c = (zNum[i*incr]-pow63[i])*10;
21485 c = zNum[18*incr] - '8';
21495 ** Convert zNum to a 64-bit signed integer.
21497 ** If the zNum value is representable as a 64-bit twos-complement
21500 ** If zNum is exactly 9223372036854665808, return 2. This special
21504 ** If zNum i
21511 sqlite3Atoi64(const char *zNum, i64 *pNum, int length, u8 enc) argument
21580 sqlite3GetInt32(const char *zNum, int *pValue) argument
[all...]
/external/sqlite/dist/
H A Dsqlite3.c21463 ** Compare the 19-character string zNum against the text representation
21465 ** if zNum is less than, equal to, or greater than the string.
21466 ** Note that zNum must contain exactly 19 characters.
21476 static int compare2pow63(const char *zNum, int incr){ argument
21482 c = (zNum[i*incr]-pow63[i])*10;
21485 c = zNum[18*incr] - '8';
21495 ** Convert zNum to a 64-bit signed integer.
21497 ** If the zNum value is representable as a 64-bit twos-complement
21500 ** If zNum is exactly 9223372036854665808, return 2. This special
21504 ** If zNum i
21511 sqlite3Atoi64(const char *zNum, i64 *pNum, int length, u8 enc) argument
21580 sqlite3GetInt32(const char *zNum, int *pValue) argument
[all...]

Completed in 431 milliseconds