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:BIT_8
(Results
1 - 9
of
9
) sorted by relevance
/foundation/multimedia/audio_framework/frameworks/native/audioutils/src/
H
A
D
audio_utils.cpp
408
(static_cast<uint32_t>(data[DATA_INDEX_1]) <<
BIT_8
) |
in AdjustStereoToMonoForPCM24Bit()
411
(static_cast<uint32_t>(data[DATA_INDEX_4]) <<
BIT_8
) |
in AdjustStereoToMonoForPCM24Bit()
414
leftData = static_cast<uint32_t>(static_cast<int32_t>(leftData <<
BIT_8
) / STEREO_CHANNEL_COUNT +
in AdjustStereoToMonoForPCM24Bit()
415
static_cast<int32_t>(rightData <<
BIT_8
) / STEREO_CHANNEL_COUNT) >>
BIT_8
;
in AdjustStereoToMonoForPCM24Bit()
419
data[DATA_INDEX_1] = static_cast<uint8_t>(leftData >>
BIT_8
);
in AdjustStereoToMonoForPCM24Bit()
422
data[DATA_INDEX_4] = static_cast<uint8_t>(rightData >>
BIT_8
);
in AdjustStereoToMonoForPCM24Bit()
479
(static_cast<uint32_t>(data[DATA_INDEX_1]) <<
BIT_8
) |
in AdjustAudioBalanceForPCM24Bit()
481
int32_t leftTemp = static_cast<int32_t>(leftData <<
BIT_8
);
in AdjustAudioBalanceForPCM24Bit()
483
leftData = static_cast<uint32_t>(leftTemp) >>
BIT_8
;
in AdjustAudioBalanceForPCM24Bit()
[all...]
/foundation/multimedia/media_library/frameworks/services/media_mtp/src/
H
A
D
mtp_packet_tools.cpp
422
return ((uint16_t)numSecond <<
BIT_8
) | (uint16_t)numFirst;
in GetUInt16()
427
return ((uint32_t)numFourth << BIT_24) | ((uint32_t)numThird << BIT_16) | ((uint32_t)numSecond <<
BIT_8
) |
in GetUInt32()
439
outBuffer.push_back((uint8_t)((value >>
BIT_8
) & 0xFF));
in PutUInt16()
445
outBuffer.push_back((uint8_t)((value >>
BIT_8
) & 0xFF));
in PutUInt32()
453
outBuffer.push_back((uint8_t)((value >>
BIT_8
) & 0xFF));
in PutUInt64()
579
uint16_t value = (uint16_t)buffer[offset] | ((uint16_t)buffer[offset + OFFSET_1] <<
BIT_8
);
in GetUInt16()
586
uint32_t value = (uint32_t)buffer[offset] | ((uint32_t)buffer[offset + OFFSET_1] <<
BIT_8
) |
in GetUInt32()
611
value = (uint32_t)buffer[offset] | ((uint32_t)buffer[offset + OFFSET_1] <<
BIT_8
);
in GetUInt16()
623
value = (uint32_t)buffer[offset] | ((uint32_t)buffer[offset + OFFSET_1] <<
BIT_8
) |
in GetUInt32()
636
value = buffer[offset] | (buffer[offset + OFFSET_1] <<
BIT_8
) | (buffe
in GetUInt64()
[all...]
/foundation/communication/bluetooth_service/services/bluetooth/service/src/gatt/
H
A
D
gatt_defines.h
41
constexpr uint8_t
BIT_8
= 0x08;
member in OHOS::bluetooth::GattPermissionService
H
A
D
gatt_client_profile.cpp
2113
uint16_t dest = (*(src + *offset)) | ((*(src + *offset + sizeof(uint8_t))) <<
BIT_8
);
in SplitDataPackageToUint16()
2162
uuid = Uuid::ConvertFrom16Bits((value[1] <<
BIT_8
) | value[0]);
in SplitUuidPackage()
H
A
D
gatt_server_profile.cpp
464
uuid = Uuid::ConvertFrom16Bits((uuid128Bit[0] | (uuid128Bit[1] <<
BIT_8
)));
in DiscoverPrimaryServiceByUuidResponse()
/foundation/communication/netmanager_base/test/netmanagerutils/unittest/netmanager_base_common_test/
H
A
D
ut_netmanager_base_common.cpp
49
constexpr int32_t
BIT_8
= 8;
member
559
EXPECT_EQ(result,
BIT_8
);
in HWTEST_F()
/foundation/multimedia/media_library/frameworks/services/media_mtp/include/
H
A
D
mtp_packet_tools.h
26
constexpr int
BIT_8
= 8;
variable
/foundation/multimedia/audio_framework/frameworks/native/audioutils/include/
H
A
D
audio_utils.h
42
#define
BIT_8
8
macro
/foundation/multimedia/audio_framework/frameworks/native/pulseaudio/modules/hdi/
H
A
D
hdi_sink.c
177
#define
BIT_8
8
macro
183
return ((uint32_t) p[BIT_DEPTH_TWO] << BIT_16) | ((uint32_t) p[1] <<
BIT_8
) | ((uint32_t) p[0]);
in Read24Bit()
189
p[1] = (uint8_t) (u >>
BIT_8
);
in Write24Bit()
203
int32_t s = Read24Bit(a) <<
BIT_8
;
in ConvertFrom24BitToFloat()
242
Write24Bit(b, ((int32_t) v) >>
BIT_8
);
in ConvertFromFloatTo24Bit()
Completed in 21 milliseconds