OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:U32_ENDIAN_SWAP
(Results
1 - 2
of
2
) sorted by null
/cts/suite/audio_quality/test/
RemoteAudioFakeTcpTest.cpp
112
ASSERT_TRUE(
U32_ENDIAN_SWAP
(0x12345678) == 0x78563412);
127
U32_ENDIAN_SWAP
(AudioProtocol::ECmdDownload),
128
U32_ENDIAN_SWAP
(8),
129
U32_ENDIAN_SWAP
(0), //id
130
U32_ENDIAN_SWAP
(0)
133
U32_ENDIAN_SWAP
((AudioProtocol::ECmdDownload & 0xffff) | 0x43210000),
169
U32_ENDIAN_SWAP
(AudioProtocol::ECmdStartPlayback),
170
U32_ENDIAN_SWAP
(20),
171
U32_ENDIAN_SWAP
(id), //id
172
U32_ENDIAN_SWAP
(samplingF)
[
all
...]
/cts/suite/audio_quality/lib/include/audio/
AudioProtocol.h
28
#define
U32_ENDIAN_SWAP
(x) ( ((x) & 0x000000ff)<<24 | ((x) & 0x0000ff00)<<8 | \
Completed in 299 milliseconds