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_16
(Results
1 - 6
of
6
) sorted by relevance
/foundation/multimedia/audio_framework/frameworks/native/audioutils/src/
H
A
D
audio_utils.cpp
407
uint32_t leftData = (static_cast<uint32_t>(data[DATA_INDEX_2]) <<
BIT_16
) |
in AdjustStereoToMonoForPCM24Bit()
410
uint32_t rightData = (static_cast<uint32_t>(data[DATA_INDEX_5]) <<
BIT_16
) |
in AdjustStereoToMonoForPCM24Bit()
420
data[DATA_INDEX_2] = static_cast<uint8_t>(leftData >>
BIT_16
);
in AdjustStereoToMonoForPCM24Bit()
423
data[DATA_INDEX_5] = static_cast<uint8_t>(rightData >>
BIT_16
);
in AdjustStereoToMonoForPCM24Bit()
478
uint32_t leftData = (static_cast<uint32_t>(data[DATA_INDEX_2]) <<
BIT_16
) |
in AdjustAudioBalanceForPCM24Bit()
486
data[DATA_INDEX_2] = static_cast<uint8_t>(leftData >>
BIT_16
);
in AdjustAudioBalanceForPCM24Bit()
488
uint32_t rightData = (static_cast<uint32_t>(data[DATA_INDEX_5]) <<
BIT_16
) |
in AdjustAudioBalanceForPCM24Bit()
496
data[DATA_INDEX_5] = static_cast<uint8_t>(rightData >>
BIT_16
);
in AdjustAudioBalanceForPCM24Bit()
519
return ((uint32_t) p[BIT_DEPTH_TWO] <<
BIT_16
) | ((uint32_t) p[1] << BIT_8) | ((uint32_t) p[0]);
in Read24Bit()
524
p[BIT_DEPTH_TWO] = (uint8_t) (u >>
BIT_16
);
in Write24Bit()
[all...]
/foundation/multimedia/media_library/frameworks/services/media_mtp/src/
H
A
D
mtp_packet_tools.cpp
427
return ((uint32_t)numFourth << BIT_24) | ((uint32_t)numThird <<
BIT_16
) | ((uint32_t)numSecond << BIT_8) |
in GetUInt32()
446
outBuffer.push_back((uint8_t)((value >>
BIT_16
) & 0xFF));
in PutUInt32()
454
outBuffer.push_back((uint8_t)((value >>
BIT_16
) & 0xFF));
in PutUInt64()
587
((uint32_t)buffer[offset + OFFSET_2] <<
BIT_16
) | ((uint32_t)buffer[offset + OFFSET_3] << BIT_24);
in GetUInt32()
624
((uint32_t)buffer[offset + OFFSET_2] <<
BIT_16
) | ((uint32_t)buffer[offset + OFFSET_3] << BIT_24);
in GetUInt32()
636
value = buffer[offset] | (buffer[offset + OFFSET_1] << BIT_8) | (buffer[offset + OFFSET_2] <<
BIT_16
) |
in GetUInt64()
/foundation/communication/netmanager_base/test/netmanagerutils/unittest/netmanager_base_common_test/
H
A
D
ut_netmanager_base_common.cpp
48
constexpr int32_t
BIT_16
= 16;
member
556
EXPECT_EQ(result,
BIT_16
);
in HWTEST_F()
/foundation/multimedia/media_library/frameworks/services/media_mtp/include/
H
A
D
mtp_packet_tools.h
27
constexpr int
BIT_16
= 16;
variable
/foundation/multimedia/audio_framework/frameworks/native/audioutils/include/
H
A
D
audio_utils.h
43
#define
BIT_16
16
macro
/foundation/multimedia/audio_framework/frameworks/native/pulseaudio/modules/hdi/
H
A
D
hdi_sink.c
178
#define
BIT_16
16
macro
183
return ((uint32_t) p[BIT_DEPTH_TWO] <<
BIT_16
) | ((uint32_t) p[1] << BIT_8) | ((uint32_t) p[0]);
in Read24Bit()
188
p[BIT_DEPTH_TWO] = (uint8_t) (u >>
BIT_16
);
in Write24Bit()
196
*(b++) = *(a++) * (1.0f / (1 << (
BIT_16
- 1)));
in ConvertFrom16BitToFloat()
232
float v = CapMax(tmp) * (1 << (
BIT_16
- 1));
in ConvertFromFloatTo16Bit()
Completed in 12 milliseconds