OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:AllocChunkSize
(Results
1 - 2
of
2
) sorted by null
/external/clang/include/clang/Rewrite/Core/
RewriteRope.h
186
/// We allocate space for string data out of a buffer of size
AllocChunkSize
.
190
enum {
AllocChunkSize
= 4080 };
193
RewriteRope() : AllocBuffer(0), AllocOffs(
AllocChunkSize
) {}
195
: Chunks(RHS.Chunks), AllocBuffer(0), AllocOffs(
AllocChunkSize
) {
/external/clang/lib/Rewrite/Core/
RewriteRope.cpp
771
if (AllocOffs+Len <=
AllocChunkSize
) {
779
if (Len >
AllocChunkSize
) {
795
unsigned AllocSize = offsetof(RopeRefCountString, Data) +
AllocChunkSize
;
Completed in 987 milliseconds