OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:kBlockTrailerSize
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/leveldatabase/src/table/
format.cc
77
char* buf = new char[n +
kBlockTrailerSize
];
79
Status s = file->Read(handle.offset(), n +
kBlockTrailerSize
, &contents, buf);
84
if (contents.size() != n +
kBlockTrailerSize
) {
format.h
84
static const size_t
kBlockTrailerSize
= 5;
table_builder.cc
183
char trailer[
kBlockTrailerSize
];
188
r->status = r->file->Append(Slice(trailer,
kBlockTrailerSize
));
190
r->offset += block_contents.size() +
kBlockTrailerSize
;
Completed in 33 milliseconds