OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:nAllocated
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/sqlite/src/ext/fts1/
fts1_porter.c
53
int
nAllocated
; /* space allocated to zToken buffer */
111
c->
nAllocated
= 0;
605
if( n>c->
nAllocated
){
606
c->
nAllocated
= n+20;
607
c->zToken = realloc(c->zToken, c->
nAllocated
);
/external/chromium_org/third_party/sqlite/src/ext/fts2/
fts2_porter.c
52
int
nAllocated
; /* space allocated to zToken buffer */
110
c->
nAllocated
= 0;
603
if( n>c->
nAllocated
){
604
c->
nAllocated
= n+20;
605
c->zToken = sqlite3_realloc(c->zToken, c->
nAllocated
);
/external/chromium_org/third_party/sqlite/src/ext/fts3/
fts3_porter.c
53
int
nAllocated
; /* space allocated to zToken buffer */
113
c->
nAllocated
= 0;
606
if( n>c->
nAllocated
){
608
c->
nAllocated
= n+20;
609
pNew = sqlite3_realloc(c->zToken, c->
nAllocated
);
Completed in 27 milliseconds