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:countLevels
(Results
1 - 9
of
9
) sorted by relevance
/third_party/skia/src/core/
H
A
D
SkMipmap.cpp
556
int
countLevels
= ComputeLevelCount(src.width(), src.height());
in Build()
local
557
for (int currentMipLevel =
countLevels
; currentMipLevel >= 0; currentMipLevel--) {
in Build()
562
size_t storageSize = SkMipmap::AllocLevelsSize(
countLevels
, size);
in Build()
580
mipmap->fCount =
countLevels
;
in Build()
585
uint8_t* baseAddr = (uint8_t*)&levels[
countLevels
];
in Build()
596
for (int i = 0; i <
countLevels
; ++i) {
in Build()
782
for (int i = 0; i < this->
countLevels
(); ++i) {
in validForRootLevel()
801
int SkMipmap::
countLevels
() const {
in countLevels()
function in SkMipmap
846
const int count = this->
countLevels
();
in serialize()
865
if (builder->
countLevels
() !
in Deserialize()
[all...]
H
A
D
SkMipmapBuilder.h
18
int
countLevels
() const;
H
A
D
SkMipmap.h
66
//
countLevels
returns the number of mipmap levels generated (which does not
68
int
countLevels
() const;
/third_party/skia/tests/
H
A
D
MipMapTest.cpp
29
REPORTER_ASSERT(reporter, mm->
countLevels
() == SkMipmap::ComputeLevelCount(width, height));
in DEF_TEST()
66
const int mipLevelCount = mm->
countLevels
();
in test_mipmap_generation()
219
int count = builder->
countLevels
();
in fill_in_mips()
/third_party/skia/gm/
H
A
D
showmiplevels.cpp
43
for (int i = 0; i < builder.
countLevels
(); ++i) {
/third_party/skia/tools/gpu/
H
A
D
ManagedBackendTexture.cpp
97
for (int i = 0; i < mm->
countLevels
(); ++i) {
in MakeFromPixmap()
/third_party/skia/tools/
H
A
D
DDLPromiseImageHelper.cpp
50
for (int i = 0; i < fMipLevels->
countLevels
(); ++i) {
in normalMipLevels()
61
return fMipLevels ? fMipLevels->
countLevels
()+1 : 1;
in numMipLevels()
/third_party/skia/src/image/
H
A
D
SkImage.cpp
690
int SkMipmapBuilder::
countLevels
() const {
in countLevels()
function in SkMipmapBuilder
691
return fMM ? fMM->
countLevels
() : 0;
in countLevels()
/third_party/skia/src/gpu/
H
A
D
GrProxyProvider.cpp
397
const int mipLevelCount = mipmaps->
countLevels
() + 1;
in createMippedProxyFromBitmap()
Completed in 7 milliseconds