Symbol: here
bin/sh/parser.c
1633
heredoc->here = np;
bin/sh/parser.c
775
struct HereDoc *here = heredoc;
bin/sh/parser.c
781
if (here->striptabs) {
bin/sh/parser.c
802
here->eofmark = wordtext;
bin/sh/parser.c
803
here->next = NULL;
bin/sh/parser.c
805
heredoclist = here;
bin/sh/parser.c
809
p->next = here;
bin/sh/parser.c
84
union node *here; /* redirection node */
bin/sh/parser.c
966
struct HereDoc *here;
bin/sh/parser.c
976
here = heredoclist;
bin/sh/parser.c
977
heredoclist = here->next;
bin/sh/parser.c
983
l = slurp_heredoc(here->eofmark, here->striptabs,
bin/sh/parser.c
984
here->here->nhere.type == NHERE);
bin/sh/parser.c
986
here->here->nhere.doc = n = makeword(line);
bin/sh/parser.c
988
if (here->here->nhere.type == NHERE)
common/dist/zlib/deflate.c
1602
Bytef *back = s->window + (int)match, *here = s->window + start;
common/dist/zlib/deflate.c
1608
here++;
common/dist/zlib/deflate.c
1611
if (zmemcmp(back, here, len) != EQUAL) {
common/dist/zlib/deflate.c
1615
fprintf(stderr, "(%02x %02x)", *back++, *here++);
common/dist/zlib/infback.c
203
code here; /* current decoding table entry */
common/dist/zlib/infback.c
340
here = state->lencode[BITS(state->lenbits)];
common/dist/zlib/infback.c
341
if ((unsigned)(here.bits) <= bits) break;
common/dist/zlib/infback.c
344
if (here.val < 16) {
common/dist/zlib/infback.c
345
DROPBITS(here.bits);
common/dist/zlib/infback.c
346
state->lens[state->have++] = here.val;
common/dist/zlib/infback.c
349
if (here.val == 16) {
common/dist/zlib/infback.c
350
NEEDBITS(here.bits + 2);
common/dist/zlib/infback.c
351
DROPBITS(here.bits);
common/dist/zlib/infback.c
362
else if (here.val == 17) {
common/dist/zlib/infback.c
363
NEEDBITS(here.bits + 3);
common/dist/zlib/infback.c
364
DROPBITS(here.bits);
common/dist/zlib/infback.c
370
NEEDBITS(here.bits + 7);
common/dist/zlib/infback.c
371
DROPBITS(here.bits);
common/dist/zlib/infback.c
437
here = state->lencode[BITS(state->lenbits)];
common/dist/zlib/infback.c
438
if ((unsigned)(here.bits) <= bits) break;
common/dist/zlib/infback.c
441
if (here.op && (here.op & 0xf0) == 0) {
common/dist/zlib/infback.c
442
last = here;
common/dist/zlib/infback.c
444
here = state->lencode[last.val +
common/dist/zlib/infback.c
446
if ((unsigned)(last.bits + here.bits) <= bits) break;
common/dist/zlib/infback.c
451
DROPBITS(here.bits);
common/dist/zlib/infback.c
452
state->length = (unsigned)here.val;
common/dist/zlib/infback.c
455
if (here.op == 0) {
common/dist/zlib/infback.c
456
Tracevv((stderr, here.val >= 0x20 && here.val < 0x7f ?
common/dist/zlib/infback.c
458
"inflate: literal 0x%02x\n", here.val));
common/dist/zlib/infback.c
467
if (here.op & 32) {
common/dist/zlib/infback.c
474
if (here.op & 64) {
common/dist/zlib/infback.c
481
state->extra = (unsigned)(here.op) & 15;
common/dist/zlib/infback.c
491
here = state->distcode[BITS(state->distbits)];
common/dist/zlib/infback.c
492
if ((unsigned)(here.bits) <= bits) break;
common/dist/zlib/infback.c
495
if ((here.op & 0xf0) == 0) {
common/dist/zlib/infback.c
496
last = here;
common/dist/zlib/infback.c
498
here = state->distcode[last.val +
common/dist/zlib/infback.c
500
if ((unsigned)(last.bits + here.bits) <= bits) break;
common/dist/zlib/infback.c
505
DROPBITS(here.bits);
common/dist/zlib/infback.c
506
if (here.op & 64) {
common/dist/zlib/infback.c
511
state->offset = (unsigned)here.val;
common/dist/zlib/infback.c
514
state->extra = (unsigned)(here.op) & 15;
common/dist/zlib/inffast.c
109
here = lcode + (hold & lmask);
common/dist/zlib/inffast.c
111
op = (unsigned)(here->bits);
common/dist/zlib/inffast.c
114
op = (unsigned)(here->op);
common/dist/zlib/inffast.c
116
Tracevv((stderr, here->val >= 0x20 && here->val < 0x7f ?
common/dist/zlib/inffast.c
118
"inflate: literal 0x%02x\n", here->val));
common/dist/zlib/inffast.c
119
*out++ = (unsigned char)(here->val);
common/dist/zlib/inffast.c
122
len = (unsigned)(here->val);
common/dist/zlib/inffast.c
140
here = dcode + (hold & dmask);
common/dist/zlib/inffast.c
142
op = (unsigned)(here->bits);
common/dist/zlib/inffast.c
145
op = (unsigned)(here->op);
common/dist/zlib/inffast.c
147
dist = (unsigned)(here->val);
common/dist/zlib/inffast.c
267
here = dcode + here->val + (hold & ((1U << op) - 1));
common/dist/zlib/inffast.c
277
here = lcode + here->val + (hold & ((1U << op) - 1));
common/dist/zlib/inffast.c
72
code const *here; /* retrieved table entry */
common/dist/zlib/inflate.c
1001
DROPBITS(here.bits);
common/dist/zlib/inflate.c
1002
state->back += here.bits;
common/dist/zlib/inflate.c
1003
if (here.op & 64) {
common/dist/zlib/inflate.c
1008
state->offset = (unsigned)here.val;
common/dist/zlib/inflate.c
1009
state->extra = (unsigned)(here.op) & 15;
common/dist/zlib/inflate.c
486
code here; /* current decoding table entry */
common/dist/zlib/inflate.c
836
here = state->lencode[BITS(state->lenbits)];
common/dist/zlib/inflate.c
837
if ((unsigned)(here.bits) <= bits) break;
common/dist/zlib/inflate.c
840
if (here.val < 16) {
common/dist/zlib/inflate.c
841
DROPBITS(here.bits);
common/dist/zlib/inflate.c
842
state->lens[state->have++] = here.val;
common/dist/zlib/inflate.c
845
if (here.val == 16) {
common/dist/zlib/inflate.c
846
NEEDBITS(here.bits + 2);
common/dist/zlib/inflate.c
847
DROPBITS(here.bits);
common/dist/zlib/inflate.c
858
else if (here.val == 17) {
common/dist/zlib/inflate.c
859
NEEDBITS(here.bits + 3);
common/dist/zlib/inflate.c
860
DROPBITS(here.bits);
common/dist/zlib/inflate.c
866
NEEDBITS(here.bits + 7);
common/dist/zlib/inflate.c
867
DROPBITS(here.bits);
common/dist/zlib/inflate.c
934
here = state->lencode[BITS(state->lenbits)];
common/dist/zlib/inflate.c
935
if ((unsigned)(here.bits) <= bits) break;
common/dist/zlib/inflate.c
938
if (here.op && (here.op & 0xf0) == 0) {
common/dist/zlib/inflate.c
939
last = here;
common/dist/zlib/inflate.c
941
here = state->lencode[last.val +
common/dist/zlib/inflate.c
943
if ((unsigned)(last.bits + here.bits) <= bits) break;
common/dist/zlib/inflate.c
949
DROPBITS(here.bits);
common/dist/zlib/inflate.c
950
state->back += here.bits;
common/dist/zlib/inflate.c
951
state->length = (unsigned)here.val;
common/dist/zlib/inflate.c
952
if ((int)(here.op) == 0) {
common/dist/zlib/inflate.c
953
Tracevv((stderr, here.val >= 0x20 && here.val < 0x7f ?
common/dist/zlib/inflate.c
955
"inflate: literal 0x%02x\n", here.val));
common/dist/zlib/inflate.c
959
if (here.op & 32) {
common/dist/zlib/inflate.c
965
if (here.op & 64) {
common/dist/zlib/inflate.c
970
state->extra = (unsigned)(here.op) & 15;
common/dist/zlib/inflate.c
986
here = state->distcode[BITS(state->distbits)];
common/dist/zlib/inflate.c
987
if ((unsigned)(here.bits) <= bits) break;
common/dist/zlib/inflate.c
990
if ((here.op & 0xf0) == 0) {
common/dist/zlib/inflate.c
991
last = here;
common/dist/zlib/inflate.c
993
here = state->distcode[last.val +
common/dist/zlib/inflate.c
995
if ((unsigned)(last.bits + here.bits) <= bits) break;
common/dist/zlib/inftrees.c
129
here.op = (unsigned char)64; /* invalid code marker */
common/dist/zlib/inftrees.c
130
here.bits = (unsigned char)1;
common/dist/zlib/inftrees.c
131
here.val = (unsigned short)0;
common/dist/zlib/inftrees.c
132
*(*table)++ = here; /* make a table to force an error */
common/dist/zlib/inftrees.c
133
*(*table)++ = here;
common/dist/zlib/inftrees.c
225
here.bits = (unsigned char)(len - drop);
common/dist/zlib/inftrees.c
227
here.op = (unsigned char)0;
common/dist/zlib/inftrees.c
228
here.val = work[sym];
common/dist/zlib/inftrees.c
231
here.op = (unsigned char)(extra[work[sym] - match]);
common/dist/zlib/inftrees.c
232
here.val = base[work[sym] - match];
common/dist/zlib/inftrees.c
235
here.op = (unsigned char)(32 + 64); /* end of block */
common/dist/zlib/inftrees.c
236
here.val = 0;
common/dist/zlib/inftrees.c
245
next[(huff >> drop) + fill] = here;
common/dist/zlib/inftrees.c
303
here.op = (unsigned char)64; /* invalid code marker */
common/dist/zlib/inftrees.c
304
here.bits = (unsigned char)(len - drop);
common/dist/zlib/inftrees.c
305
here.val = (unsigned short)0;
common/dist/zlib/inftrees.c
306
next[huff] = here;
common/dist/zlib/inftrees.c
64
code here; /* table entry for duplication */
games/adventure/extern.h
71
int here(int);
games/adventure/main.c
201
if (limit <= 30 && here(batter) && prop[batter] == 0
games/adventure/main.c
202
&& here(lamp)) {
games/adventure/main.c
223
if (lmwarn || !here(lamp))
games/adventure/main.c
326
if (here(clam))
games/adventure/main.c
328
if (here(oyster))
games/adventure/main.c
334
if (obj != 0 && here(chain))
games/adventure/main.c
336
if (here(chain))
games/adventure/main.c
354
if (!here(food))
games/adventure/main.c
414
if (here(eggs))
games/adventure/main.c
427
if (here(magazine))
games/adventure/main.c
429
if (here(tablet))
games/adventure/main.c
431
if (here(message))
games/adventure/main.c
510
l9070: if (!here(lamp))
games/adventure/main.c
522
l9080: if (!here(lamp))
games/adventure/main.c
602
|| !here(bottle)))
games/adventure/main.c
606
if (spk == 110 || liq() != water || !here(bottle))
games/adventure/main.c
669
if (here(rod2))
games/adventure/main.c
722
if (fixed[k] != loc && !here(k))
games/adventure/main.c
743
l5120: if ((liq() == k && here(bottle)) || k == liqloc(loc))
games/adventure/main.c
754
l5140: if (obj != rod || !here(rod2))
games/adventure/subr.c
137
if ((cond[loc] % 2) == 0 && (prop[lamp] == 0 || !here(lamp)))
games/adventure/subr.c
228
l6020: if (here(j))
games/adventure/subr.c
232
&& here(lamp) && prop[lamp] == 1)
games/adventure/subr.c
519
if (prop[grate] == 0 && !here(keys))
games/adventure/subr.c
523
if (here(bird) && toting(rod) && obj == bird)
games/adventure/subr.c
527
if (here(snake) && !here(bird))
games/adventure/subr.c
587
if (here(bottle) && liq() == obj) {
games/adventure/subr.c
651
if (obj == bird && here(snake)) {
games/adventure/subr.c
659
if (obj == coins && here(vend)) { /* 9024 */
games/adventure/subr.c
728
if (spk != 31 || !here(keys))
games/adventure/subr.c
787
if (here(snake))
games/adventure/subr.c
793
if (here(bear) && prop[bear] == 0)
games/adventure/subr.c
798
if (here(bird) && verb != throw)
games/adventure/subr.c
800
if (here(clam) || here(oyster))
games/adventure/subr.c
875
if (obj == food && here(bear)) {
games/adventure/subr.c
906
if (here(bear) && prop[bear] == 0) {
games/adventure/subr.c
932
if (obj != snake || closed || !here(bird))
games/adventure/subr.c
941
if (!here(food))
games/adventure/subr.c
952
if (!here(food))
games/adventure/subr.c
982
if (obj == 0 && !here(bottle))
games/battlestar/room.c
100
right = here.south;
games/battlestar/room.c
101
ahead = here.east;
games/battlestar/room.c
102
back = here.west;
games/battlestar/room.c
106
left = here.south;
games/battlestar/room.c
107
right = here.north;
games/battlestar/room.c
108
ahead = here.west;
games/battlestar/room.c
109
back = here.east;
games/battlestar/room.c
80
whichway(struct room here)
games/battlestar/room.c
85
left = here.west;
games/battlestar/room.c
86
right = here.east;
games/battlestar/room.c
87
ahead = here.north;
games/battlestar/room.c
88
back = here.south;
games/battlestar/room.c
92
left = here.east;
games/battlestar/room.c
93
right = here.west;
games/battlestar/room.c
94
ahead = here.south;
games/battlestar/room.c
95
back = here.north;
games/battlestar/room.c
99
left = here.north;
lib/libc/regex/engine.c
1046
onestate here; /* note, macros know this name */
lib/libc/regex/engine.c
1052
for (pc = start, INIT(here, pc); pc != stop; pc++, INC(here)) {
lib/libc/regex/engine.c
1119
INIT(here, pc);
lib/libc/regex/engine.c
1139
if (ISSTATEIN(aft, here)) {
lib/libc/regex/regexec.c
135
#define FWD(dst, src, n) ((dst) |= ((unsigned long)(src)&(here)) << (n))
lib/libc/regex/regexec.c
136
#define BACK(dst, src, n) ((dst) |= ((unsigned long)(src)&(here)) >> (n))
lib/libc/regex/regexec.c
137
#define ISSETBACK(v, n) (((v) & ((unsigned long)here >> (n))) != 0)
lib/libc/regex/regexec.c
189
#define FWD(dst, src, n) ((dst)[here+(n)] |= (src)[here])
lib/libc/regex/regexec.c
190
#define BACK(dst, src, n) ((dst)[here-(n)] |= (src)[here])
lib/libc/regex/regexec.c
191
#define ISSETBACK(v, n) ((v)[here - (n)])
lib/libcurses/PSD.doc/appen.C
97
Nothing here claims to be optimal,
sbin/efi/devpath3.c
626
From: RFC3232 says everything is now online, found here:
sys/dev/raidframe/rf_reconutil.c
260
XXXX IF you use this, you really want to fix the locking in here.
tests/lib/libc/gen/t_dir.c
108
seekdir(dp, here);
tests/lib/libc/gen/t_dir.c
116
seekdir(dp, here);
tests/lib/libc/gen/t_dir.c
117
here = telldir(dp);
tests/lib/libc/gen/t_dir.c
125
seekdir(dp, here);
tests/lib/libc/gen/t_dir.c
56
long here;
tests/lib/libc/gen/t_dir.c
90
here = telldir(dp);
tests/lib/libc/gen/t_dir.c
91
ATF_REQUIRE_MSG(here != -1, "telldir failed: %s", strerror(errno));
usr.bin/make/dir.c
1302
Dir_FindHereOrAbove(const char *here, const char *needle)
usr.bin/make/dir.c
1308
dirbase = bmake_strdup(here);