HomeSort by relevance Sort by last modified time
    Searched defs:SWAPSHORT (Results 1 - 2 of 2) sorted by null

  /external/libpcap/
pcap-common.h 17 #define SWAPSHORT(y) \
  /libcore/ojluni/src/main/native/
Bits.c 66 #define SWAPSHORT(x) ((jshort)(((x) << 8) | (((x) >> 8) & 0xff)))
67 #define SWAPINT(x) ((jint)((SWAPSHORT((jshort)(x)) << 16) | \
68 (SWAPSHORT((jshort)((x) >> 16)) & 0xffff)))
99 *dstShort++ = SWAPSHORT(tmpShort);
134 *dstShort++ = SWAPSHORT(tmpShort);

Completed in 63 milliseconds