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:firstByte
(Results
1 - 7
of
7
) sorted by relevance
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/common/include/
H
A
D
endian_convert.h
26
uint8_t *
firstByte
= reinterpret_cast<uint8_t *>(&data);
in IsBigEndian()
local
27
if (*
firstByte
== 0x12) { // 0x12 only used here, for endian test
in IsBigEndian()
/foundation/multimedia/av_codec/test/unittest/hcodec_test/helper/
H
A
D
start_code_detector.h
66
virtual uint8_t GetNalType(uint8_t
firstByte
, uint8_t secondByte) = 0;
108
uint8_t GetNalType(uint8_t
firstByte
, uint8_t) override;
147
uint8_t GetNalType(uint8_t
firstByte
, uint8_t) override;
H
A
D
start_code_detector.cpp
188
uint8_t StartCodeDetectorH264::GetNalType(uint8_t
firstByte
, uint8_t)
in GetNalType()
argument
190
return
firstByte
& 0b0001'1111;
in GetNalType()
208
uint8_t StartCodeDetectorH265::GetNalType(uint8_t
firstByte
, uint8_t)
in GetNalType()
argument
210
return (
firstByte
& 0b0111'1110) >> 1;
in GetNalType()
/foundation/communication/nfc/services/src/tag/
H
A
D
ndef_wifi_data_parser.cpp
60
unsigned char
firstByte
= KITS::NfcSdkCommon::GetByteFromHexStr(src, offset);
in GetTypeFromPayload()
local
65
return ((
firstByte
<< shift) + secondByte) & WIFI_TYPE_TO_INT_MASK;
in GetTypeFromPayload()
H
A
D
ndef_bt_data_parser.cpp
104
unsigned char
firstByte
= KITS::NfcSdkCommon::GetByteFromHexStr(payload, offset++);
in GetBtDevClass()
local
107
int devClass = (
firstByte
<< (SHIFT_ONE_BYTE * 2)) + (secondByte << SHIFT_ONE_BYTE) + thirdByte;
in GetBtDevClass()
/foundation/communication/dsoftbus/core/transmission/trans_channel/proxy/src/
H
A
D
softbus_proxychannel_message.c
40
uint8_t
firstByte
= *ptr;
in TransProxyParseMessageHead()
local
42
int8_t version = (
firstByte
>> VERSION_SHIFT) & FOUR_BIT_MASK;
in TransProxyParseMessageHead()
43
msg->msgHead.type =
firstByte
& FOUR_BIT_MASK;
in TransProxyParseMessageHead()
/foundation/communication/dhcp/services/dhcp_client/src/
H
A
D
dhcp_client_state_machine.cpp
1035
int
firstByte
= static_cast<int>(CheckDataLegal(yiaddrTmp, DECIMAL_NOTATION));
in SetDefaultNetMask()
local
1037
if (
firstByte
< DHCP_IP_TYPE_A) {
in SetDefaultNetMask()
1042
} else if (
firstByte
< DHCP_IP_TYPE_B) {
in SetDefaultNetMask()
1047
} else if (
firstByte
< DHCP_IP_TYPE_C) {
in SetDefaultNetMask()
Completed in 9 milliseconds