HomeSort by: relevance | last modified time | path
    Searched refs:bswap_16 (Results 1 - 25 of 26) sorted by relevancy

1 2

  /xsrc/external/mit/xorg-server.old/dist/glx/
glxbyteorder.h 44 #define bswap_16 OSSwapInt16 macro
48 #define bswap_16(value) \ macro
52 (((uint32_t)bswap_16((uint16_t)((value) & 0xffff)) << 16) | \
53 (uint32_t)bswap_16((uint16_t)((value) >> 16)))
indirect_util.c 187 __glXReply.sequenceNumber = bswap_16( client->sequence );
indirect_dispatch_swap.c 67 x.dst = bswap_16( *(uint16_t *) src );
101 uint16_t temp = bswap_16( src[i] );
  /xsrc/external/mit/xf86-video-amdgpu/include/
config.h 136 #define bswap_16 bswap16
  /xsrc/external/mit/xf86-video-ati/include/
config.h 146 #define bswap_16 bswap16
  /xsrc/external/mit/xf86-video-ati-kms/include/
config.h 133 #define bswap_16 bswap16
  /xsrc/external/mit/xorg-server.old/include/
dix-config.h 439 #ifndef bswap_16
441 #define bswap_16 bswap16 macro
  /xsrc/external/mit/xorg-server.old/dist/include/
misc.h 233 #ifndef bswap_16
234 #define bswap_16(value) \ macro
238 (((uint32_t)bswap_16((uint16_t)((value) & 0xffff)) << 16) | \
239 (uint32_t)bswap_16((uint16_t)((value) >> 16)))
dix-config.h.in 433 #undef bswap_16
do-not-use-config.h.in 761 #undef bswap_16
  /xsrc/external/mit/xf86-video-r128/dist/
config.h.in 98 #undef bswap_16
  /xsrc/external/mit/xf86-video-amdgpu/dist/src/
amdgpu_drv.h 123 #define bswap_16(value) \ macro
127 (((uint32_t)bswap_16((uint16_t)((value) & 0xffff)) << 16) | \
128 (uint32_t)bswap_16((uint16_t)((value) >> 16)))
138 #define le16_to_cpu(x) bswap_16(x)
140 #define cpu_to_le16(x) bswap_16(x)
  /xsrc/external/mit/xf86-video-amdgpu/dist/
config.h.in 131 #undef bswap_16
  /xsrc/external/mit/xf86-video-ati/dist/
config.h.in 142 #undef bswap_16
  /xsrc/external/mit/xf86-video-ati-kms/dist/
config.h.in 128 #undef bswap_16
  /xsrc/external/mit/xorg-server/dist/glx/
clientinfo.c 92 req->length = bswap_16(req->length);
114 req->length = bswap_16(req->length);
indirect_util.c 176 reply.sequenceNumber = bswap_16(client->sequence);
indirect_dispatch_swap.c 68 x.dst = bswap_16(*(uint16_t *) src);
114 uint16_t temp = bswap_16(src[i]);
  /xsrc/external/mit/xorg-server/dist/include/
misc.h 365 bswap_16(uint16_t x) function
374 *(x) = bswap_16(*(x)); \
388 (dst) = bswap_16((src)); \
  /xsrc/external/mit/xf86-video-r128/dist/src/
r128.h 85 #define bswap_16(value) \ macro
89 (((uint32_t)bswap_16((uint16_t)((value) & 0xffff)) << 16) | \
90 (uint32_t)bswap_16((uint16_t)((value) >> 16)))
100 #define le16_to_cpu(x) bswap_16(x)
102 #define cpu_to_le16(x) bswap_16(x)
  /xsrc/external/mit/xf86-video-ati-kms/dist/src/
radeon.h 131 #define bswap_16(value) \ macro
135 (((uint32_t)bswap_16((uint16_t)((value) & 0xffff)) << 16) | \
136 (uint32_t)bswap_16((uint16_t)((value) >> 16)))
146 #define le16_to_cpu(x) bswap_16(x)
148 #define cpu_to_le16(x) bswap_16(x)
  /xsrc/external/mit/libpciaccess/dist/src/
common_interface.c 46 # define LETOH_16(x) bswap_16(x)
47 # define HTOLE_16(x) bswap_16(x)
62 # define LETOH_16(x) BSWAP_16(x)
63 # define HTOLE_16(x) BSWAP_16(x)
  /xsrc/external/mit/xorg-server/dist/test/
misc.c 209 assert(bswap_16(test_16) == expect_16);
  /xsrc/external/mit/xf86-video-ati/dist/src/
radeon.h 122 #define bswap_16(value) \ macro
126 (((uint32_t)bswap_16((uint16_t)((value) & 0xffff)) << 16) | \
127 (uint32_t)bswap_16((uint16_t)((value) >> 16)))
137 #define le16_to_cpu(x) bswap_16(x)
139 #define cpu_to_le16(x) bswap_16(x)
  /xsrc/external/mit/xorg-server/dist/os/
io.c 113 bswap_16((req)->length) : (req)->length)

Completed in 37 milliseconds

1 2