HomeSort by: relevance | last modified time | path
    Searched defs:here (Results 1 - 15 of 15) sorted by relevancy

  /src/lib/libc/arch/vax/gen/
alloca.S 40 movab here,16(%fp)
42 here: label
  /src/lib/libc/arch/vax/sys/
__vfork14.S 48 * trickery here, due to keith sklower, uses ret to clear the stack,
55 movab here,16(%fp)
57 here: label
  /src/lib/libc/compat/arch/vax/sys/
compat_Ovfork.S 51 * trickery here, due to keith sklower, uses ret to clear the stack,
58 movab here,16(%fp)
60 here: label
  /src/usr.bin/make/unit-tests/
export-all.mk 11 here := ${.PARSEDIR} macro
14 UT_BADDIR= ${${here}/../${here:T}:L:${M_tAbad}:T}
16 UT_OKDIR= ${${here}/../${here:T}:L:${M_tA}:T}
var-op-sunsh.mk 62 # Same pattern here. Until 2020-10-04, the ':sh' inside the nested expression
104 VAR :sh(Put a comment here)= comment in parentheses
113 VAR :sh{Put}((((a}{comment}}}}{here}= comment in braces
  /src/tests/lib/libc/gen/
t_dir.c 56 long here; local in function:ATF_TC_BODY
90 here = telldir(dp);
91 ATF_REQUIRE_MSG(here != -1, "telldir failed: %s", strerror(errno));
108 seekdir(dp, here);
116 seekdir(dp, here);
117 here = telldir(dp);
125 seekdir(dp, here);
  /src/common/dist/zlib/
inffast.c 72 code const *here; /* retrieved table entry */ local in function:inflate_fast
109 here = lcode + (hold & lmask);
111 op = (unsigned)(here->bits);
114 op = (unsigned)(here->op);
116 Tracevv((stderr, here->val >= 0x20 && here->val < 0x7f ?
118 "inflate: literal 0x%02x\n", here->val));
119 *out++ = (unsigned char)(here->val);
122 len = (unsigned)(here->val);
140 here = dcode + (hold & dmask)
    [all...]
inftrees.c 50 code here; /* table entry for duplication */ local in function:inflate_table
115 here.op = (unsigned char)64; /* invalid code marker */
116 here.bits = (unsigned char)1;
117 here.val = (unsigned short)0;
118 *(*table)++ = here; /* make a table to force an error */
119 *(*table)++ = here;
213 here.bits = (unsigned char)(len - drop);
215 here.op = (unsigned char)0;
216 here.val = work[sym];
219 here.op = (unsigned char)(extra[work[sym] - match])
    [all...]
infback.c 254 code here; /* current decoding table entry */ local in function:inflateBack
390 here = state->lencode[BITS(state->lenbits)];
391 if ((unsigned)(here.bits) <= bits) break;
394 if (here.val < 16) {
395 DROPBITS(here.bits);
396 state->lens[state->have++] = here.val;
399 if (here.val == 16) {
400 NEEDBITS(here.bits + 2);
401 DROPBITS(here.bits);
411 else if (here.val == 17)
    [all...]
inflate.c 602 code here; /* current decoding table entry */ local in function:inflate
951 here = state->lencode[BITS(state->lenbits)];
952 if ((unsigned)(here.bits) <= bits) break;
955 if (here.val < 16) {
956 DROPBITS(here.bits);
957 state->lens[state->have++] = here.val;
960 if (here.val == 16) {
961 NEEDBITS(here.bits + 2);
962 DROPBITS(here.bits);
972 else if (here.val == 17)
    [all...]
deflate.c 251 * option -- not supported here).
338 * time through here. WIN_INIT is set to MAX_MATCH since the longest match
479 * then n + 14 bits. Here n is lit_bufsize, which is 16384 by default, and
1200 * empty block here, this will be done at next call. This also
1433 /* Here, scan <= window + strstart + 257 */
1561 Bytef *back = s->window + (int)match, *here = s->window + start; local in function:check_match
1567 here++;
1570 if (zmemcmp(back, here, len) != EQUAL) {
1574 fprintf(stderr, "(%02x %02x)", *back++, *here++);
1622 * allowed here, then the hash table will be cleared, since two or more slide
    [all...]
  /src/games/adventure/
subr.c 72 here(int objj) function in typeref:typename:int
137 if ((cond[loc] % 2) == 0 && (prop[lamp] == 0 || !here(lamp)))
228 l6020: if (here(j))
232 && here(lamp) && prop[lamp] == 1)
519 if (prop[grate] == 0 && !here(keys))
523 if (here(bird) && toting(rod) && obj == bird)
527 if (here(snake) && !here(bird))
587 if (here(bottle) && liq() == obj) {
651 if (obj == bird && here(snake))
    [all...]
  /src/common/dist/zlib/contrib/infback9/
infback9.c 234 code here; /* current decoding table entry */ local in function:inflateBack9
375 here = lencode[BITS(lenbits)];
376 if ((unsigned)(here.bits) <= bits) break;
379 if (here.val < 16) {
380 NEEDBITS(here.bits);
381 DROPBITS(here.bits);
382 state->lens[state->have++] = here.val;
385 if (here.val == 16) {
386 NEEDBITS(here.bits + 2);
387 DROPBITS(here.bits)
    [all...]
  /src/lib/libc/regex/
engine.c 94 const char *offp; /* offsets work from here */
96 const char *endp; /* end of string -- virtual NUL here */
97 const char *coldp; /* can be no match starting before here */
388 /* despite initial appearances, there is no match here */
443 const char *stp; /* string matched by it cannot pass here */
1046 onestate here; /* note, macros know this name */ local in function:step
1052 for (pc = start, INIT(here, pc); pc != stop; pc++, INC(here)) {
1105 case OBACK_: /* ignored here */
1119 INIT(here, pc)
    [all...]
  /src/bin/sh/
parser.c 83 struct HereDoc *next; /* next here document in list */
84 union node *here; /* redirection node */ member in struct:HereDoc
131 static const char EOFhere[] = "EOF reading here (<<) document";
177 error("%d: Here document (<<%s) expected but not present",
442 * Newline or semicolon here is optional (but note
680 * Fortunately here the user can simply quote
775 struct HereDoc *here = heredoc; local in function:parsefname
780 VTRACE(DBG_PARSE, ("Here document %d @%d\n", n->type, plinno));
781 if (here->striptabs) {
802 here->eofmark = wordtext
966 struct HereDoc *here; local in function:readheredocs
    [all...]

Completed in 36 milliseconds