Symbol: and
lib/libpcap/grammar.y
140
| expr and term { gen_and($1.b, $3.b); $$ = $3; }
lib/libpcap/grammar.y
141
| expr and id { gen_and($1.b, $3.b); $$ = $3; }
lib/libpcap/grammar.y
145
and: AND { $$ = $<blk>0; }
lib/libpcap/grammar.y
197
| qid and id { gen_and($1.b, $3.b); $$ = $3; }
lib/libpcap/grammar.y
98
%type <blk> and or paren not null prog
sys/arch/arm/include/frame.h
181
and r0, r0, #(PSR_MODE) /* Returning to USR mode? */ ;\
sys/arch/riscv64/riscv64/db_instruction.h
2211
DECLARE_INSN(and, MATCH_AND, MASK_AND)
sys/arch/sh/include/locore.h
101
and r1, r3 ;\
sys/arch/sh/include/locore.h
174
and Rn, Rm ;\
sys/arch/sh/include/locore.h
193
and Rn, Rm ;\
sys/arch/sh/include/locore.h
63
and r3, r0 ;\
sys/dev/pci/drm/amd/amdgpu/amdgpu.h
1512
#define WREG32_AND(reg, and) WREG32_P(reg, 0, and)
sys/dev/pci/drm/radeon/radeon.h
2587
#define WREG32_AND(reg, and) WREG32_P(reg, 0, and)
usr.bin/awk/awkgram.y
105
and:
usr.bin/awk/awkgram.y
106
AND | and NL
usr.bin/awk/awkgram.y
206
| ppattern and ppattern %prec AND
usr.bin/awk/awkgram.y
228
| pattern and pattern %prec AND
usr.bin/awk/awkgram.y
73
%type <i> pst opt_pst lbrace rbrace rparen comma nl opt_nl and bor
usr.bin/tmux/format.c
4459
format_bool_op_n(struct format_expand_state *es, const char *fmt, int and)
usr.bin/tmux/format.c
4465
result = and ? 1 : 0;
usr.bin/tmux/format.c
4468
while (and ? result : !result) {
usr.bin/tmux/format.c
4478
and ? "&&" : "||", expanded);
usr.bin/tmux/format.c
4480
if (and)
usr.sbin/bgpctl/parser.c
1505
push_numop(struct parse_result *r, int type, uint8_t op, int and, long long val)
usr.sbin/bgpctl/parser.c
1515
if (and)
usr.sbin/bgpd/parse.y
5802
component_numop(enum comp_ops op, int and, int len)
usr.sbin/bgpd/parse.y
5841
if (and)
usr.sbin/bgpd/parse.y
5848
push_numop(enum comp_ops op, int and, long long val)
usr.sbin/bgpd/parse.y
5882
comp[complen++] = component_numop(op, and, len);