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:MAX_DIMENSION
(Results
1 - 4
of
4
) sorted by relevance
/foundation/multimedia/image_framework/frameworks/innerkitsimpl/utils/src/
H
A
D
image_utils.cpp
85
constexpr int
MAX_DIMENSION
= INT32_MAX >> 2;
member
338
if (info.size.width <= 0 || info.size.height <= 0 || info.size.width >
MAX_DIMENSION
||
in IsValidImageInfo()
339
info.size.height >
MAX_DIMENSION
) {
in IsValidImageInfo()
/foundation/multimedia/image_framework/frameworks/innerkitsimpl/common/src/
H
A
D
pixel_yuv.cpp
61
constexpr int32_t
MAX_DIMENSION
= INT32_MAX >> NUM_2;
member
809
if (region.width <= 1 || region.height <= 1 || region.width >
MAX_DIMENSION
|| region.height >
MAX_DIMENSION
) {
in CheckPixelsInput()
H
A
D
pixel_map.cpp
91
constexpr int32_t
MAX_DIMENSION
= INT32_MAX >> 2;
577
if (width >
MAX_DIMENSION
) {
in CheckParams()
1632
if (region.width <= 0 || region.height <= 0 || region.width >
MAX_DIMENSION
|| region.height >
MAX_DIMENSION
) {
in CheckPixelsInput()
/foundation/multimedia/image_framework/frameworks/innerkitsimpl/test/unittest/pixel_map_test/
H
A
D
image_pixel_map_switch_test.cpp
27
constexpr int32_t
MAX_DIMENSION
= INT32_MAX >> 2;
member
957
rect.width =
MAX_DIMENSION
+ 1;
in HWTEST_F()
1001
rect.height =
MAX_DIMENSION
+ 1;
in HWTEST_F()
Completed in 11 milliseconds