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

1 2 3 4 5

  /src/sys/arch/sun3/dev/
i82586.h 47 * XXX: the SWAP() macro used here to byte-swap word constants.
99 #define IE_RU_COMMAND SWAP(0x0070) /* mask for RU command */
100 #define IE_RU_NOP SWAP(0) /* for completeness */
101 #define IE_RU_START SWAP(0x0010) /* start receive unit command */
102 #define IE_RU_ENABLE SWAP(0x0020) /* enable receiver command */
103 #define IE_RU_DISABLE SWAP(0x0030) /* disable receiver command */
104 #define IE_RU_ABORT SWAP(0x0040) /* abort current receive operation */
106 #define IE_CU_COMMAND SWAP(0x0700) /* mask for CU command */
107 #define IE_CU_NOP SWAP(0) /* included for completeness *
    [all...]
if_ie.c 142 #define SWAP(x) ((u_short)(XSWAP((u_short)(x))))
241 return SWAP(pa);
405 scb->ie_command_list = SWAP(0xffff);
406 scb->ie_recv_list = SWAP(0xffff);
546 SWAP(scb->ie_err_crc) +
547 SWAP(scb->ie_err_align) +
548 SWAP(scb->ie_err_resource) +
549 SWAP(scb->ie_err_overrun));
594 if_collisions, SWAP(status & IE_XS_MAXCOLL));
673 len = SWAP(sc->rbuffs[head]->ie_rbd_actual)
    [all...]
  /src/crypto/external/apache2/openssl/dist/crypto/aes/
aes_local.h 19 #define SWAP(x) (_lrotl(x, 8) & 0x00ff00ff | _lrotr(x, 8) & 0xff00ff00)
20 #define GETU32(p) SWAP(*((u32 *)(p)))
23 *((u32 *)(ct)) = SWAP((st)); \
  /src/crypto/external/bsd/openssl/dist/crypto/aes/
aes_local.h 19 # define SWAP(x) (_lrotl(x, 8) & 0x00ff00ff | _lrotr(x, 8) & 0xff00ff00)
20 # define GETU32(p) SWAP(*((u32 *)(p)))
21 # define PUTU32(ct, st) { *((u32 *)(ct)) = SWAP((st)); }
  /src/crypto/external/bsd/openssl.old/dist/crypto/aes/
aes_local.h 19 # define SWAP(x) (_lrotl(x, 8) & 0x00ff00ff | _lrotr(x, 8) & 0xff00ff00)
20 # define GETU32(p) SWAP(*((u32 *)(p)))
21 # define PUTU32(ct, st) { *((u32 *)(ct)) = SWAP((st)); }
  /src/external/ibm-public/postfix/dist/src/master/
master_conf.c 101 #define SWAP(type,a,b) { type temp = a; a = b; b = temp; }
145 SWAP(char *, serv->ext_name, entry->ext_name);
146 SWAP(char *, serv->path, entry->path);
147 SWAP(ARGV *, serv->args, entry->args);
148 SWAP(char *, serv->stress_param_val, entry->stress_param_val);
  /src/crypto/external/bsd/heimdal/dist/lib/hcrypto/
rc4.c 43 #define SWAP(k,x,y) \
59 SWAP(key, i, j);
75 SWAP(key, x, y);
  /src/usr.sbin/paxctl/
paxctl.c 186 #define SWAP(a) (swap == 0 ? (a) : \
191 #define EH(field) (size == 32 ? SWAP(e.h32.field) : SWAP(e.h64.field))
192 #define SH(field) (size == 32 ? SWAP(s.h32.field) : SWAP(s.h64.field))
193 #define NH(field) (size == 32 ? SWAP(n.h32.field) : SWAP(n.h64.field))
200 int fd, size, ok = 0, flagged = 0, swap, error = 1; local
221 swap = 0
    [all...]
  /src/external/gpl3/binutils/dist/libctf/
ctf-qsort_r.c 38 /* Byte-wise swap two items of size SIZE. */
39 #define SWAP(a, b, size) \
133 SWAP (mid, lo, size);
135 SWAP (mid, hi, size);
139 SWAP (mid, lo, size);
158 SWAP (left_ptr, right_ptr, size);
230 SWAP (tmp_ptr, base_ptr, size);
  /src/external/gpl3/binutils.old/dist/libctf/
ctf-qsort_r.c 38 /* Byte-wise swap two items of size SIZE. */
39 #define SWAP(a, b, size) \
133 SWAP (mid, lo, size);
135 SWAP (mid, hi, size);
139 SWAP (mid, lo, size);
158 SWAP (left_ptr, right_ptr, size);
230 SWAP (tmp_ptr, base_ptr, size);
  /src/external/gpl3/gdb.old/dist/libctf/
ctf-qsort_r.c 38 /* Byte-wise swap two items of size SIZE. */
39 #define SWAP(a, b, size) \
133 SWAP (mid, lo, size);
135 SWAP (mid, hi, size);
139 SWAP (mid, lo, size);
158 SWAP (left_ptr, right_ptr, size);
230 SWAP (tmp_ptr, base_ptr, size);
  /src/external/gpl3/gdb/dist/libctf/
ctf-qsort_r.c 38 /* Byte-wise swap two items of size SIZE. */
39 #define SWAP(a, b, size) \
133 SWAP (mid, lo, size);
135 SWAP (mid, hi, size);
139 SWAP (mid, lo, size);
158 SWAP (left_ptr, right_ptr, size);
230 SWAP (tmp_ptr, base_ptr, size);
  /src/external/ibm-public/postfix/dist/src/global/
recipient_list.c 167 /* recipient_list_swap - swap recipients between the two recipient lists */
174 #define SWAP(t, x) do { t x = b->x; b->x = a->x ; a->x = x; } while (0)
176 SWAP(RECIPIENT *, info);
177 SWAP(int, len);
178 SWAP(int, avail);
off_cvt.c 69 #define SWAP(type, a, b) { type temp; temp = a; a = b; b = temp; }
128 SWAP(int, start[i], last[-i]);
  /src/external/gpl2/gettext/dist/gettext-runtime/intl/
gettextP.h 100 # define W(flag, data) ((flag) ? SWAP (data) : (data))
106 # define SWAP(i) bswap_32 (i)
109 SWAP (i)
  /src/external/gpl2/texinfo/dist/intl/
gettextP.h 56 # define W(flag, data) ((flag) ? SWAP (data) : (data))
62 # define SWAP(i) bswap_32 (i)
65 SWAP (nls_uint32 i)
  /src/external/gpl3/gcc.old/dist/intl/
gettextP.h 62 # define W(flag, data) ((flag) ? SWAP (data) : (data))
68 # define SWAP(i) bswap_32 (i)
71 SWAP (i)
  /src/external/gpl3/binutils/dist/include/opcode/
arc-attrs.h 51 { SWAP, ARC_OPCODE_ARCALL, "SWAP", "swap" },
  /src/external/gpl3/binutils.old/dist/include/opcode/
arc-attrs.h 51 { SWAP, ARC_OPCODE_ARCALL, "SWAP", "swap" },
  /src/external/gpl3/gdb.old/dist/include/opcode/
arc-attrs.h 51 { SWAP, ARC_OPCODE_ARCALL, "SWAP", "swap" },
  /src/external/gpl3/gdb/dist/include/opcode/
arc-attrs.h 51 { SWAP, ARC_OPCODE_ARCALL, "SWAP", "swap" },
  /src/sys/arch/sparc/fpu/
fpu_emu.h 131 SWAP(x, y); \
133 #define SWAP(x, y) { \
134 struct fpn *swap; \
135 swap = (x), (x) = (y), (y) = swap; \
  /src/external/gpl3/gdb/dist/readline/readline/
rldefs.h 159 #if !defined (SWAP)
160 # define SWAP(s, e) do { int t; t = s; s = e; e = t; } while (0)
  /src/external/gpl3/gdb.old/dist/readline/readline/
rldefs.h 159 #if !defined (SWAP)
160 # define SWAP(s, e) do { int t; t = s; s = e; e = t; } while (0)
  /src/sys/arch/amiga/dev/
if_es.c 70 #define SWAP(x) (((x & 0xff) << 8) | ((x >> 8) & 0xff))
210 SWAP(smc->b0.tcr), SWAP(smc->b0.ephsr), SWAP(smc->b0.rcr),
211 SWAP(smc->b0.ecr), SWAP(smc->b0.mir), SWAP(smc->b0.mcr));
214 SWAP(smc->b1.cr), SWAP(smc->b1.bar), smc->b1.iar[0], smc->b1.iar[1],
215 smc->b1.iar[2], smc->b1.gpr, SWAP(smc->b1.ctr))
    [all...]

Completed in 31 milliseconds

1 2 3 4 5