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:rowPointer
(Results
1 - 3
of
3
) sorted by relevance
/foundation/arkui/ui_lite/frameworks/common/
H
A
D
image.cpp
288
static inline void FreePngBytep(png_bytep**
rowPointer
, uint16_t size)
in FreePngBytep()
argument
290
png_bytep* tmpRowPointer = *
rowPointer
;
in FreePngBytep()
295
UIFree(*
rowPointer
);
in FreePngBytep()
296
*
rowPointer
= nullptr;
in FreePngBytep()
301
png_bytep*
rowPointer
= static_cast<png_bytep*>(UIMalloc(sizeof(png_bytep) * height));
in MallocPngBytep()
local
302
if (
rowPointer
== nullptr) {
in MallocPngBytep()
306
rowPointer
[y] = static_cast<png_byte*>(UIMalloc(rowBytes));
in MallocPngBytep()
307
if (
rowPointer
[y] == nullptr) {
in MallocPngBytep()
308
FreePngBytep(&
rowPointer
, y);
in MallocPngBytep()
312
return
rowPointer
;
in MallocPngBytep()
318
png_bytep*
rowPointer
= nullptr;
SetPNGSrc()
local
[all...]
/foundation/graphic/graphic_3d/lume/LumeEngine/src/image/loaders/
H
A
D
image_loader_common.h
189
void VerticalFlipRow(T *
rowPointer
, uint32_t width, uint32_t channels)
in VerticalFlipRow()
argument
196
T tempPixel =
rowPointer
[idx];
in VerticalFlipRow()
197
rowPointer
[idx] =
rowPointer
[ridx];
in VerticalFlipRow()
198
rowPointer
[ridx] = tempPixel;
in VerticalFlipRow()
/foundation/window/window_manager/snapshot/src/
H
A
D
snapshot_utils.cpp
259
JSAMPROW
rowPointer
[1];
in WriteRgb888ToJpeg()
local
261
rowPointer
[0] = const_cast<uint8_t *>(data + i * jpeg.image_width * RGB888_PIXEL_BYTES);
in WriteRgb888ToJpeg()
262
(void)jpeg_write_scanlines(&jpeg,
rowPointer
, 1);
in WriteRgb888ToJpeg()
Completed in 2 milliseconds