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_UINT8
(Results
1 - 5
of
5
) sorted by relevance
/base/telephony/core_service/utils/codec/src/
H
A
D
request_apdu_build.cpp
56
int32_t cmdLen =
MAX_UINT8
* BYTE_TO_HEX_LEN;
in BuildStoreData()
59
uint32_t totalSubCmds = ((totalLen == 0) ? 1 : ((totalLen +
MAX_UINT8
- 1) /
MAX_UINT8
));
in BuildStoreData()
68
ConstructApduData(P1_STORE_DATA_INTERM, i - 1,
MAX_UINT8
, data, apduData);
in BuildStoreData()
71
leastLen -=
MAX_UINT8
;
in BuildStoreData()
H
A
D
asn1_utils.cpp
92
if (value <=
MAX_UINT8
) {
in ByteCountForInt()
125
oss << std::hex << std::uppercase << std::setw(BYTE_TO_HEX_LEN) << std::setfill('0') << (bytes[i] &
MAX_UINT8
);
in BytesToHexStr()
133
oss << std::hex << std::uppercase << std::setw(BYTE_TO_HEX_LEN) << std::setfill('0') << (src &
MAX_UINT8
);
in ByteToHexStr()
246
uint32_t valueTemp = ((static_cast<uint32_t>(value)) &
MAX_UINT8
);
in CountTrailingZeros()
265
if (hexStr.length() > (
MAX_UINT8
* BYTE_TO_HEX_LEN)) {
in SwapHexCharPair()
H
A
D
asn1_builder.cpp
132
boolByteVec.push_back(static_cast<uint8_t>(
MAX_UINT8
));
in Asn1AddChildAsBoolean()
153
if (children_.size() >
MAX_UINT8
) {
in Asn1Build()
/base/telephony/core_service/utils/codec/include/
H
A
D
asn1_constants.h
28
const uint32_t
MAX_UINT8
= std::numeric_limits<uint8_t>::max();
member
/base/telephony/core_service/services/sim/src/
H
A
D
esim_file.cpp
349
oss << std::hex << std::uppercase << (versionRaw[VERSION_HIGH] &
MAX_UINT8
) << "." <<
in MakeVersionString()
350
(versionRaw[VERSION_MIDDLE] &
MAX_UINT8
) << "." <<
in MakeVersionString()
351
(versionRaw[VERSION_LOW] &
MAX_UINT8
);
in MakeVersionString()
Completed in 10 milliseconds