| /src/games/larn/ |
| signal.c | 23 #define BIT(a) (1<<((a)-1)) 81 sigsetmask(sigblock(0) & ~BIT(SIGTSTP));
|
| /src/external/gpl3/gdb/dist/sim/testsuite/ft32/ |
| basic.s | 340 #define BIT(N,M) ((((N) & 15) << 5) | (M)) 384 # the 6 bit field starting at position 24 is positive 387 # the 5 bit field starting at position 24 is negative 559 # 8-bit comparisons
|
| /src/external/gpl3/gdb.old/dist/sim/testsuite/ft32/ |
| basic.s | 340 #define BIT(N,M) ((((N) & 15) << 5) | (M)) 384 # the 6 bit field starting at position 24 is positive 387 # the 5 bit field starting at position 24 is negative 559 # 8-bit comparisons
|
| /src/external/gpl3/binutils/dist/opcodes/ |
| mips-formats.h | 41 #define BIT(SIZE, LSB, BIAS) \
|
| aarch64-opc.c | 38 /* The enumeration strings associated with each value of a 5-bit SVE 79 /* The enumeration strings associated with each value of a 4-bit SVE 102 /* The enumeration strings associated with each value of a 6-bit RPRFM 225 /* Instruction bit-fields. 235 AARCH64_FIELD (10, 2), /* CRm_dsb_nxs: 2-bit imm. encoded in CRm<3:2>. */ 258 AARCH64_FIELD (16, 1), /* SME_Q: Q class bit, bit 16. */ 261 AARCH64_FIELD (15, 1), /* SME_V: (horizontal / vertical tiles), bit 15. */ 262 AARCH64_FIELD (10, 1), /* SME_VL_10: VLx2 or VLx4, bit [10]. */ 263 AARCH64_FIELD (13, 1), /* SME_VL_13: VLx2 or VLx4, bit [13]. * [all...] |
| /src/external/gpl3/binutils.old/dist/opcodes/ |
| mips-formats.h | 41 #define BIT(SIZE, LSB, BIAS) \
|
| aarch64-opc.c | 38 /* The enumeration strings associated with each value of a 5-bit SVE 79 /* The enumeration strings associated with each value of a 4-bit SVE 102 /* The enumeration strings associated with each value of a 6-bit RPRFM 225 /* Instruction bit-fields. 231 { 10, 2 }, /* CRm_dsb_nxs: 2-bit imm. encoded in CRm<3:2>. */ 254 { 16, 1 }, /* SME_Q: Q class bit, bit 16. */ 257 { 15, 1 }, /* SME_V: (horizontal / vertical tiles), bit 15. */ 258 { 10, 1 }, /* SME_VL_10: VLx2 or VLx4, bit [10]. */ 259 { 13, 1 }, /* SME_VL_13: VLx2 or VLx4, bit [13]. * [all...] |
| /src/external/gpl3/gdb.old/dist/opcodes/ |
| mips-formats.h | 41 #define BIT(SIZE, LSB, BIAS) \
|
| /src/external/gpl3/gdb/dist/opcodes/ |
| mips-formats.h | 41 #define BIT(SIZE, LSB, BIAS) \
|
| /src/usr.bin/lastcomm/ |
| lastcomm.c | 184 #define BIT(flag, ch) if (f & flag) *p++ = ch 187 BIT(ASU, 'S'); 188 BIT(AFORK, 'F'); 189 BIT(ACOMPAT, 'C'); 190 BIT(ACORE, 'D'); 191 BIT(AXSIG, 'X');
|
| /src/usr.bin/systat/ |
| convtbl.c | 45 #define BIT (8) 74 [SC_BIT] = { BIT, BITS, "b", "bit" }, 75 [SC_KILOBIT] = { BIT, KILOBIT, "Kb", "kbit" }, 76 [SC_MEGABIT] = { BIT, MEGABIT, "Mb", "mbit" }, 77 [SC_GIGABIT] = { BIT, GIGABIT, "Gb", "gbit" }, 78 [SC_TERABIT] = { BIT, TERABIT, "Tb", "tbit" },
|
| /src/crypto/dist/ipsec-tools/src/racoon/ |
| vendorid.h | 37 #ifndef BIT 38 #define BIT(x) (1 << (x)) 54 #define VENDORID_GSSAPI_MASK (BIT(VENDORID_GSSAPI_LONG) | \ 55 BIT(VENDORID_GSSAPI) | \ 56 BIT(VENDORID_MS_NT5))
|
| /src/external/gpl3/gdb/dist/sim/ppc/ |
| bits.h | 25 /* bit manipulation routines: 27 Bit numbering: The bits are numbered according to the PowerPC 28 convention - the left most (or most significant) is bit 0 while the 29 right most (least significant) is bit 1. 32 operates in 32bit quantity (bits are numbered 0..31); <MACRO>64 33 which operates using 64bit quantites (and bits are numbered 0..64); 34 and <MACRO> which operates using the bit size of the target 35 architecture (bits are still numbered 0..63), with 32bit 36 architectures ignoring the first 32bits having bit 32 as the most 39 BIT*(POS): Quantity with just 1 bit set [all...] |
| /src/external/gpl3/gdb.old/dist/sim/ppc/ |
| bits.h | 25 /* bit manipulation routines: 27 Bit numbering: The bits are numbered according to the PowerPC 28 convention - the left most (or most significant) is bit 0 while the 29 right most (least significant) is bit 1. 32 operates in 32bit quantity (bits are numbered 0..31); <MACRO>64 33 which operates using 64bit quantites (and bits are numbered 0..64); 34 and <MACRO> which operates using the bit size of the target 35 architecture (bits are still numbered 0..63), with 32bit 36 architectures ignoring the first 32bits having bit 32 as the most 39 BIT*(POS): Quantity with just 1 bit set [all...] |
| /src/sys/external/bsd/common/include/linux/ |
| bitops.h | 116 #define BIT(n) ((unsigned long)__BIT(n)) 154 __test_and_set_bit(unsigned int bit, volatile unsigned long *ptr) 157 volatile unsigned long *const p = &ptr[bit / units]; 158 const unsigned long mask = (1UL << (bit % units)); 168 __test_and_clear_bit(unsigned int bit, volatile unsigned long *ptr) 171 volatile unsigned long *const p = &ptr[bit / units]; 172 const unsigned long mask = (1UL << (bit % units)); 182 __test_and_change_bit(unsigned int bit, volatile unsigned long *ptr) 185 volatile unsigned long *const p = &ptr[bit / units]; 186 const unsigned long mask = (1UL << (bit % units)) [all...] |
| /src/external/bsd/wpa/dist/src/utils/ |
| common.h | 444 #ifndef BIT 445 #define BIT(x) (1U << (x)) 609 if ((__links) & BIT(__i)) 617 if (!(_links) || (_links) & BIT(_i))
|
| /src/external/gpl3/gdb.old/dist/sim/common/ |
| sim-bits.h | 27 /* Bit manipulation routines: 29 Bit numbering: The bits are numbered according to the target ISA's 35 operates in 32bit quantity (bits are numbered 0..31); <MACRO>64 36 which operates using 64bit quantites (and bits are numbered 0..63); 37 and <MACRO> which operates using the bit size of the target 38 architecture (bits are still numbered 0..63), with 32bit 39 architectures ignoring the first 32bits leaving bit 32 as the most 45 BIT*(POS): `*' bit constant with just 1 bit set [all...] |
| /src/external/gpl3/gdb/dist/sim/common/ |
| sim-bits.h | 27 /* Bit manipulation routines: 29 Bit numbering: The bits are numbered according to the target ISA's 35 operates in 32bit quantity (bits are numbered 0..31); <MACRO>64 36 which operates using 64bit quantites (and bits are numbered 0..63); 37 and <MACRO> which operates using the bit size of the target 38 architecture (bits are still numbered 0..63), with 32bit 39 architectures ignoring the first 32bits leaving bit 32 as the most 45 BIT*(POS): `*' bit constant with just 1 bit set [all...] |
| /src/sys/external/bsd/ena-com/ |
| ena_plat.h | 155 #define BIT(x) (1UL << (x))
|
| /src/external/bsd/byacc/dist/ |
| defs.h | 51 /* BIT returns the value of the n-th bit starting */ 53 /* SETBIT sets the n-th bit starting from r */ 77 #define BIT(r, n) ((((r)[(n)/BITS_PER_WORD])>>((n)&(BITS_PER_WORD-1)))&1)
|
| /src/bin/ksh/ |
| sh.h | 159 #define BIT(i) (1<<(i)) /* define bit in flag */ 171 * not a char that is used often. Also, can't use the high bit as it causes 236 #define EF_FUNC_PARSE BIT(0) /* function being parsed */ 237 #define EF_BRKCONT_PASS BIT(1) /* set if E_LOOP must pass break/continue on */ 238 #define EF_FAKE_SIGDIE BIT(2) /* hack to get info from unwind to quitenv */ 283 FEMACSUSEMETA, /* use 8th bit as meta */ 314 FVISHOW8, /* display chars with 8th bit set as is (versus M-) */ 370 #define TF_SHELL_USES BIT(0) /* shell uses signal, user can't change */ 371 #define TF_USER_SET BIT(1) /* user has (tried to) set trap * [all...] |
| /src/sys/dev/pci/ |
| voodoofbreg.h | 197 #define BIT(x) (1UL << (x)) 204 #define AUTOINC_DSTX BIT(10) 205 #define AUTOINC_DSTY BIT(11) 209 #define SST_2D_GO BIT(8) 212 #define STATUS_RETRACE BIT(6) 213 #define STATUS_BUSY BIT(9) 214 #define MISCINIT1_CLUT_INV BIT(0) 215 #define MISCINIT1_2DBLOCK_DIS BIT(15) 216 #define DRAMINIT0_SGRAM_NUM BIT(26) 217 #define DRAMINIT0_SGRAM_TYPE BIT(27 [all...] |
| /src/external/gpl3/gdb.old/dist/sim/arm/ |
| armdefs.h | 55 typedef double ARMdval; /* FIXME: Must be a 64-bit floating point type. */ 56 typedef float ARMfval; /* FIXME: Must be a 32-bit floating point type. */ 80 /* 40 bit accumulator. We always keep this 64 bits wide, 126 ARMword CP14R0_CCD; /* used to count 64 clock cycles with CP14 R0 bit 189 #undef BIT /* common/sim-bits.h conflict :( */ 190 #define BIT(n) ( (ARMword)(instr>>(n))&1) /* bit n of instruction */
|
| /src/external/bsd/file/dist/src/ |
| file.h | 380 #define BIT(A) (1 << (A)) 381 #define STRING_COMPACT_WHITESPACE BIT(0) 382 #define STRING_COMPACT_OPTIONAL_WHITESPACE BIT(1) 383 #define STRING_IGNORE_LOWERCASE BIT(2) 384 #define STRING_IGNORE_UPPERCASE BIT(3) 385 #define REGEX_OFFSET_START BIT(4) 386 #define STRING_TEXTTEST BIT(5) 387 #define STRING_BINTEST BIT(6) 388 #define PSTRING_1_BE BIT(7) 389 #define PSTRING_1_LE BIT(7 [all...] |
| /src/external/bsd/wpa/dist/src/common/ |
| wpa_ctrl.h | 451 #ifndef BIT 452 #define BIT(x) (1U << (x)) 461 #define WPA_BSS_MASK_ID BIT(0) 462 #define WPA_BSS_MASK_BSSID BIT(1) 463 #define WPA_BSS_MASK_FREQ BIT(2) 464 #define WPA_BSS_MASK_BEACON_INT BIT(3) 465 #define WPA_BSS_MASK_CAPABILITIES BIT(4) 466 #define WPA_BSS_MASK_QUAL BIT(5) 467 #define WPA_BSS_MASK_NOISE BIT(6) 468 #define WPA_BSS_MASK_LEVEL BIT(7 [all...] |