Symbol: BIT
bin/ksh/c_ksh.c
223
#define PO_NL BIT(0) /* print newline */
bin/ksh/c_ksh.c
224
#define PO_EXPAND BIT(1) /* expand backslash sequences */
bin/ksh/c_ksh.c
225
#define PO_PMINUSMINUS BIT(2) /* print a -- argument */
bin/ksh/c_ksh.c
226
#define PO_HIST BIT(3) /* print to history instead of stdout */
bin/ksh/c_ksh.c
227
#define PO_COPROC BIT(4) /* printing to coprocess: block SIGPIPE */
bin/ksh/c_sh.c
727
#define TF_NOARGS BIT(0)
bin/ksh/c_sh.c
728
#define TF_NOREAL BIT(1) /* don't report real time */
bin/ksh/c_sh.c
729
#define TF_POSIX BIT(2) /* report in posix format */
bin/ksh/c_test.h
34
#define TEF_ERROR BIT(0) /* set if we've hit an error */
bin/ksh/c_test.h
35
#define TEF_DBRACKET BIT(1) /* set if [[ .. ]] test */
bin/ksh/edit.h
43
#define XCF_COMMAND BIT(0) /* Do command completion */
bin/ksh/edit.h
44
#define XCF_FILE BIT(1) /* Do file completion */
bin/ksh/edit.h
45
#define XCF_FULLPATH BIT(2) /* command completion: store full path */
bin/ksh/eval.c
971
#define GF_EXCHECK BIT(0) /* do existence check on file */
bin/ksh/eval.c
972
#define GF_GLOBBED BIT(1) /* some globbing has been done */
bin/ksh/eval.c
973
#define GF_MARKDIR BIT(2) /* add trailing / to directories */
bin/ksh/lex.h
108
#define CONTIN BIT(0) /* skip new lines to complete command */
bin/ksh/lex.h
109
#define ONEWORD BIT(1) /* single word for substitute() */
bin/ksh/lex.h
110
#define ALIAS BIT(2) /* recognize alias */
bin/ksh/lex.h
111
#define KEYWORD BIT(3) /* recognize keywords */
bin/ksh/lex.h
112
#define LETEXPR BIT(4) /* get expression inside (( )) */
bin/ksh/lex.h
113
#define VARASN BIT(5) /* check for var=word */
bin/ksh/lex.h
114
#define ARRAYVAR BIT(6) /* parse x[1 & 2] as one word */
bin/ksh/lex.h
115
#define ESACONLY BIT(7) /* only accept esac keyword */
bin/ksh/lex.h
116
#define CMDWORD BIT(8) /* parsing simple command (alias related) */
bin/ksh/lex.h
117
#define HEREDELIM BIT(9) /* parsing <<,<<- delimiter */
bin/ksh/lex.h
118
#define HEREDOC BIT(10) /* parsing heredoc */
bin/ksh/lex.h
45
#define SF_ECHO BIT(0) /* echo input to shlout */
bin/ksh/lex.h
46
#define SF_ALIAS BIT(1) /* faking space at end of alias */
bin/ksh/lex.h
47
#define SF_ALIASEND BIT(2) /* faking space at end of alias */
bin/ksh/lex.h
48
#define SF_TTY BIT(3) /* type == SSTDIN & it is a tty */
bin/ksh/sh.h
236
#define EF_FUNC_PARSE BIT(0) /* function being parsed */
bin/ksh/sh.h
237
#define EF_BRKCONT_PASS BIT(1) /* set if E_LOOP must pass break/continue on */
bin/ksh/sh.h
238
#define EF_FAKE_SIGDIE BIT(2) /* hack to get info from unwind to quitenv */
bin/ksh/sh.h
370
#define TF_SHELL_USES BIT(0) /* shell uses signal, user can't change */
bin/ksh/sh.h
371
#define TF_USER_SET BIT(1) /* user has (tried to) set trap */
bin/ksh/sh.h
372
#define TF_ORIG_IGN BIT(2) /* original action was SIG_IGN */
bin/ksh/sh.h
373
#define TF_ORIG_DFL BIT(3) /* original action was SIG_DFL */
bin/ksh/sh.h
374
#define TF_EXEC_IGN BIT(4) /* restore SIG_IGN just before exec */
bin/ksh/sh.h
375
#define TF_EXEC_DFL BIT(5) /* restore SIG_DFL just before exec */
bin/ksh/sh.h
376
#define TF_DFL_INTR BIT(6) /* when received, default action is LINTR */
bin/ksh/sh.h
377
#define TF_TTY_INTR BIT(7) /* tty generated signal (see j_waitj) */
bin/ksh/sh.h
378
#define TF_CHANGED BIT(8) /* used by runtrap() to detect trap changes */
bin/ksh/sh.h
379
#define TF_FATAL BIT(9) /* causes termination if not trapped */
bin/ksh/sh.h
387
#define SS_FORCE BIT(3) /* set signal even if original signal ignored */
bin/ksh/sh.h
388
#define SS_USER BIT(4) /* user is doing the set (ie, trap command) */
bin/ksh/sh.h
389
#define SS_SHTRAP BIT(5) /* trap for internal use (CHLD,ALRM,WINCH) */
bin/ksh/sh.h
419
#define C_ALPHA BIT(0) /* a-z_A-Z */
bin/ksh/sh.h
420
#define C_DIGIT BIT(1) /* 0-9 */
bin/ksh/sh.h
421
#define C_LEX1 BIT(2) /* \0 \t\n|&;<>() */
bin/ksh/sh.h
422
#define C_VAR1 BIT(3) /* *@#!$-? */
bin/ksh/sh.h
423
#define C_IFSWS BIT(4) /* \t \n (IFS white space) */
bin/ksh/sh.h
424
#define C_SUBOP1 BIT(5) /* "=-+?" */
bin/ksh/sh.h
425
#define C_SUBOP2 BIT(6) /* "#%" */
bin/ksh/sh.h
426
#define C_IFS BIT(7) /* $IFS */
bin/ksh/sh.h
427
#define C_QUOTE BIT(8) /* \n\t"#$&'()*;<>?[\`| (needing quoting) */
bin/ksh/sh.h
441
#define GF_ERROR BIT(0) /* call errorf() if there is an error */
bin/ksh/sh.h
442
#define GF_PLUSOPT BIT(1) /* allow +c as an option */
bin/ksh/sh.h
443
#define GF_NONAME BIT(2) /* don't print argv[0] in errors */
bin/ksh/sh.h
446
#define GI_MINUS BIT(0) /* an option started with -... */
bin/ksh/sh.h
447
#define GI_PLUS BIT(1) /* an option started with +... */
bin/ksh/sh.h
448
#define GI_MINUSMINUS BIT(2) /* arguments were ended with -- */
bin/ksh/table.h
127
#define BF_DOGETOPTS BIT(0) /* save/restore getopts state */
bin/ksh/table.h
37
#define ALLOC BIT(0) /* val.s has been allocated */
bin/ksh/table.h
38
#define DEFINED BIT(1) /* is defined in block */
bin/ksh/table.h
39
#define ISSET BIT(2) /* has value, vp->val.[si] */
bin/ksh/table.h
40
#define EXPORT BIT(3) /* exported variable/function */
bin/ksh/table.h
41
#define TRACE BIT(4) /* var: user flagged, func: execution tracing */
bin/ksh/table.h
44
#define SPECIAL BIT(8) /* PATH, IFS, SECONDS, etc */
bin/ksh/table.h
45
#define INTEGER BIT(9) /* val.i contains integer value */
bin/ksh/table.h
46
#define RDONLY BIT(10) /* read-only variable */
bin/ksh/table.h
47
#define LOCAL BIT(11) /* for local typeset() */
bin/ksh/table.h
48
#define ARRAY BIT(13) /* array */
bin/ksh/table.h
49
#define LJUST BIT(14) /* left justify */
bin/ksh/table.h
50
#define RJUST BIT(15) /* right justify */
bin/ksh/table.h
51
#define ZEROFIL BIT(16) /* 0 filled if RJUSTIFY, strip 0s if LJUSTIFY */
bin/ksh/table.h
52
#define LCASEV BIT(17) /* convert to lower case */
bin/ksh/table.h
53
#define UCASEV_AL BIT(18)/* convert to upper case / autoload function */
bin/ksh/table.h
54
#define INT_U BIT(19) /* unsigned integer */
bin/ksh/table.h
55
#define INT_L BIT(20) /* long integer (no-op) */
bin/ksh/table.h
56
#define IMPORT BIT(21) /* flag to typeset(): no arrays, must have = */
bin/ksh/table.h
57
#define LOCAL_COPY BIT(22) /* with LOCAL - copy attrs from existing var */
bin/ksh/table.h
58
#define EXPRINEVAL BIT(23) /* contents currently being evaluated */
bin/ksh/table.h
59
#define EXPRLVALUE BIT(24) /* useable as lvalue (temp flag) */
bin/ksh/table.h
61
#define KEEPASN BIT(8) /* keep command assignments (eg, var=x cmd) */
bin/ksh/table.h
62
#define FINUSE BIT(9) /* function being executed */
bin/ksh/table.h
63
#define FDELETE BIT(10) /* function deleted while it was executing */
bin/ksh/table.h
64
#define FKSH BIT(11) /* function defined with function x (vs x()) */
bin/ksh/table.h
65
#define SPEC_BI BIT(12) /* a POSIX special builtin */
bin/ksh/table.h
66
#define REG_BI BIT(13) /* a POSIX regular builtin */
bin/ksh/table.h
83
#define FC_SPECBI BIT(0) /* special builtin */
bin/ksh/table.h
84
#define FC_FUNC BIT(1) /* function builtin */
bin/ksh/table.h
85
#define FC_REGBI BIT(2) /* regular builtin */
bin/ksh/table.h
86
#define FC_UNREGBI BIT(3) /* un-regular builtin (!special,!regular) */
bin/ksh/table.h
88
#define FC_PATH BIT(4) /* do path search */
bin/ksh/table.h
89
#define FC_DEFPATH BIT(5) /* use default path in path search */
bin/ksh/tree.h
101
#define XEXEC BIT(0) /* execute without forking */
bin/ksh/tree.h
102
#define XFORK BIT(1) /* fork before executing */
bin/ksh/tree.h
103
#define XBGND BIT(2) /* command & */
bin/ksh/tree.h
104
#define XPIPEI BIT(3) /* input is pipe */
bin/ksh/tree.h
105
#define XPIPEO BIT(4) /* output is pipe */
bin/ksh/tree.h
107
#define XXCOM BIT(5) /* `...` command */
bin/ksh/tree.h
108
#define XPCLOSE BIT(6) /* exchild: close close_fd in parent */
bin/ksh/tree.h
109
#define XCCLOSE BIT(7) /* exchild: close close_fd in child */
bin/ksh/tree.h
110
#define XERROK BIT(8) /* non-zero exit ok (for set -e) */
bin/ksh/tree.h
111
#define XCOPROC BIT(9) /* starting a co-process */
bin/ksh/tree.h
112
#define XTIME BIT(10) /* timing TCOM command */
bin/ksh/tree.h
118
#define DOBLANK BIT(0) /* perform blank interpretation */
bin/ksh/tree.h
119
#define DOGLOB BIT(1) /* expand [?* */
bin/ksh/tree.h
120
#define DOPAT BIT(2) /* quote *?[ */
bin/ksh/tree.h
121
#define DOTILDE BIT(3) /* normal ~ expansion (first char) */
bin/ksh/tree.h
122
#define DONTRUNCOMMAND BIT(4) /* do not run $(command) things */
bin/ksh/tree.h
123
#define DOASNTILDE BIT(5) /* assignment ~ expansion (after =, :) */
bin/ksh/tree.h
124
#define DOBRACE_ BIT(6) /* used by expand(): do brace expansion */
bin/ksh/tree.h
125
#define DOMAGIC_ BIT(7) /* used by expand(): string contains MAGIC */
bin/ksh/tree.h
126
#define DOTEMP_ BIT(8) /* ditto : in word part of ${..[%#=?]..} */
bin/ksh/tree.h
127
#define DOVACHECK BIT(9) /* var assign check (for typeset, set, etc) */
bin/ksh/tree.h
128
#define DOMARKDIRS BIT(10) /* force markdirs behaviour */
bin/ksh/tree.h
94
#define IOEVAL BIT(4) /* expand in << */
bin/ksh/tree.h
95
#define IOSKIP BIT(5) /* <<-, skip ^\t* */
bin/ksh/tree.h
96
#define IOCLOB BIT(6) /* >|, override -o noclobber */
bin/ksh/tree.h
97
#define IORDUP BIT(7) /* x<&y (as opposed to x>&y) */
bin/ksh/tree.h
98
#define IONAMEXP BIT(8) /* name has been expanded */
crypto/dist/ipsec-tools/src/racoon/vendorid.c
257
iph1->vendorid_mask |= BIT(vid_numeric);
crypto/dist/ipsec-tools/src/racoon/vendorid.h
37
#ifndef BIT
crypto/dist/ipsec-tools/src/racoon/vendorid.h
54
#define VENDORID_GSSAPI_MASK (BIT(VENDORID_GSSAPI_LONG) | \
crypto/dist/ipsec-tools/src/racoon/vendorid.h
55
BIT(VENDORID_GSSAPI) | \
crypto/dist/ipsec-tools/src/racoon/vendorid.h
56
BIT(VENDORID_MS_NT5))
games/larn/signal.c
81
sigsetmask(sigblock(0) & ~BIT(SIGTSTP));
sys/dev/ic/igpioreg.h
65
#define IGPIO_PADCFG1_TERM_833 (__BIT(1) | BIT(0))
sys/dev/pci/if_ena.c
3303
aenq_groups = BIT(ENA_ADMIN_LINK_CHANGE) | BIT(ENA_ADMIN_KEEP_ALIVE);
sys/dev/pci/if_ena.c
3312
*wd_active = !!(aenq_groups & BIT(ENA_ADMIN_KEEP_ALIVE));
sys/dev/pci/if_enavar.h
114
#define ENA_MMIO_DISABLE_REG_READ BIT(0)
sys/dev/pci/voodoofb.c
1023
blitcmd |= BIT(14);
sys/dev/pci/voodoofb.c
1028
blitcmd |= BIT(15);
sys/dev/pci/voodoofbreg.h
204
#define AUTOINC_DSTX BIT(10)
sys/dev/pci/voodoofbreg.h
205
#define AUTOINC_DSTY BIT(11)
sys/dev/pci/voodoofbreg.h
209
#define SST_2D_GO BIT(8)
sys/dev/pci/voodoofbreg.h
212
#define STATUS_RETRACE BIT(6)
sys/dev/pci/voodoofbreg.h
213
#define STATUS_BUSY BIT(9)
sys/dev/pci/voodoofbreg.h
214
#define MISCINIT1_CLUT_INV BIT(0)
sys/dev/pci/voodoofbreg.h
215
#define MISCINIT1_2DBLOCK_DIS BIT(15)
sys/dev/pci/voodoofbreg.h
216
#define DRAMINIT0_SGRAM_NUM BIT(26)
sys/dev/pci/voodoofbreg.h
217
#define DRAMINIT0_SGRAM_TYPE BIT(27)
sys/dev/pci/voodoofbreg.h
218
#define DRAMINIT1_MEM_SDRAM BIT(30)
sys/dev/pci/voodoofbreg.h
219
#define VGAINIT0_VGA_DISABLE BIT(0)
sys/dev/pci/voodoofbreg.h
220
#define VGAINIT0_EXT_TIMING BIT(1)
sys/dev/pci/voodoofbreg.h
221
#define VGAINIT0_8BIT_DAC BIT(2)
sys/dev/pci/voodoofbreg.h
222
#define VGAINIT0_EXT_ENABLE BIT(6)
sys/dev/pci/voodoofbreg.h
223
#define VGAINIT0_WAKEUP_3C3 BIT(8)
sys/dev/pci/voodoofbreg.h
224
#define VGAINIT0_LEGACY_DISABLE BIT(9)
sys/dev/pci/voodoofbreg.h
225
#define VGAINIT0_ALT_READBACK BIT(10)
sys/dev/pci/voodoofbreg.h
226
#define VGAINIT0_FAST_BLINK BIT(11)
sys/dev/pci/voodoofbreg.h
227
#define VGAINIT0_EXTSHIFTOUT BIT(12)
sys/dev/pci/voodoofbreg.h
228
#define VGAINIT0_DECODE_3C6 BIT(13)
sys/dev/pci/voodoofbreg.h
229
#define VGAINIT0_SGRAM_HBLANK_DISABLE BIT(22)
sys/dev/pci/voodoofbreg.h
231
#define VIDCFG_VIDPROC_ENABLE BIT(0)
sys/dev/pci/voodoofbreg.h
232
#define VIDCFG_CURS_X11 BIT(1)
sys/dev/pci/voodoofbreg.h
233
#define VIDCFG_HALF_MODE BIT(4)
sys/dev/pci/voodoofbreg.h
234
#define VIDCFG_CHROMA_KEY BIT(5)
sys/dev/pci/voodoofbreg.h
235
#define VIDCFG_CHROMA_KEY_INVERSION BIT(6)
sys/dev/pci/voodoofbreg.h
236
#define VIDCFG_DESK_ENABLE BIT(7)
sys/dev/pci/voodoofbreg.h
237
#define VIDCFG_OVL_ENABLE BIT(8)
sys/dev/pci/voodoofbreg.h
238
#define VIDCFG_OVL_NOT_VIDEO_IN BIT(9)
sys/dev/pci/voodoofbreg.h
239
#define VIDCFG_CLUT_BYPASS BIT(10)
sys/dev/pci/voodoofbreg.h
240
#define VIDCFG_OVL_CLUT_BYPASS BIT(11)
sys/dev/pci/voodoofbreg.h
241
#define VIDCFG_OVL_HSCALE BIT(14)
sys/dev/pci/voodoofbreg.h
242
#define VIDCFG_OVL_VSCALE BIT(15)
sys/dev/pci/voodoofbreg.h
255
#define VIDCFG_2X BIT(26)
sys/dev/pci/voodoofbreg.h
256
#define VIDCFG_HWCURSOR_ENABLE BIT(27)
sys/dev/pci/voodoofbreg.h
258
#define DACMODE_2X BIT(0)
usr.bin/lastcomm/lastcomm.c
187
BIT(ASU, 'S');
usr.bin/lastcomm/lastcomm.c
188
BIT(AFORK, 'F');
usr.bin/lastcomm/lastcomm.c
189
BIT(ACOMPAT, 'C');
usr.bin/lastcomm/lastcomm.c
190
BIT(ACORE, 'D');
usr.bin/lastcomm/lastcomm.c
191
BIT(AXSIG, 'X');
usr.bin/systat/convtbl.c
74
[SC_BIT] = { BIT, BITS, "b", "bit" },
usr.bin/systat/convtbl.c
75
[SC_KILOBIT] = { BIT, KILOBIT, "Kb", "kbit" },
usr.bin/systat/convtbl.c
76
[SC_MEGABIT] = { BIT, MEGABIT, "Mb", "mbit" },
usr.bin/systat/convtbl.c
77
[SC_GIGABIT] = { BIT, GIGABIT, "Gb", "gbit" },
usr.bin/systat/convtbl.c
78
[SC_TERABIT] = { BIT, TERABIT, "Tb", "tbit" },