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:DEC_MAX_NUM
(Results
1 - 3
of
3
) sorted by relevance
/foundation/distributedhardware/device_manager/utils/src/crypto/
H
A
D
dm_crypto.cpp
33
constexpr int
DEC_MAX_NUM
= 10;
member
75
if (h <
DEC_MAX_NUM
) {
in ConvertBytesToHexString()
78
*outBuf++ = 'a' + h -
DEC_MAX_NUM
;
in ConvertBytesToHexString()
80
if (l <
DEC_MAX_NUM
) {
in ConvertBytesToHexString()
83
*outBuf++ = 'a' + l -
DEC_MAX_NUM
;
in ConvertBytesToHexString()
142
c -= 'a' -
DEC_MAX_NUM
;
in ConvertHexStringToBytes()
144
c -= 'A' -
DEC_MAX_NUM
;
in ConvertHexStringToBytes()
153
c2 -= 'a' -
DEC_MAX_NUM
;
in ConvertHexStringToBytes()
155
c2 -= 'A' -
DEC_MAX_NUM
;
in ConvertHexStringToBytes()
/foundation/communication/dsoftbus/core/common/utils/
H
A
D
softbus_utils.c
166
if (h <
DEC_MAX_NUM
) {
in ConvertBytesToUpperCaseHexString()
169
*outBuf++ = 'A' + h -
DEC_MAX_NUM
;
in ConvertBytesToUpperCaseHexString()
171
if (l <
DEC_MAX_NUM
) {
in ConvertBytesToUpperCaseHexString()
174
*outBuf++ = 'A' + l -
DEC_MAX_NUM
;
in ConvertBytesToUpperCaseHexString()
201
c -= 'a' -
DEC_MAX_NUM
;
in ConvertHexStringToBytes()
203
c -= 'A' -
DEC_MAX_NUM
;
in ConvertHexStringToBytes()
212
c2 -= 'a' -
DEC_MAX_NUM
;
in ConvertHexStringToBytes()
214
c2 -= 'A' -
DEC_MAX_NUM
;
in ConvertHexStringToBytes()
236
if (h <
DEC_MAX_NUM
) {
in ConvertBytesToHexString()
239
*outBuf++ = 'a' + h -
DEC_MAX_NUM
;
in ConvertBytesToHexString()
[all...]
/foundation/communication/dsoftbus/core/common/include/
H
A
D
softbus_utils.h
31
#define
DEC_MAX_NUM
10
macro
Completed in 3 milliseconds