OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:isSmall
(Results
1 - 6
of
6
) sorted by null
/dalvik/vm/arch/x86/
Call386ABI.S
138
jg
isSmall
144
isSmall
:
/external/llvm/include/llvm/ADT/
SmallSet.h
44
return
isSmall
() ? Vector.size() : Set.size();
49
if (
isSmall
()) {
59
if (!
isSmall
())
86
if (!
isSmall
())
101
bool
isSmall
() const { return Set.empty(); }
SmallBitVector.h
83
bool
isSmall
() const {
88
assert(!
isSmall
());
100
assert(!
isSmall
() && "Tried to use an unaligned pointer");
106
assert(
isSmall
());
111
assert(
isSmall
());
149
if (RHS.
isSmall
())
156
if (!
isSmall
())
162
return
isSmall
() ? getSmallSize() == 0 : getPointer()->empty();
167
return
isSmall
() ? getSmallSize() : getPointer()->size();
172
if (
isSmall
()) {
[
all
...]
SmallPtrSet.h
84
if (!
isSmall
() && NumElements*4 < CurArraySize && CurArraySize > 32)
113
if (
isSmall
()) {
127
bool
isSmall
() const { return CurArray == SmallArray; }
SmallVector.h
51
///
isSmall
- Return true if this is a smallvector which has not had dynamic
53
bool
isSmall
() const {
209
if (!this->
isSmall
())
293
if (!this->
isSmall
())
559
if (!this->
isSmall
() && !RHS.
isSmall
()) {
/dalvik/vm/alloc/
Heap.cpp
661
bool
isSmall
= numBytesFreed > 0 && numBytesFreed < 1024;
664
isSmall
? "<" : "",
673
bool
isSmall
= numBytesFreed > 0 && numBytesFreed < 1024;
676
isSmall
? "<" : "",
Completed in 1631 milliseconds