Home
last modified time | relevance | path

Searched refs:zTemp (Results 1 – 8 of 8) sorted by relevance

/sqlite-3.40.0/ext/misc/
H A Drot13.c52 unsigned char zTemp[100]; in rot13func() local
57 if( nIn<sizeof(zTemp)-1 ){ in rot13func()
58 zOut = zTemp; in rot13func()
/sqlite-3.40.0/ext/fts3/
H A Dfts3_expr.c285 char *zTemp = 0; in getNextString() local
324 zTemp = fts3ReallocOrFree(zTemp, nTemp + nByte); in getNextString()
325 if( !zTemp ) goto no_mem; in getNextString()
331 memcpy(&zTemp[nTemp], zByte, nByte); in getNextString()
358 if( zTemp ){ in getNextString()
359 memcpy(zBuf, zTemp, nTemp); in getNextString()
360 sqlite3_free(zTemp); in getNextString()
379 sqlite3_free(zTemp); in getNextString()
/sqlite-3.40.0/src/
H A Dutil.c642 char zTemp[22]; in sqlite3Int64ToText() local
648 i = sizeof(zTemp)-2; in sqlite3Int64ToText()
649 zTemp[sizeof(zTemp)-1] = 0; in sqlite3Int64ToText()
651 zTemp[i--] = (x%10) + '0'; in sqlite3Int64ToText()
654 if( v<0 ) zTemp[i--] = '-'; in sqlite3Int64ToText()
655 memcpy(zOut, &zTemp[i+1], sizeof(zTemp)-1-i); in sqlite3Int64ToText()
H A Dos_win.c2038 char *zTemp = NULL; in winGetLastErrorMsg() local
2054 osLocalFree(zTemp); in winGetLastErrorMsg()
5700 LPWSTR zTemp; local
5708 zTemp = sqlite3MallocZero( nByte*sizeof(zTemp[0]) );
5709 if( zTemp==0 ){
5716 sqlite3_free(zTemp);
5722 sqlite3_free(zTemp);
5726 char *zTemp; local
5734 zTemp = sqlite3MallocZero( nByte*sizeof(zTemp[0]) );
5735 if( zTemp==0 ){
[all …]
H A Dtest_quota.c1516 char zTemp[1000]; in test_quota_dump() local
1518 sqlite3_snprintf(sizeof(zTemp), zTemp, "%s", pFile->zFilename); in test_quota_dump()
1519 for(i=0; zTemp[i]; i++){ if( zTemp[i]=='\\' ) zTemp[i] = '/'; } in test_quota_dump()
1521 Tcl_NewStringObj(zTemp, -1)); in test_quota_dump()
H A Dtest8.c737 char *zTemp = zIn; in string_concat() local
739 sqlite3_free(zTemp); in string_concat()
H A Dshell.c.in6176 char *zTemp; local
6179 zTemp = getenv("TEMP");
6180 if( zTemp==0 ) zTemp = getenv("TMP");
6181 if( zTemp==0 ){
6183 zTemp = "\\tmp";
6185 zTemp = "/tmp";
7110 char zTemp[50]; local
7116 zTemp[0] = 0;
7122 sqlite3_snprintf(sizeof(zTemp),zTemp,"zip%016llx",r);
7123 zTab = zTemp;
[all …]
/sqlite-3.40.0/tool/
H A Dlemon.c98 char zTemp[50]; in lemon_vsprintf() local
122 zTemp[sizeof(zTemp)-k] = (v%10) + '0'; in lemon_vsprintf()
125 lemon_addtext(str, &nUsed, &zTemp[sizeof(zTemp)-k], k, iWidth); in lemon_vsprintf()