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:SkCLZ
(Results
1 - 10
of
10
) sorted by relevance
/third_party/skia/src/core/
H
A
D
SkMathPriv.h
155
static inline int
SkCLZ
(uint32_t mask) {
in SkCLZ()
function
168
static inline int
SkCLZ
(uint32_t mask) {
in SkCLZ()
function
173
static inline int
SkCLZ
(uint32_t mask) {
in SkCLZ()
function
227
return 32 -
SkCLZ
(value - 1);
in SkNextLog2()
246
return 32 -
SkCLZ
(value >> 1);
in SkPrevLog2()
290
return n ? (1 << (32 -
SkCLZ
(n - 1))) : 1;
in GrNextPow2()
H
A
D
SkEdge.cpp
178
return (32 -
SkCLZ
(dist)) >> 1;
in diff_to_shift()
H
A
D
SkMipmap.cpp
674
const int leadingZeros =
SkCLZ
(static_cast<uint32_t>(largestAxis));
in ComputeLevelCount()
H
A
D
SkScan_Hairline.cpp
449
int level = (33 -
SkCLZ
(d)) >> 1;
/third_party/skia/tests/
H
A
D
MathTest.cpp
24
REPORTER_ASSERT(reporter, 32 ==
SkCLZ
(0));
in test_clz()
25
REPORTER_ASSERT(reporter, 31 ==
SkCLZ
(1));
in test_clz()
26
REPORTER_ASSERT(reporter, 1 ==
SkCLZ
(1 << 30));
in test_clz()
27
REPORTER_ASSERT(reporter, 1 ==
SkCLZ
((1 << 30) | (1 << 24) | 1));
in test_clz()
28
REPORTER_ASSERT(reporter, 0 ==
SkCLZ
(~0U));
in test_clz()
36
int intri =
SkCLZ
(mask);
in test_clz()
494
(void)
SkCLZ
(numer);
in DEF_TEST()
495
(void)
SkCLZ
(denom);
in DEF_TEST()
H
A
D
PathCoverageTest.cpp
50
int shift = 30 -
SkCLZ
(distance);
in estimate_pointCount()
H
A
D
SubsetPath.cpp
18
int leadingZero =
SkCLZ
(fSubset);
in range()
/third_party/skia/src/gpu/
H
A
D
GrRectanizerPow2.h
65
int index = 32 -
SkCLZ
(height - 1);
in HeightToRowIndex()
H
A
D
GrGpu.cpp
163
32 -
SkCLZ
(static_cast<uint32_t>(std::max(dimensions.fWidth, dimensions.fHeight)));
in createTexture()
/third_party/skia/bench/
H
A
D
MathBench.cpp
427
accum +=
SkCLZ
(fData[i]);
Completed in 9 milliseconds