OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:JOURNAL_CHUNKSIZE
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/sqlite/src/src/
memjournal.c
32
#define
JOURNAL_CHUNKSIZE
((int)(1024-sizeof(FileChunk*)))
45
u8 zChunk[
JOURNAL_CHUNKSIZE
]; /* Content of this chunk */
90
ALWAYS(pChunk) && (iOff+
JOURNAL_CHUNKSIZE
)<=iOfst;
93
iOff +=
JOURNAL_CHUNKSIZE
;
99
iChunkOffset = (int)(iOfst%
JOURNAL_CHUNKSIZE
);
101
int iSpace =
JOURNAL_CHUNKSIZE
- iChunkOffset;
102
int nCopy = MIN(nRead, (
JOURNAL_CHUNKSIZE
- iChunkOffset));
135
int iChunkOffset = (int)(p->endpoint.iOffset%
JOURNAL_CHUNKSIZE
);
136
int iSpace = MIN(nWrite,
JOURNAL_CHUNKSIZE
- iChunkOffset);
/external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c
[
all
...]
Completed in 184 milliseconds