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:regionStride
(Results
1 - 2
of
2
) sorted by relevance
/foundation/multimedia/image_framework/frameworks/innerkitsimpl/test/unittest/pixel_map_test/
H
A
D
image_pixel_map_test.cpp
1698
uint32_t
regionStride
= static_cast<uint32_t>(region5.width) * 4;
in HWTEST_F()
local
1700
stride5 =
regionStride
- 1;
in HWTEST_F()
1701
ASSERT_EQ(stride5 <
regionStride
? 0 : 1, 0);
in HWTEST_F()
1705
stride5 =
regionStride
;
in HWTEST_F()
1706
ASSERT_NE(stride5 <
regionStride
? 0 : 1, 0);
in HWTEST_F()
1709
size5 =
regionStride
- 1;
in HWTEST_F()
1710
ASSERT_EQ(size5 <
regionStride
? 0 : 1, 0);
in HWTEST_F()
1754
uint32_t
regionStride
= static_cast<uint32_t>(region6.width) * 4;
local
1755
stride6 =
regionStride
;
1756
ASSERT_NE(stride6 <
regionStride
[all...]
/foundation/multimedia/image_framework/frameworks/innerkitsimpl/common/src/
H
A
D
pixel_map.cpp
1646
uint32_t
regionStride
= static_cast<uint32_t>(region.width) * 4; // bytes count, need multiply by 4
in CheckPixelsInput()
local
1647
if (stride <
regionStride
) {
in CheckPixelsInput()
1648
IMAGE_LOGE("CheckPixelsInput stride(%{public}d) < width*4 (%{public}d).", stride,
regionStride
);
in CheckPixelsInput()
1652
if (bufferSize <
regionStride
) {
in CheckPixelsInput()
1657
if (static_cast<uint64_t>(offset) > (bufferSize -
regionStride
) || lastLinePos > (bufferSize -
regionStride
)) {
in CheckPixelsInput()
Completed in 10 milliseconds