HomeSort by: relevance | last modified time | path
    Searched defs:htobe64 (Results 1 - 11 of 11) sorted by relevancy

  /src/external/mpl/dhcp/bind/dist/lib/isc/include/isc/
endian.h 56 #define htobe64(x) _byteswap_uint64(x) macro
79 #define htobe64(x) OSSwapHostToBigInt64(x) macro
176 #ifndef htobe64
179 #define htobe64(x) (x) macro
186 #define htobe64(x) bswap_64(x) macro
192 #endif /* !htobe64 */
  /src/crypto/external/cpl/trousers/dist/src/include/
portable_endian.h 31 # define htobe64(x) OSSwapHostToBigInt64(x) macro
75 # define htobe64(x) htonll(x) macro
93 # define htobe64(x) (x) macro
  /src/external/bsd/nsd/dist/simdzone/src/generic/
endian.h 26 #define htobe64(x) _byteswap_uint64(x) macro
40 #define htobe64(x) (x) macro
68 #define htobe64(x) OSSwapHostToBigInt64(x) macro
193 # if !defined htobe64
194 # define htobe64(x) htobe(64,(x)) macro
  /src/external/mpl/bind/dist/lib/isc/include/isc/
endian.h 55 #define htobe64(x) OSSwapHostToBigInt64(x) macro
152 #ifndef htobe64
155 #define htobe64(x) (x) macro
162 #define htobe64(x) bswap_64(x) macro
168 #endif /* !htobe64 */
  /src/sys/arch/hpc/stand/include/machine/
endian.h 164 #define htobe64(x) (x) macro
171 #define HTOBE64(x) (void) (x)
180 #define htobe64(x) bswap64((uint64_t)(x))
187 #define HTOBE64(x) (x) = bswap64((uint64_t)(x))
196 #define be64toh(x) htobe64(x)
203 #define BE64TOH(x) HTOBE64(x)
  /src/sys/sys/
endian.h 146 #define htobe64(x) __CAST(uint64_t, (x)) macro
153 #define HTOBE64(x) __CAST(void, (x))
162 #define htobe64(x) bswap64(__CAST(uint64_t, (x)))
169 #define HTOBE64(x) (x) = bswap64(__CAST(uint64_t, (x)))
178 #define be64toh(x) htobe64(x)
185 #define BE64TOH(x) HTOBE64(x)
  /src/crypto/external/bsd/netpgp/dist/src/netpgpverify/
sha2.c 47 # undef htobe64 macro
85 htobe64(uint64_t x) function
106 return htobe64(x);
540 context->bitcount = htobe64(context->bitcount);
877 context->bitcount[0] = htobe64(context->bitcount[0]);
878 context->bitcount[1] = htobe64(context->bitcount[1]);
  /src/external/bsd/unbound/dist/cachedb/
cachedb.c 63 /* header file for htobe64 */
74 * htobe64/be64toh but has alternatives with a different name. */
76 # define htobe64(x) OSSwapHostToBigInt64(x) macro
83 # define htobe64(n) (n) macro
86 # define htobe64(n) (((uint64_t)htonl((n) & 0xFFFFFFFF) << 32) | htonl((n) >> 32)) macro
433 timestamp = htobe64(timestamp);
434 expiry = htobe64(expiry);
  /src/external/bsd/tmux/dist/compat/
imsg-buffer.c 39 #undef htobe64 macro
40 #define htobe64 htonll macro
212 value = htobe64(value);
350 value = htobe64(value);
  /src/tools/compat/
compat_defs.h 1133 #if !HAVE_DECL_HTOBE64 && !defined(htobe64)
1134 #define htobe64(x) (x) macro
1152 #if !HAVE_DECL_HTOBE64 && !defined(htobe64)
1153 #define htobe64(x) bswap64((u_int64_t)(x)) macro
1172 #define be64toh(x) htobe64(x)
  /src/external/bsd/openldap/dist/contrib/slapd-modules/datamorph/
datamorph.c 49 #define htobe64(x) BE_64(x) macro
83 #define htobe64(x) __builtin_bswap64(x) macro
99 #define htobe64(x) (x) macro
292 buf.be64 = htobe64( h64 );

Completed in 50 milliseconds