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:ONE_BYTE_SHIFT
(Results
1 - 8
of
8
) sorted by relevance
/foundation/multimedia/image_framework/plugins/common/libs/image/libextplugin/src/heif_impl/heif_parser/
H
A
D
heif_stream.cpp
116
return static_cast<uint16_t>((buf[BUFFER_INDEX_ZERO] <<
ONE_BYTE_SHIFT
) | (buf[BUFFER_INDEX_ONE]));
in Read16()
133
(buf[BUFFER_INDEX_TWO] <<
ONE_BYTE_SHIFT
) |
in Read32()
155
((uint64_t)buf[BUFFER_INDEX_SIX] <<
ONE_BYTE_SHIFT
) |
in Read64()
225
data_[position_++] = uint8_t((value >>
ONE_BYTE_SHIFT
) & 0xFF);
in Write16()
234
data_[position_++] = uint8_t((value >>
ONE_BYTE_SHIFT
) & 0xFF);
in Write32()
247
data_[position_++] = uint8_t((value >>
ONE_BYTE_SHIFT
) & 0xFF);
in Write64()
H
A
D
heif_utils.cpp
25
fourcc[BUFFER_INDEX_TWO] = static_cast<char>((code >>
ONE_BYTE_SHIFT
) & 0xFF);
in code_to_fourcc()
/foundation/multimedia/image_framework/plugins/common/libs/image/libextplugin/include/heif_impl/heif_parser/
H
A
D
heif_utils.h
30
(string[BUFFER_INDEX_TWO] <<
ONE_BYTE_SHIFT
) |
in fourcc_to_code()
H
A
D
heif_constant.h
22
const uint8_t
ONE_BYTE_SHIFT
= 8;
member
/foundation/multimedia/image_framework/plugins/common/libs/image/libextplugin/src/heif_impl/heif_parser/box/
H
A
D
item_property_hvcc_box.cpp
113
outData->push_back((unit.size() >>
ONE_BYTE_SHIFT
) & 0xFF);
in GetHeaders()
188
while (pos_ < boxBitLength_ && ((nalu[pos_ /
ONE_BYTE_SHIFT
] >>
in GetGolombCode()
189
(
ONE_BYTE_SHIFT
- BIT_SHIFT - (pos_ %
ONE_BYTE_SHIFT
))) &
in GetGolombCode()
H
A
D
item_data_box.cpp
67
int lengthSize = (values4 >>
ONE_BYTE_SHIFT
) & 0xF;
in ParseContent()
/foundation/communication/nfc/interfaces/inner_api/common/
H
A
D
ndef_message.h
93
static const unsigned int
ONE_BYTE_SHIFT
= 8;
member in OHOS::NFC::KITS::final
H
A
D
ndef_message.cpp
260
(NfcSdkCommon::GetByteFromHexStr(lenString, i) << ((sizeof(int) - i - 1) *
ONE_BYTE_SHIFT
));
in ParseRecordLayoutLength()
Completed in 4 milliseconds