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:BASE_BIT_OPT_SIZE
(Results
1 - 2
of
2
) sorted by relevance
/foundation/communication/bluetooth/frameworks/inner/ipc/common/
H
A
D
bt_uuid.cpp
49
static_cast<uint8_t>((tvUsec & 0x000000000000FF00) >>
BASE_BIT_OPT_SIZE
);
in Random()
51
static_cast<uint8_t>((tvUsec & 0x0000000000FF0000) >> BIT_OPT_TWO_BYTE *
BASE_BIT_OPT_SIZE
);
in Random()
53
static_cast<uint8_t>((tvUsec & 0x00000000FF000000) >> BIT_OPT_THREE_BYTE *
BASE_BIT_OPT_SIZE
);
in Random()
55
static_cast<uint8_t>((tvUsec & 0x000000FF00000000) >> BIT_OPT_FOUR_BYTE *
BASE_BIT_OPT_SIZE
);
in Random()
57
static_cast<uint8_t>((tvUsec & 0x0000FF0000000000) >> BIT_OPT_FIVE_BYTE *
BASE_BIT_OPT_SIZE
);
in Random()
59
static_cast<uint8_t>((tvUsec & 0x00FF000000000000) >> BIT_OPT_SIX_BYTE *
BASE_BIT_OPT_SIZE
);
in Random()
61
static_cast<uint8_t>((tvUsec & 0xFF00000000000000) >> BIT_OPT_SEVEN_BYTE *
BASE_BIT_OPT_SIZE
);
in Random()
65
static_cast<uint8_t>((static_cast<unsigned int>(randomTime.tm_min) + (randNum >>
BASE_BIT_OPT_SIZE
)) & 0xFF);
in Random()
68
(randNum >> BIT_OPT_TWO_BYTE *
BASE_BIT_OPT_SIZE
)) & 0xFF);
in Random()
71
(randNum >> BIT_OPT_THREE_BYTE *
BASE_BIT_OPT_SIZE
))
in Random()
[all...]
H
A
D
bt_uuid.h
63
const static int
BASE_BIT_OPT_SIZE
= 8;
member in OHOS::bluetooth::Uuid
Completed in 2 milliseconds