OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:fAllocatedNames
(Results
1 - 3
of
3
) sorted by null
/external/skia/src/gpu/gl/
GrGLNameAllocator.h
83
SkAutoTUnref<SparseNameRange>
fAllocatedNames
;
GrGLNameAllocator.cpp
340
if (NULL ==
fAllocatedNames
.get()) {
341
fAllocatedNames
.reset(SkNEW_ARGS(ContiguousNameRange, (fFirstName, fFirstName + 1)));
345
if (
fAllocatedNames
->first() > fFirstName) {
346
return
fAllocatedNames
->prependNames(1);
350
fAllocatedNames
.reset(
fAllocatedNames
->internalAllocate(&name));
355
if (
fAllocatedNames
->end() < fEndName) {
356
return
fAllocatedNames
->appendNames(1);
364
if (!
fAllocatedNames
.get()) {
369
fAllocatedNames
.reset(fAllocatedNames->free(name))
[
all
...]
/external/skia/tests/
NameAllocatorTest.cpp
25
memset(
fAllocatedNames
, 0, sizeof(
fAllocatedNames
));
47
return
fAllocatedNames
[name - kFirstName];
51
fAllocatedNames
[name - kFirstName] = allocated;
124
bool
fAllocatedNames
[kRange];
Completed in 534 milliseconds