OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:bswap_16
(Results
51 - 66
of
66
) sorted by null
1
2
3
/prebuilts/ndk/8/platforms/android-8/arch-x86/usr/include/
byteswap.h
33
#define
bswap_16
(x) swap16(x)
macro
/prebuilts/ndk/8/platforms/android-9/arch-arm/usr/include/
byteswap.h
33
#define
bswap_16
(x) swap16(x)
macro
/prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/
byteswap.h
33
#define
bswap_16
(x) swap16(x)
macro
/prebuilts/ndk/8/platforms/android-9/arch-x86/usr/include/
byteswap.h
33
#define
bswap_16
(x) swap16(x)
macro
/external/wpa_supplicant_8/src/utils/
common.h
27
#define
bswap_16
swap16
macro
31
#define
bswap_16
bswap16
macro
44
static inline unsigned short
bswap_16
(unsigned short v)
function
192
#define be_to_host16(n)
bswap_16
((__force u16) (be16) (n))
193
#define host_to_be16(n) ((__force be16)
bswap_16
((n)))
203
#define le_to_host16(n)
bswap_16
(n)
204
#define host_to_le16(n)
bswap_16
(n)
362
#ifndef
bswap_16
363
#define
bswap_16
(a) ((((u16) (a) << 8) & 0xff00) | (((u16) (a) >> 8) & 0xff))
macro
/system/bluetooth/bluez-clean-headers/bluetooth/
bluetooth.h
95
#define htobs(d)
bswap_16
(d)
97
#define btohs(d)
bswap_16
(d)
/external/elfutils/libdw/
memory-access.h
149
?
bswap_16
(*((const uint16_t *) (Addr))) \
153
? (int16_t)
bswap_16
(*((const int16_t *) (Addr))) \
194
return
bswap_16
(up->u2);
202
return (int16_t)
bswap_16
(up->u2);
/external/elfutils/libelf/
common.h
163
?
bswap_16
(Var) \
172
?
bswap_16
(Var) \
gelf_xlate.c
119
case 2: STORE (16, dest,
bswap_16
(FETCH (16, ptr))); break; \
/external/qemu/
bswap.h
18
#define
bswap_16
(x) \
macro
54
return
bswap_16
(x);
/external/blktrace/
blktrace.h
67
#define __bswap_16
bswap_16
/libcore/luni/src/main/native/
libcore_io_Memory.cpp
95
*reinterpret_cast<jshort*>(dst) =
bswap_16
(v);
104
put_unaligned<jshort>(reinterpret_cast<jshort*>(dst),
bswap_16
(v));
265
result =
bswap_16
(result);
272
value =
bswap_16
(value);
/external/dbus/dbus/
dbus-marshal-basic.h
44
#define DBUS_UINT16_SWAP_LE_BE_CONSTANT(val)
bswap_16
(val)
/frameworks/av/media/libstagefright/id3/
ID3.cpp
529
framedatacopy[i] =
bswap_16
(framedata[i]);
547
framedatacopy[i] =
bswap_16
(framedata[i]);
/external/libmtp/m4/
byteorder.m4
102
#define swap16(x)
bswap_16
(x)
/external/linux-tools-perf/util/
session.c
857
self->misc =
bswap_16
(self->misc);
858
self->size =
bswap_16
(self->size);
[
all
...]
Completed in 724 milliseconds
1
2
3