HomeSort by relevance Sort by last modified time
    Searched refs:bswap32 (Results 1 - 23 of 23) sorted by null

  /device/linaro/bootloader/edk2/StdLib/LibC/Main/
bswap32.c 1 /* $NetBSD: bswap32.c,v 1.1 2005/12/20 19:28:51 christos Exp $ */
10 //__RCSID("$NetBSD: bswap32.c,v 1.1 2005/12/20 19:28:51 christos Exp $");
16 #undef bswap32 macro
19 bswap32(UINT32 x) function
ByteSwap.c 20 #undef bswap32 macro
52 uint32_t bswap32(uint32_t Value) function
bswap64.c 40 th = bswap32((u_int32_t)(x & 0x00000000ffffffffULL));
41 tl = bswap32((u_int32_t)((x >> 32) & 0x00000000ffffffffULL));
  /device/google/contexthub/firmware/external/freebsd/inc/sys/
endian.h 39 #define bswap32(x) __bswap32(x) macro
48 #define htobe32(x) bswap32((x))
55 #define be32toh(x) bswap32((x))
65 #define htole32(x) bswap32((x))
72 #define le32toh(x) bswap32((x))
  /device/linaro/bootloader/edk2/StdLib/Include/sys/
bswap.h 18 uint32_t bswap32(uint32_t) __attribute__((__const__));
21 uint32_t bswap32(uint32_t) __RENAME(__bswap32) __attribute__((__const__));
34 #define __BYTE_SWAP_U32_VARIABLE bswap32
66 #define bswap32(x) \ macro
endian.h 133 #define ntohl(x) bswap32((uint32_t)(x))
135 #define htonl(x) bswap32((uint32_t)(x))
154 #define htole32(x) bswap32((uint32_t)(x))
161 #define HTOLE32(x) (x) = bswap32((uint32_t)(x))
167 #define htobe32(x) bswap32((uint32_t)(x))
174 #define HTOBE32(x) (x) = bswap32((uint32_t)(x))
  /external/fio/os/
os-dragonfly.h 32 #define fio_swap32(x) bswap32(x)
os-netbsd.h 33 #define fio_swap32(x) bswap32(x)
os-openbsd.h 31 #define fio_swap32(x) bswap32(x)
os-freebsd.h 26 #define fio_swap32(x) bswap32(x)
  /frameworks/compile/mclinker/include/mcld/ADT/
SizeTraits.h 106 #ifdef bswap32
107 #undef bswap32 macro
119 /// bswap32 - byte swap 32-bit version
121 inline uint32_t bswap32(uint32_t pData) { function in namespace:mcld
144 return bswap32(pData);
  /frameworks/compile/mclinker/lib/LD/
ELFReader.cpp 97 st_name = mcld::bswap32(symtab[idx].st_name);
98 st_value = mcld::bswap32(symtab[idx].st_value);
99 st_size = mcld::bswap32(symtab[idx].st_size);
319 shoff = mcld::bswap32(ehdr->e_shoff);
350 sh_size = mcld::bswap32(shdr->sh_size);
351 sh_link = mcld::bswap32(shdr->sh_link);
373 sh_offset = mcld::bswap32(shdr->sh_offset);
374 sh_size = mcld::bswap32(shdr->sh_size);
395 sh_name = mcld::bswap32(shdrTab[idx].sh_name);
396 sh_type = mcld::bswap32(shdrTab[idx].sh_type)
    [all...]
RelocationFactory.cpp 53 tmp_data = mcld::bswap32(tmp_data);
  /frameworks/compile/mclinker/lib/Target/
ELFAttribute.cpp 84 bswap32(subsection_length);
218 bswap32(subsubsection_length);
346 bswap32(subsubsection_length);
352 bswap32(subsection_length);
GNULDBackend.cpp     [all...]
  /device/google/contexthub/util/nanoapp_sign/
nanoapp_sign.c 31 inline uint32_t bswap32 (uint32_t x) { function
38 #define htobe32(x) bswap32((x))
40 #define be32toh(x) bswap32((x))
  /external/mesa3d/src/mesa/main/
compiler.h 249 #define CPU_TO_LE32( x ) bswap32( x )
  /external/clang/test/CodeGen/
builtins.c 117 P(bswap32, (N));
  /frameworks/compile/mclinker/lib/Target/Mips/
MipsLDBackend.cpp 930 pType = mcld::bswap32(r_info >> 32);
951 pType = mcld::bswap32(r_info >> 32);
975 uint64_t r_info = mcld::bswap32(pType);
988 uint64_t r_info = mcld::bswap32(pType);
    [all...]
  /system/keymaster/
ocb.c 108 #define bswap32(x) \ macro
118 out.u32[0] = bswap32(in.u32[1]);
119 out.u32[1] = bswap32(in.u32[0]);
    [all...]
  /external/wpa_supplicant_8/src/utils/
common.h 32 #define bswap_32 bswap32
  /frameworks/compile/mclinker/lib/Object/
ObjectLinker.cpp     [all...]
  /external/libtextclassifier/util/hash/
farmhash.cc 126 #define bswap_32(x) bswap32(x)
144 #define bswap_32(x) bswap32(x)
184 STATIC_INLINE uint32_t Bswap32(uint32_t val) { return bswap_32(val); }
332 x = ~Bswap32(x * c1);
534 #define Bswap Bswap32
662 #define Bswap Bswap32
914 #define Bswap Bswap32
1114 #define Bswap Bswap32
    [all...]

Completed in 1681 milliseconds