Symbol: here
games/adventure/extern.h
77
int here(int);
games/adventure/main.c
253
if (limit <= 30 && here(batter) && prop[batter] == 0
games/adventure/main.c
254
&& here(lamp)) {
games/adventure/main.c
275
if (lmwarn || !here(lamp))
games/adventure/main.c
363
if (here(clam))
games/adventure/main.c
365
if (here(oyster))
games/adventure/main.c
371
if (obj != 0 && here(chain))
games/adventure/main.c
373
if (here(chain))
games/adventure/main.c
385
if (!here(food))
games/adventure/main.c
440
if (here(eggs))
games/adventure/main.c
453
if (here(magzin))
games/adventure/main.c
455
if (here(tablet))
games/adventure/main.c
457
if (here(messag))
games/adventure/main.c
516
l9070: if (!here(lamp))
games/adventure/main.c
528
l9080: if (!here(lamp))
games/adventure/main.c
596
|| !here(bottle)))
games/adventure/main.c
600
if (spk == 110 || liq() != water || !here(bottle))
games/adventure/main.c
649
if (here(rod2))
games/adventure/main.c
694
if (fixed[k] != loc && !here(k))
games/adventure/main.c
715
l5120: if ((liq() == k && here(bottle)) || k == liqloc(loc))
games/adventure/main.c
726
l5140: if (obj != rod || !here(rod2))
games/adventure/subr.c
120
if ((cond[loc] % 2) == 0 && (prop[lamp] == 0 || !here(lamp)))
games/adventure/subr.c
210
l6020: if (here(j))
games/adventure/subr.c
214
&& here(lamp) && prop[lamp] == 1)
games/adventure/subr.c
498
if (prop[grate] == 0 && !here(keys))
games/adventure/subr.c
502
if (here(bird) && toting(rod) && obj == bird)
games/adventure/subr.c
506
if (here(snake) && !here(bird))
games/adventure/subr.c
567
if (here(bottle) && liq() == obj) {
games/adventure/subr.c
630
if (obj == bird && here(snake)) {
games/adventure/subr.c
638
if (obj == coins && here(vend)) { /* 9024 */
games/adventure/subr.c
707
if (spk != 31||!here(keys))
games/adventure/subr.c
767
if (here(snake))
games/adventure/subr.c
773
if (here(bear) && prop[bear] == 0)
games/adventure/subr.c
778
if (here(bird) && verb != throw)
games/adventure/subr.c
780
if (here(clam) || here(oyster))
games/adventure/subr.c
856
if (obj == food && here(bear)) {
games/adventure/subr.c
887
if (here(bear) && prop[bear] == 0) {
games/adventure/subr.c
913
if (obj != snake || closed || !here(bird))
games/adventure/subr.c
922
if (!here(food))
games/adventure/subr.c
933
if (!here(food))
games/adventure/subr.c
963
if (obj == 0 && !here(bottle))
games/battlestar/room.c
100
left = here.south;
games/battlestar/room.c
101
right = here.north;
games/battlestar/room.c
102
ahead = here.west;
games/battlestar/room.c
103
back = here.east;
games/battlestar/room.c
74
whichway(struct room here)
games/battlestar/room.c
79
left = here.west;
games/battlestar/room.c
80
right = here.east;
games/battlestar/room.c
81
ahead = here.north;
games/battlestar/room.c
82
back = here.south;
games/battlestar/room.c
86
left = here.east;
games/battlestar/room.c
87
right = here.west;
games/battlestar/room.c
88
ahead = here.south;
games/battlestar/room.c
89
back = here.north;
games/battlestar/room.c
93
left = here.north;
games/battlestar/room.c
94
right = here.south;
games/battlestar/room.c
95
ahead = here.east;
games/battlestar/room.c
96
back = here.west;
lib/libc/regex/engine.c
858
onestate here; /* note, macros know this name */
lib/libc/regex/engine.c
862
for (pc = start, INIT(here, pc); pc != stop; pc++, INC(here)) {
lib/libc/regex/engine.c
913
INIT(here, pc);
lib/libc/regex/engine.c
933
if (ISSTATEIN(aft, here)) {
lib/libc/regex/regexec.c
124
#define FWD(dst, src, n) ((dst)[here+(n)] |= (src)[here])
lib/libc/regex/regexec.c
125
#define BACK(dst, src, n) ((dst)[here-(n)] |= (src)[here])
lib/libc/regex/regexec.c
126
#define ISSETBACK(v, n) ((v)[here - (n)])
lib/libc/regex/regexec.c
74
#define FWD(dst, src, n) ((dst) |= ((unsigned long)(src)&(here)) << (n))
lib/libc/regex/regexec.c
75
#define BACK(dst, src, n) ((dst) |= ((unsigned long)(src)&(here)) >> (n))
lib/libc/regex/regexec.c
76
#define ISSETBACK(v, n) (((v) & ((unsigned long)here >> (n))) != 0)
lib/libz/deflate.c
1596
Bytef *back = s->window + (int)match, *here = s->window + start;
lib/libz/deflate.c
1602
here++;
lib/libz/deflate.c
1605
if (zmemcmp(back, here, len) != EQUAL) {
lib/libz/deflate.c
1609
fprintf(stderr, "(%02x %02x)", *back++, *here++);
lib/libz/infback.c
201
code here; /* current decoding table entry */
lib/libz/infback.c
354
here = state->lencode[BITS(state->lenbits)];
lib/libz/infback.c
355
if ((unsigned)(here.bits) <= bits) break;
lib/libz/infback.c
358
if (here.val < 16) {
lib/libz/infback.c
359
DROPBITS(here.bits);
lib/libz/infback.c
360
state->lens[state->have++] = here.val;
lib/libz/infback.c
363
if (here.val == 16) {
lib/libz/infback.c
364
NEEDBITS(here.bits + 2);
lib/libz/infback.c
365
DROPBITS(here.bits);
lib/libz/infback.c
380
else if (here.val == 17) {
lib/libz/infback.c
381
NEEDBITS(here.bits + 3);
lib/libz/infback.c
382
DROPBITS(here.bits);
lib/libz/infback.c
388
NEEDBITS(here.bits + 7);
lib/libz/infback.c
389
DROPBITS(here.bits);
lib/libz/infback.c
473
here = state->lencode[BITS(state->lenbits)];
lib/libz/infback.c
474
if ((unsigned)(here.bits) <= bits) break;
lib/libz/infback.c
477
if (here.op && (here.op & 0xf0) == 0) {
lib/libz/infback.c
478
last = here;
lib/libz/infback.c
480
here = state->lencode[last.val +
lib/libz/infback.c
482
if ((unsigned)(last.bits + here.bits) <= bits) break;
lib/libz/infback.c
487
DROPBITS(here.bits);
lib/libz/infback.c
488
state->length = (unsigned)here.val;
lib/libz/infback.c
491
if (here.op == 0) {
lib/libz/infback.c
492
Tracevv((stderr, here.val >= 0x20 && here.val < 0x7f ?
lib/libz/infback.c
494
"inflate: literal 0x%02x\n", here.val));
lib/libz/infback.c
503
if (here.op & 32) {
lib/libz/infback.c
510
if (here.op & 64) {
lib/libz/infback.c
521
state->extra = (unsigned)(here.op) & 15;
lib/libz/infback.c
531
here = state->distcode[BITS(state->distbits)];
lib/libz/infback.c
532
if ((unsigned)(here.bits) <= bits) break;
lib/libz/infback.c
535
if ((here.op & 0xf0) == 0) {
lib/libz/infback.c
536
last = here;
lib/libz/infback.c
538
here = state->distcode[last.val +
lib/libz/infback.c
540
if ((unsigned)(last.bits + here.bits) <= bits) break;
lib/libz/infback.c
545
DROPBITS(here.bits);
lib/libz/infback.c
546
if (here.op & 64) {
lib/libz/infback.c
555
state->offset = (unsigned)here.val;
lib/libz/infback.c
558
state->extra = (unsigned)(here.op) & 15;
lib/libz/inffast.c
107
here = lcode + (hold & lmask);
lib/libz/inffast.c
109
op = (unsigned)(here->bits);
lib/libz/inffast.c
112
op = (unsigned)(here->op);
lib/libz/inffast.c
114
Tracevv((stderr, here->val >= 0x20 && here->val < 0x7f ?
lib/libz/inffast.c
116
"inflate: literal 0x%02x\n", here->val));
lib/libz/inffast.c
117
*out++ = (unsigned char)(here->val);
lib/libz/inffast.c
120
len = (unsigned)(here->val);
lib/libz/inffast.c
138
here = dcode + (hold & dmask);
lib/libz/inffast.c
140
op = (unsigned)(here->bits);
lib/libz/inffast.c
143
op = (unsigned)(here->op);
lib/libz/inffast.c
145
dist = (unsigned)(here->val);
lib/libz/inffast.c
269
here = dcode + here->val + (hold & ((1U << op) - 1));
lib/libz/inffast.c
283
here = lcode + here->val + (hold & ((1U << op) - 1));
lib/libz/inffast.c
70
code const *here; /* retrieved table entry */
lib/libz/inflate.c
1002
DROPBITS(here.bits);
lib/libz/inflate.c
1003
state->back += here.bits;
lib/libz/inflate.c
1004
state->length = (unsigned)here.val;
lib/libz/inflate.c
1005
if ((int)(here.op) == 0) {
lib/libz/inflate.c
1006
Tracevv((stderr, here.val >= 0x20 && here.val < 0x7f ?
lib/libz/inflate.c
1008
"inflate: literal 0x%02x\n", here.val));
lib/libz/inflate.c
1012
if (here.op & 32) {
lib/libz/inflate.c
1018
if (here.op & 64) {
lib/libz/inflate.c
1027
state->extra = (unsigned)(here.op) & 15;
lib/libz/inflate.c
1043
here = state->distcode[BITS(state->distbits)];
lib/libz/inflate.c
1044
if ((unsigned)(here.bits) <= bits) break;
lib/libz/inflate.c
1047
if ((here.op & 0xf0) == 0) {
lib/libz/inflate.c
1048
last = here;
lib/libz/inflate.c
1050
here = state->distcode[last.val +
lib/libz/inflate.c
1052
if ((unsigned)(last.bits + here.bits) <= bits) break;
lib/libz/inflate.c
1058
DROPBITS(here.bits);
lib/libz/inflate.c
1059
state->back += here.bits;
lib/libz/inflate.c
1060
if (here.op & 64) {
lib/libz/inflate.c
1069
state->offset = (unsigned)here.val;
lib/libz/inflate.c
1070
state->extra = (unsigned)(here.op) & 15;
lib/libz/inflate.c
484
code here; /* current decoding table entry */
lib/libz/inflate.c
867
here = state->lencode[BITS(state->lenbits)];
lib/libz/inflate.c
868
if ((unsigned)(here.bits) <= bits) break;
lib/libz/inflate.c
871
if (here.val < 16) {
lib/libz/inflate.c
872
DROPBITS(here.bits);
lib/libz/inflate.c
873
state->lens[state->have++] = here.val;
lib/libz/inflate.c
876
if (here.val == 16) {
lib/libz/inflate.c
877
NEEDBITS(here.bits + 2);
lib/libz/inflate.c
878
DROPBITS(here.bits);
lib/libz/inflate.c
893
else if (here.val == 17) {
lib/libz/inflate.c
894
NEEDBITS(here.bits + 3);
lib/libz/inflate.c
895
DROPBITS(here.bits);
lib/libz/inflate.c
901
NEEDBITS(here.bits + 7);
lib/libz/inflate.c
902
DROPBITS(here.bits);
lib/libz/inflate.c
987
here = state->lencode[BITS(state->lenbits)];
lib/libz/inflate.c
988
if ((unsigned)(here.bits) <= bits) break;
lib/libz/inflate.c
991
if (here.op && (here.op & 0xf0) == 0) {
lib/libz/inflate.c
992
last = here;
lib/libz/inflate.c
994
here = state->lencode[last.val +
lib/libz/inflate.c
996
if ((unsigned)(last.bits + here.bits) <= bits) break;
lib/libz/inftrees.c
125
here.op = (unsigned char)64; /* invalid code marker */
lib/libz/inftrees.c
126
here.bits = (unsigned char)1;
lib/libz/inftrees.c
127
here.val = (unsigned short)0;
lib/libz/inftrees.c
128
*(*table)++ = here; /* make a table to force an error */
lib/libz/inftrees.c
129
*(*table)++ = here;
lib/libz/inftrees.c
221
here.bits = (unsigned char)(len - drop);
lib/libz/inftrees.c
223
here.op = (unsigned char)0;
lib/libz/inftrees.c
224
here.val = work[sym];
lib/libz/inftrees.c
227
here.op = (unsigned char)(extra[work[sym] - match]);
lib/libz/inftrees.c
228
here.val = base[work[sym] - match];
lib/libz/inftrees.c
231
here.op = (unsigned char)(32 + 64); /* end of block */
lib/libz/inftrees.c
232
here.val = 0;
lib/libz/inftrees.c
241
next[(huff >> drop) + fill] = here;
lib/libz/inftrees.c
299
here.op = (unsigned char)64; /* invalid code marker */
lib/libz/inftrees.c
300
here.bits = (unsigned char)(len - drop);
lib/libz/inftrees.c
301
here.val = (unsigned short)0;
lib/libz/inftrees.c
302
next[huff] = here;
lib/libz/inftrees.c
60
code here; /* table entry for duplication */
libexec/ld.so/loader.c
1059
Elf_Addr *here = where;
libexec/ld.so/loader.c
1062
*here += loff;
libexec/ld.so/loader.c
1065
here++;
sbin/unwind/libunbound/util/data/msgparse.c
242
pkt_rrsig_covered(sldns_buffer* pkt, uint8_t* here, uint16_t* type)
sbin/unwind/libunbound/util/data/msgparse.c
245
sldns_buffer_set_position(pkt, (size_t)(here-sldns_buffer_begin(pkt)));
sbin/unwind/libunbound/util/data/msgparse.c
261
pkt_rrsig_covered_equals(sldns_buffer* pkt, uint8_t* here, uint16_t type)
sbin/unwind/libunbound/util/data/msgparse.c
264
if(pkt_rrsig_covered(pkt, here, &t) && t == type)
sbin/unwind/libunbound/util/storage/lruhash.c
480
int here = 0;
sbin/unwind/libunbound/util/storage/lruhash.c
485
here ++;
sbin/unwind/libunbound/util/storage/lruhash.c
490
log_info("bin[%d] %d", (int)i, here);
sbin/unwind/libunbound/util/storage/lruhash.c
491
if(here > max) max = here;
sbin/unwind/libunbound/util/storage/lruhash.c
492
if(here < min) min = here;
sys/lib/libz/deflate.c
1596
Bytef *back = s->window + (int)match, *here = s->window + start;
sys/lib/libz/deflate.c
1602
here++;
sys/lib/libz/deflate.c
1605
if (zmemcmp(back, here, len) != EQUAL) {
sys/lib/libz/deflate.c
1609
fprintf(stderr, "(%02x %02x)", *back++, *here++);
sys/lib/libz/infback.c
201
code here; /* current decoding table entry */
sys/lib/libz/infback.c
354
here = state->lencode[BITS(state->lenbits)];
sys/lib/libz/infback.c
355
if ((unsigned)(here.bits) <= bits) break;
sys/lib/libz/infback.c
358
if (here.val < 16) {
sys/lib/libz/infback.c
359
DROPBITS(here.bits);
sys/lib/libz/infback.c
360
state->lens[state->have++] = here.val;
sys/lib/libz/infback.c
363
if (here.val == 16) {
sys/lib/libz/infback.c
364
NEEDBITS(here.bits + 2);
sys/lib/libz/infback.c
365
DROPBITS(here.bits);
sys/lib/libz/infback.c
380
else if (here.val == 17) {
sys/lib/libz/infback.c
381
NEEDBITS(here.bits + 3);
sys/lib/libz/infback.c
382
DROPBITS(here.bits);
sys/lib/libz/infback.c
388
NEEDBITS(here.bits + 7);
sys/lib/libz/infback.c
389
DROPBITS(here.bits);
sys/lib/libz/infback.c
473
here = state->lencode[BITS(state->lenbits)];
sys/lib/libz/infback.c
474
if ((unsigned)(here.bits) <= bits) break;
sys/lib/libz/infback.c
477
if (here.op && (here.op & 0xf0) == 0) {
sys/lib/libz/infback.c
478
last = here;
sys/lib/libz/infback.c
480
here = state->lencode[last.val +
sys/lib/libz/infback.c
482
if ((unsigned)(last.bits + here.bits) <= bits) break;
sys/lib/libz/infback.c
487
DROPBITS(here.bits);
sys/lib/libz/infback.c
488
state->length = (unsigned)here.val;
sys/lib/libz/infback.c
491
if (here.op == 0) {
sys/lib/libz/infback.c
492
Tracevv((stderr, here.val >= 0x20 && here.val < 0x7f ?
sys/lib/libz/infback.c
494
"inflate: literal 0x%02x\n", here.val));
sys/lib/libz/infback.c
503
if (here.op & 32) {
sys/lib/libz/infback.c
510
if (here.op & 64) {
sys/lib/libz/infback.c
521
state->extra = (unsigned)(here.op) & 15;
sys/lib/libz/infback.c
531
here = state->distcode[BITS(state->distbits)];
sys/lib/libz/infback.c
532
if ((unsigned)(here.bits) <= bits) break;
sys/lib/libz/infback.c
535
if ((here.op & 0xf0) == 0) {
sys/lib/libz/infback.c
536
last = here;
sys/lib/libz/infback.c
538
here = state->distcode[last.val +
sys/lib/libz/infback.c
540
if ((unsigned)(last.bits + here.bits) <= bits) break;
sys/lib/libz/infback.c
545
DROPBITS(here.bits);
sys/lib/libz/infback.c
546
if (here.op & 64) {
sys/lib/libz/infback.c
555
state->offset = (unsigned)here.val;
sys/lib/libz/infback.c
558
state->extra = (unsigned)(here.op) & 15;
sys/lib/libz/inffast.c
107
here = lcode + (hold & lmask);
sys/lib/libz/inffast.c
109
op = (unsigned)(here->bits);
sys/lib/libz/inffast.c
112
op = (unsigned)(here->op);
sys/lib/libz/inffast.c
114
Tracevv((stderr, here->val >= 0x20 && here->val < 0x7f ?
sys/lib/libz/inffast.c
116
"inflate: literal 0x%02x\n", here->val));
sys/lib/libz/inffast.c
117
*out++ = (unsigned char)(here->val);
sys/lib/libz/inffast.c
120
len = (unsigned)(here->val);
sys/lib/libz/inffast.c
138
here = dcode + (hold & dmask);
sys/lib/libz/inffast.c
140
op = (unsigned)(here->bits);
sys/lib/libz/inffast.c
143
op = (unsigned)(here->op);
sys/lib/libz/inffast.c
145
dist = (unsigned)(here->val);
sys/lib/libz/inffast.c
269
here = dcode + here->val + (hold & ((1U << op) - 1));
sys/lib/libz/inffast.c
283
here = lcode + here->val + (hold & ((1U << op) - 1));
sys/lib/libz/inffast.c
70
code const *here; /* retrieved table entry */
sys/lib/libz/inflate.c
1002
DROPBITS(here.bits);
sys/lib/libz/inflate.c
1003
state->back += here.bits;
sys/lib/libz/inflate.c
1004
state->length = (unsigned)here.val;
sys/lib/libz/inflate.c
1005
if ((int)(here.op) == 0) {
sys/lib/libz/inflate.c
1006
Tracevv((stderr, here.val >= 0x20 && here.val < 0x7f ?
sys/lib/libz/inflate.c
1008
"inflate: literal 0x%02x\n", here.val));
sys/lib/libz/inflate.c
1012
if (here.op & 32) {
sys/lib/libz/inflate.c
1018
if (here.op & 64) {
sys/lib/libz/inflate.c
1027
state->extra = (unsigned)(here.op) & 15;
sys/lib/libz/inflate.c
1043
here = state->distcode[BITS(state->distbits)];
sys/lib/libz/inflate.c
1044
if ((unsigned)(here.bits) <= bits) break;
sys/lib/libz/inflate.c
1047
if ((here.op & 0xf0) == 0) {
sys/lib/libz/inflate.c
1048
last = here;
sys/lib/libz/inflate.c
1050
here = state->distcode[last.val +
sys/lib/libz/inflate.c
1052
if ((unsigned)(last.bits + here.bits) <= bits) break;
sys/lib/libz/inflate.c
1058
DROPBITS(here.bits);
sys/lib/libz/inflate.c
1059
state->back += here.bits;
sys/lib/libz/inflate.c
1060
if (here.op & 64) {
sys/lib/libz/inflate.c
1069
state->offset = (unsigned)here.val;
sys/lib/libz/inflate.c
1070
state->extra = (unsigned)(here.op) & 15;
sys/lib/libz/inflate.c
484
code here; /* current decoding table entry */
sys/lib/libz/inflate.c
867
here = state->lencode[BITS(state->lenbits)];
sys/lib/libz/inflate.c
868
if ((unsigned)(here.bits) <= bits) break;
sys/lib/libz/inflate.c
871
if (here.val < 16) {
sys/lib/libz/inflate.c
872
DROPBITS(here.bits);
sys/lib/libz/inflate.c
873
state->lens[state->have++] = here.val;
sys/lib/libz/inflate.c
876
if (here.val == 16) {
sys/lib/libz/inflate.c
877
NEEDBITS(here.bits + 2);
sys/lib/libz/inflate.c
878
DROPBITS(here.bits);
sys/lib/libz/inflate.c
893
else if (here.val == 17) {
sys/lib/libz/inflate.c
894
NEEDBITS(here.bits + 3);
sys/lib/libz/inflate.c
895
DROPBITS(here.bits);
sys/lib/libz/inflate.c
901
NEEDBITS(here.bits + 7);
sys/lib/libz/inflate.c
902
DROPBITS(here.bits);
sys/lib/libz/inflate.c
987
here = state->lencode[BITS(state->lenbits)];
sys/lib/libz/inflate.c
988
if ((unsigned)(here.bits) <= bits) break;
sys/lib/libz/inflate.c
991
if (here.op && (here.op & 0xf0) == 0) {
sys/lib/libz/inflate.c
992
last = here;
sys/lib/libz/inflate.c
994
here = state->lencode[last.val +
sys/lib/libz/inflate.c
996
if ((unsigned)(last.bits + here.bits) <= bits) break;
sys/lib/libz/inftrees.c
125
here.op = (unsigned char)64; /* invalid code marker */
sys/lib/libz/inftrees.c
126
here.bits = (unsigned char)1;
sys/lib/libz/inftrees.c
127
here.val = (unsigned short)0;
sys/lib/libz/inftrees.c
128
*(*table)++ = here; /* make a table to force an error */
sys/lib/libz/inftrees.c
129
*(*table)++ = here;
sys/lib/libz/inftrees.c
221
here.bits = (unsigned char)(len - drop);
sys/lib/libz/inftrees.c
223
here.op = (unsigned char)0;
sys/lib/libz/inftrees.c
224
here.val = work[sym];
sys/lib/libz/inftrees.c
227
here.op = (unsigned char)(extra[work[sym] - match]);
sys/lib/libz/inftrees.c
228
here.val = base[work[sym] - match];
sys/lib/libz/inftrees.c
231
here.op = (unsigned char)(32 + 64); /* end of block */
sys/lib/libz/inftrees.c
232
here.val = 0;
sys/lib/libz/inftrees.c
241
next[(huff >> drop) + fill] = here;
sys/lib/libz/inftrees.c
299
here.op = (unsigned char)64; /* invalid code marker */
sys/lib/libz/inftrees.c
300
here.bits = (unsigned char)(len - drop);
sys/lib/libz/inftrees.c
301
here.val = (unsigned short)0;
sys/lib/libz/inftrees.c
302
next[huff] = here;
sys/lib/libz/inftrees.c
60
code here; /* table entry for duplication */
usr.sbin/unbound/util/data/msgparse.c
242
pkt_rrsig_covered(sldns_buffer* pkt, uint8_t* here, uint16_t* type)
usr.sbin/unbound/util/data/msgparse.c
245
sldns_buffer_set_position(pkt, (size_t)(here-sldns_buffer_begin(pkt)));
usr.sbin/unbound/util/data/msgparse.c
261
pkt_rrsig_covered_equals(sldns_buffer* pkt, uint8_t* here, uint16_t type)
usr.sbin/unbound/util/data/msgparse.c
264
if(pkt_rrsig_covered(pkt, here, &t) && t == type)
usr.sbin/unbound/util/storage/lruhash.c
480
int here = 0;
usr.sbin/unbound/util/storage/lruhash.c
485
here ++;
usr.sbin/unbound/util/storage/lruhash.c
490
log_info("bin[%d] %d", (int)i, here);
usr.sbin/unbound/util/storage/lruhash.c
491
if(here > max) max = here;
usr.sbin/unbound/util/storage/lruhash.c
492
if(here < min) min = here;