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:SMS_BYTE_BIT
(Results
1 - 5
of
5
) sorted by relevance
/base/telephony/sms_mms/services/sms/
H
A
D
gsm_cb_gsm_codec.cpp
28
static constexpr uint8_t
SMS_BYTE_BIT
= 8;
member
155
iosTemp |= (oneByte <<
SMS_BYTE_BIT
);
in Decode2gHeaderCommonCb()
229
uint8_t pageData[MAX_PAGE_PDU_LEN *
SMS_BYTE_BIT
/ GSM_CODE_BIT + 1] = { 0 };
in Decode2gCbMsg7bit()
238
dataPdu.data(), dataLen, 0x00, pageData, MAX_PAGE_PDU_LEN *
SMS_BYTE_BIT
/ GSM_CODE_BIT + 1);
in Decode2gCbMsg7bit()
245
if (offset + unpackLen >= (MAX_PAGE_PDU_LEN *
SMS_BYTE_BIT
/ GSM_CODE_BIT) + 1) {
in Decode2gCbMsg7bit()
H
A
D
gsm_cb_umts_codec.cpp
28
static constexpr uint8_t
SMS_BYTE_BIT
= 8;
member
117
iosTemp |= (oneByte <<
SMS_BYTE_BIT
);
in Decode3gHeaderPartData()
186
uint8_t pageData[MAX_PAGE_PDU_LEN *
SMS_BYTE_BIT
/ GSM_CODE_BIT] = { 0 };
in Decode3g7Bit()
188
&tpdu[offset], dataLen, 0x00, pageData, MAX_PAGE_PDU_LEN *
SMS_BYTE_BIT
/ GSM_CODE_BIT);
in Decode3g7Bit()
H
A
D
gsm_cb_codec.cpp
29
static constexpr uint8_t
SMS_BYTE_BIT
= 8;
member
292
uint8_t hight = (iosData >>
SMS_BYTE_BIT
);
in DecodeIos639Dcs()
/base/telephony/sms_mms/services/sms/gsm/
H
A
D
gsm_sms_common_utils.cpp
30
static constexpr uint8_t
SMS_BYTE_BIT
= 8;
member
98
uint8_t nextByte = userData[srcIdx] >> (
SMS_BYTE_BIT
- shift);
in Pack7bitCharPartData()
110
if (unpackData == nullptr || dataLen >= unpackDataLen || fillBits >
SMS_BYTE_BIT
- 1) {
in Unpack7bitChar()
146
unpackData[dstIdx] = (oneByte >> shift) + (nextByte << (
SMS_BYTE_BIT
- shift));
in Unpack7bitChar()
/base/telephony/sms_mms/utils/
H
A
D
sms_common_utils.cpp
26
static constexpr uint8_t
SMS_BYTE_BIT
= 8;
member
62
packData[dstIdx] = userData[srcIdx] >> (
SMS_BYTE_BIT
- shift);
in Pack7bitChar()
100
unpackData[dstIdx] = ((unsigned int)tpdu[srcIdx - 1] >> shift) + (tpdu[srcIdx] << (
SMS_BYTE_BIT
- shift));
in Unpack7bitChar()
132
unpackData[dstIdx] = ((unsigned int)tpdu[srcIdx - 1] >> shift) + (tpdu[srcIdx] << (
SMS_BYTE_BIT
- shift));
in Unpack7bitCharForCBPdu()
Completed in 3 milliseconds