OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:bswap32
(Results
1 - 21
of
21
) sorted by null
/external/chromium_org/third_party/WebKit/Source/wtf/
ByteSwap.h
50
ALWAYS_INLINE uint32_t
bswap32
(uint32_t x) { return _byteswap_ulong(x); }
function in namespace:WTF
56
ALWAYS_INLINE uint32_t
bswap32
(uint32_t x) { return __builtin_bswap32(x); }
function in namespace:WTF
72
ALWAYS_INLINE size_t bswapuintptrt(size_t x) { return
bswap32
(x); }
ByteOrder.h
56
inline uint32_t ntohl(uint32_t x) { return WTF::
bswap32
(x); }
57
inline uint32_t htonl(uint32_t x) { return WTF::
bswap32
(x); }
/external/qemu/
android-trace_common.h
93
#define
bswap32
(x) ((((x) & 0xff) << 24) | (((x) & 0xff00) << 8) \
macro
113
#define hostToLE32(x)
bswap32
(x)
116
#define LE32ToHost(x)
bswap32
(x)
119
#define convert32(x) (x =
bswap32
(x))
bswap.h
57
static inline uint32_t
bswap32
(uint32_t x)
function
76
*s =
bswap32
(*s);
237
return
bswap32
(value) >> (32 - 8 * len);
cpu-all.h
53
return
bswap32
(s);
68
*s =
bswap32
(*s);
/frameworks/compile/mclinker/include/mcld/ADT/
SizeTraits.h
117
#ifdef
bswap32
118
#undef
bswap32
macro
131
///
bswap32
- byte swap 32-bit version
133
inline uint32_t
bswap32
(uint32_t pData)
function in namespace:mcld
/external/qemu/hw/
pci_host.h
68
val =
bswap32
(val);
114
val =
bswap32
(val);
mc146818rtc.c
690
val =
bswap32
(val);
700
value =
bswap32
(value);
usb-ohci.c
[
all
...]
/frameworks/compile/mclinker/lib/LD/
ELFReader.cpp
101
st_name = mcld::
bswap32
(symtab[idx].st_name);
102
st_value = mcld::
bswap32
(symtab[idx].st_value);
103
st_size = mcld::
bswap32
(symtab[idx].st_size);
231
r_offset = mcld::
bswap32
(relaTab[idx].r_offset);
232
r_info = mcld::
bswap32
(relaTab[idx].r_info);
233
r_addend = mcld::
bswap32
(relaTab[idx].r_addend);
266
r_offset = mcld::
bswap32
(relTab[idx].r_offset);
267
r_info = mcld::
bswap32
(relTab[idx].r_info);
348
shoff = mcld::
bswap32
(ehdr->e_shoff);
380
sh_size = mcld::
bswap32
(shdr->sh_size)
[
all
...]
RelocationFactory.cpp
54
tmp_data = mcld::
bswap32
(tmp_data);
GNUArchiveReader.cpp
269
number = mcld::
bswap32
(*data);
280
pArchive.addSymbol(name, mcld::
bswap32
(*data));
/external/qemu/audio/
mixeng.c
116
#define ENDIAN_CONVERT(v)
bswap32
(v)
137
#define ENDIAN_CONVERT(v)
bswap32
(v)
audio.c
782
s =
bswap32
(s);
[
all
...]
/external/chromium_org/base/
sys_byteorder.h
59
return
bswap32
(x);
/external/chromium_org/third_party/mesa/src/src/mesa/main/
compiler.h
249
#define CPU_TO_LE32( x )
bswap32
( x )
/external/clang/test/CodeGen/
builtins.c
117
P(
bswap32
, (N));
/external/mesa3d/src/mesa/main/
compiler.h
249
#define CPU_TO_LE32( x )
bswap32
( x )
/frameworks/compile/mclinker/lib/Fragment/
FragmentLinker.cpp
248
tmp_data = mcld::
bswap32
(pReloc.target());
/external/wpa_supplicant_8/src/utils/
common.h
32
#define bswap_32
bswap32
/external/qemu/tcg/i386/
tcg-target.c
[
all
...]
Completed in 242 milliseconds