Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:isSmall
(Results
1 - 10
of
10
) sorted by relevance
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
H
A
D
SmallBitVector.h
95
assert(!
isSmall
());
in getPointer()
107
assert(!
isSmall
() && "Tried to use an unaligned pointer");
in switchToLarge()
113
assert(
isSmall
());
in getSmallRawBits()
118
assert(
isSmall
());
in setSmallRawBits()
154
if (RHS.
isSmall
())
in SmallBitVector()
165
if (!
isSmall
())
in ~SmallBitVector()
184
bool
isSmall
() const { return X & uintptr_t(1); }
in isSmall()
function in llvm::SmallBitVector
188
return
isSmall
() ? getSmallSize() == 0 : getPointer()->empty();
in empty()
193
return
isSmall
() ? getSmallSize() : getPointer()->size();
in size()
198
if (
isSmall
()) {
in count()
[all...]
H
A
D
SmallSet.h
42
/// depending on
isSmall
.
48
bool
isSmall
;
member in llvm::SmallSetIterator
51
SmallSetIterator(SetIterTy SetIter) : SetIter(SetIter),
isSmall
(false) {}
in SmallSetIterator()
53
SmallSetIterator(VecIterTy VecIter) : VecIter(VecIter),
isSmall
(true) {}
in SmallSetIterator()
58
if (
isSmall
)
in ~SmallSetIterator()
64
SmallSetIterator(const SmallSetIterator &Other) :
isSmall
(Other.
isSmall
) {
in SmallSetIterator()
65
if (
isSmall
)
in SmallSetIterator()
73
SmallSetIterator(SmallSetIterator &&Other) :
isSmall
(Other.
isSmall
) {
in SmallSetIterator()
236
bool
isSmall
() const { return Set.empty(); }
isSmall()
function in llvm::SmallSet
[all...]
H
A
D
SmallPtrSet.h
82
if (!
isSmall
())
in ~SmallPtrSetImplBase()
98
if (!
isSmall
()) {
in clear()
119
return
isSmall
() ? CurArray + NumNonEmpty : CurArray + CurArraySize;
in EndPointer()
126
if (
isSmall
()) {
in insert_imp()
177
if (
isSmall
()) {
in find_imp()
194
bool
isSmall
() const { return CurArray == SmallArray; }
in isSmall()
function in llvm::SmallPtrSetImplBase
H
A
D
SmallVector.h
103
bool
isSmall
() const { return BeginX == getFirstEl(); }
in isSmall()
function in llvm::SmallVectorTemplateCommon
249
if (!this->
isSmall
())
in grow()
335
if (!this->
isSmall
())
in ~SmallVectorImpl()
672
if (!this->
isSmall
() && !RHS.
isSmall
()) {
in swap()
760
if (!RHS.
isSmall
()) {
in operator =()
762
if (!this->
isSmall
()) free(this->begin());
in operator =()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
H
A
D
SmallPtrSet.cpp
25
assert(!
isSmall
() && "Can't shrink a small set!");
in shrink_and_clear()
97
bool WasSmall =
isSmall
();
126
if (that.
isSmall
()) {
147
if (
isSmall
() && RHS.
isSmall
())
152
if (RHS.
isSmall
()) {
153
if (!
isSmall
())
158
if (
isSmall
())
183
if (!
isSmall
())
192
if (RHS.
isSmall
()) {
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/
H
A
D
SmallPtrSet.cpp
25
assert(!
isSmall
() && "Can't shrink a small set!");
in shrink_and_clear()
65
if (
isSmall
()) {
121
bool WasSmall =
isSmall
();
148
if (that.
isSmall
()) {
170
if (
isSmall
() && RHS.
isSmall
())
175
if (RHS.
isSmall
()) {
176
if (!
isSmall
())
181
if (
isSmall
())
209
if (!
isSmall
())
[all...]
/third_party/skia/bench/
H
A
D
DisplacementBench.cpp
34
const int w = this->
isSmall
() ? FILTER_WIDTH_SMALL : FILTER_WIDTH_LARGE;
in makeBitmap()
35
const int h = this->
isSmall
() ? FILTER_HEIGHT_SMALL : FILTER_HEIGHT_LARGE;
in makeBitmap()
47
const int w = this->
isSmall
() ? FILTER_WIDTH_SMALL : FILTER_WIDTH_LARGE;
in makeCheckerboard()
48
const int h = this->
isSmall
() ? FILTER_HEIGHT_SMALL : FILTER_HEIGHT_LARGE;
in makeCheckerboard()
78
inline bool
isSmall
() const { return fIsSmall; }
in isSmall()
function in DisplacementBaseBench
94
return this->
isSmall
() ? "displacement_zero_small" : "displacement_zero_large";
119
return
isSmall
() ? "displacement_alpha_small" : "displacement_alpha_large";
143
return
isSmall
() ? "displacement_full_small" : "displacement_full_large";
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
H
A
D
SmallSet.h
60
return
isSmall
() ? Vector.size() : Set.size();
in size()
65
if (
isSmall
()) {
in count()
81
if (!
isSmall
())
in insert()
108
if (!
isSmall
())
in erase()
124
bool
isSmall
() const { return Set.empty(); }
in isSmall()
function in llvm::SmallSet
H
A
D
SmallPtrSet.h
89
if (!
isSmall
())
in ~SmallPtrSetImplBase()
104
if (!
isSmall
()) {
in clear()
125
return
isSmall
() ? CurArray + NumNonEmpty : CurArray + CurArraySize;
in EndPointer()
132
if (
isSmall
()) {
in insert_imp()
168
if (
isSmall
()) {
in count_imp()
182
bool
isSmall
() const { return CurArray == SmallArray; }
in isSmall()
function in llvm::SmallPtrSetImplBase
H
A
D
SmallVector.h
87
bool
isSmall
() const {
in isSmall()
function in llvm::SmallVectorTemplateCommon
249
if (!this->
isSmall
())
in grow()
343
if (!this->
isSmall
())
in ~SmallVectorImpl()
679
if (!this->
isSmall
() && !RHS.
isSmall
()) {
in swap()
767
if (!RHS.
isSmall
()) {
in operator =()
769
if (!this->
isSmall
()) free(this->begin());
in operator =()
Completed in 8 milliseconds