Home
last modified time | relevance | path

Searched refs:here (Results 1 – 25 of 804) sorted by relevance

12345678910>>...33

/illumos-gate/usr/src/contrib/zlib/
H A Dinfback.c256 code here; /* current decoding table entry */ in inflateBack() local
392 here = state->lencode[BITS(state->lenbits)]; in inflateBack()
393 if ((unsigned)(here.bits) <= bits) break; in inflateBack()
396 if (here.val < 16) { in inflateBack()
397 DROPBITS(here.bits); in inflateBack()
398 state->lens[state->have++] = here.val; in inflateBack()
401 if (here.val == 16) { in inflateBack()
402 NEEDBITS(here.bits + 2); in inflateBack()
403 DROPBITS(here.bits); in inflateBack()
413 else if (here.val == 17) { in inflateBack()
[all …]
H A Dinftrees.c49 code here; /* table entry for duplication */ in inflate_table() local
114 here.op = (unsigned char)64; /* invalid code marker */ in inflate_table()
115 here.bits = (unsigned char)1; in inflate_table()
116 here.val = (unsigned short)0; in inflate_table()
117 *(*table)++ = here; /* make a table to force an error */ in inflate_table()
118 *(*table)++ = here; in inflate_table()
212 here.bits = (unsigned char)(len - drop); in inflate_table()
214 here.op = (unsigned char)0; in inflate_table()
215 here.val = work[sym]; in inflate_table()
218 here.op = (unsigned char)(extra[work[sym] - match]); in inflate_table()
[all …]
H A Dinffast.c71 code const *here; /* retrieved table entry */ in inflate_fast() local
108 here = lcode + (hold & lmask); in inflate_fast()
110 op = (unsigned)(here->bits); in inflate_fast()
113 op = (unsigned)(here->op); in inflate_fast()
115 Tracevv((stderr, here->val >= 0x20 && here->val < 0x7f ? in inflate_fast()
117 "inflate: literal 0x%02x\n", here->val)); in inflate_fast()
118 *out++ = (unsigned char)(here->val); in inflate_fast()
121 len = (unsigned)(here->val); in inflate_fast()
139 here = dcode + (hold & dmask); in inflate_fast()
141 op = (unsigned)(here->bits); in inflate_fast()
[all …]
H A Dinflate.c616 code here; /* current decoding table entry */ in inflate() local
958 here = state->lencode[BITS(state->lenbits)]; in inflate()
959 if ((unsigned)(here.bits) <= bits) break; in inflate()
962 if (here.val < 16) { in inflate()
963 DROPBITS(here.bits); in inflate()
964 state->lens[state->have++] = here.val; in inflate()
967 if (here.val == 16) { in inflate()
968 NEEDBITS(here.bits + 2); in inflate()
969 DROPBITS(here.bits); in inflate()
979 else if (here.val == 17) { in inflate()
[all …]
/illumos-gate/usr/src/contrib/ast/src/lib/libast/disc/
H A Dsfdcsubstr.c38 Sfoff_t here; /* current seek location */ member
53 reg Sfoff_t here, parent; local
59 if(su->extent >= 0 && (ssize_t)n > (io = (ssize_t)(su->extent - su->here)) )
68 here = su->here + su->offset;
69 if(sfsk(f,here,SEEK_SET,disc) != here)
76 su->here += io;
122 reg Sfoff_t here, parent; local
129 here = 0;
132 here = su->here;
136 here = su->extent;
[all …]
H A Dsfdcunion.c44 Sfoff_t here; /* current location */ member
82 un->here += r;
119 addr += un->here;
138 un->here = addr;
/illumos-gate/usr/src/contrib/ast/src/lib/libast/sfio/
H A Dsfseek.c45 if((f->here = p) < 0)
47 f->here = 0;
71 { newpos(f,f->here);
127 f->here = p;
147 { s = f->here + (f->next - f->data);
165 { r = p + (type == SEEK_CUR ? f->here : 0);
166 p = (hardseek || r != f->here) ? SFSK(f,r,SEEK_SET,f->disc) : r;
175 s = f->here - (f->endb - f->next);
177 if(r <= f->here && r >= (f->here - (f->endb-f->data)) )
179 { if((s = SFSK(f, (Sfoff_t)0, SEEK_CUR, f->disc)) == f->here ||
[all …]
H A Dsfsize.c52 s = f->here;
63 if(SFSK(f,f->here,SEEK_SET,disc) != f->here)
64 f->here = SFSK(f,(Sfoff_t)0,SEEK_CUR,disc);
71 else if((f->extent = st.st_size) < f->here)
72 f->here = SFSK(f,(Sfoff_t)0,SEEK_CUR,disc);
78 f->here = SFSK(f,(Sfoff_t)0,SEEK_CUR,f->disc);
81 if(f->here != s && (f->mode&SF_READ) )
92 if(f->here < 0)
94 else if(f->extent < f->here)
95 f->extent = f->here;
[all …]
H A Dsfrd.c148 (r = SFSK(f,(Sfoff_t)0,SEEK_CUR,dc)) != f->here)
149 f->here = r;
150 else f->here -= f->endb-f->next;
153 if((f->flags&SF_SHARE) || (size_t)(r = f->extent-f->here) < n)
156 if((r = (f->extent = st.st_size) - f->here) <= 0 )
163 if((a = (size_t)(f->here%_Sfpage)) != 0)
164 { f->here -= a;
179 f->file, (sfoff_t)f->here);
196 f->here += r;
199 (void)SFSK(f,f->here,SEEK_SET,dc);
[all …]
H A Dsfwr.c181 { if(f->here != f->extent || (f->flags&SF_SHARE))
182 { f->here = SFSK(f,(Sfoff_t)0,SEEK_END,dc);
183 f->extent = f->here;
187 f->here = SFSK(f,f->here,SEEK_SET,dc);
202 f->here == f->extent && (f->here%_Sfpage) == 0)
219 f->here = SFSK(f,(Sfoff_t)0,SEEK_CUR,dc);
220 else f->here += w;
221 if(f->extent >= 0 && f->here > f->extent)
222 f->extent = f->here;
H A Dsfsetbuf.c224 { if((f->here = SFSK(f,(Sfoff_t)0,SEEK_CUR,disc)) < 0)
229 f->extent = e > f->here ? e : f->here;
230 (void)SFSK(f,f->here,SEEK_SET,disc);
237 f->here = -1;
247 f->here = SFSK(f,(Sfoff_t)0,SEEK_CUR,f->disc);
248 else f->here = -1;
251 if(okmmap && f->here >= 0 &&
262 if(f->here >= 0)
273 f->here = 0;
395 f->here = 0;
H A Dsfpurge.c59 { f->here -= f->endb - f->next;
62 (void)SFSK(f,f->here,SEEK_SET,f->disc);
84 { f->here -= f->endb-f->next;
85 (void)SFSK(f,f->here,SEEK_SET,f->disc);
/illumos-gate/usr/src/cmd/sgs/libelf/misc/
H A Dargs.c49 static Place here; variable
116 if(here.pos < 10 && here.pos >= 0) in demangle_doarg()
117 here.list[here.pos++] = c; in demangle_doarg()
128 tmp = here; in demangle_doarg()
129 here.pos = c[1] - '1'; in demangle_doarg()
130 if(here.pos < 0 || here.pos >= tmp.pos-1) { in demangle_doarg()
134 (void) demangle_doarg(sptr,here.list[here.pos]); in demangle_doarg()
135 here = tmp; in demangle_doarg()
144 here.pos += cycles - 1; in demangle_doarg()
145 tmp = here; in demangle_doarg()
[all …]
/illumos-gate/usr/src/common/ficl/
H A Ddictionary.c82 dictionary->here = (ficlCell *)word->name; in ficlDictionaryAbortDefinition()
94 dictionary->here = ficlAlignPointer(dictionary->here); in ficlDictionaryAlign()
105 char *here = (char *)dictionary->here; in ficlDictionaryAllot() local
106 here += n; in ficlDictionaryAllot()
107 dictionary->here = FICL_POINTER_TO_CELL(here); in ficlDictionaryAllot()
118 dictionary->here += nficlCells; in ficlDictionaryAllotCells()
128 *dictionary->here++ = c; in ficlDictionaryAppendCell()
138 char *here = (char *)dictionary->here; in ficlDictionaryAppendCharacter() local
139 *here++ = c; in ficlDictionaryAppendCharacter()
140 dictionary->here = FICL_POINTER_TO_CELL(here); in ficlDictionaryAppendCharacter()
[all …]
H A Dprimitives.c72 ficlStackPushPointer(vm->dataStack, dictionary->here); in markBranch()
116 c.i = patchAddr - dictionary->here; in resolveBackBranch()
137 offset = dictionary->here - patchAddr; in resolveForwardBranch()
167 (*patchAddr).p = dictionary->here; in resolveAbsBranch()
605 offset = dictionary->here - patchAddr; in ficlPrimitiveElseCoIm()
681 offset = dictionary->here - patchAddr; in ficlPrimitiveEndcaseCoIm()
712 ficlInteger offset = dictionary->here - fallthroughFixup; in ficlPrimitiveOfCoIm()
749 ficlStackPushPointer(vm->dataStack, dictionary->here); in ficlPrimitiveEndofCoIm()
757 offset = dictionary->here - patchAddr; in ficlPrimitiveEndofCoIm()
789 ficlStackPushPointer(vm->dataStack, dictionary->here); in ficlPrimitiveFallthroughCoIm()
[all …]
/illumos-gate/usr/src/contrib/ast/src/lib/libast/cdt/
H A Ddtlist.c32 Dtlink_t* here; /* finger to searched objects */ member
36 int dtlistprint(Dt_t* dt, Dtlink_t* here, char* (*objprintf)(Void_t*) ) in dtlistprint() argument
43 if(!here && !(here = list->link) ) in dtlistprint()
46 for(; here; here = here->_rght) in dtlistprint()
49 obj = (*objprintf)(_DTOBJ(disc, here)); in dtlistprint()
76 list->here = lnk; /* finger points to this */
95 list->link = list->here = NIL(Dtlink_t*);
191 h = list->here; /* save finger to last search object */
192 list->here = NIL(Dtlink_t*);
258 list->here = r;
[all …]
H A Ddthash.c39 Dtlink_t* here; /* fingered object */ member
100 hash->here = NIL(Dtlink_t*); in hclear()
122 hash->here = l; in hfirst()
135 { hash->here = next; in hnext()
144 hash->here = l; in hnext()
169 { hash->here = head; in hflatten()
177 { head = hash->here; in hflatten()
193 hash->here = NIL(Dtlink_t*); in hflatten()
287 lnk = hash->here; /* fingered object */
288 hash->here = NIL(Dtlink_t*);
[all …]
H A Ddttree.c38 int dttreeprint(Dt_t* dt, Dtlink_t* here, int lev, char* (*objprintf)(Void_t*) ) in dttreeprint() argument
45 if(!here && !(here = tree->root) ) in dttreeprint()
53 obj = (*objprintf)(_DTOBJ(disc, here)); in dttreeprint()
60 if(here->_left) in dttreeprint()
61 obj = (*objprintf)(_DTOBJ(disc,here->_left)); in dttreeprint()
68 if(here->_rght) in dttreeprint()
69 obj = (*objprintf)(_DTOBJ(disc,here->_rght)); in dttreeprint()
76 if(here->_left) in dttreeprint()
77 dttreeprint(dt, here->_left, lev+1, objprintf); in dttreeprint()
78 if(here->_rght) in dttreeprint()
[all …]
/illumos-gate/usr/src/lib/libc/port/regex/
H A Dregexec.c107 #define FWD(dst, src, n) ((dst) |= ((unsigned long)(src)&(here)) << (n))
108 #define BACK(dst, src, n) ((dst) |= ((unsigned long)(src)&(here)) >> (n))
109 #define ISSETBACK(v, n) (((v) & ((unsigned long)here >> (n))) != 0)
164 #define FWD(dst, src, n) ((dst)[here+(n)] |= (src)[here])
165 #define BACK(dst, src, n) ((dst)[here-(n)] |= (src)[here])
166 #define ISSETBACK(v, n) ((v)[here - (n)])
/illumos-gate/usr/src/uts/sparc/ml/
H A Dsparc_ddi.S110 nop ! as if we had never been here
123 nop ! as if we had never been here
134 nop ! as if we had never been here
145 nop ! as if we had never been here
156 nop ! as if we had never been here
167 nop ! as if we had never been here
178 nop ! as if we had never been here
202 nop ! as if we had never been here
223 nop ! as if we had never been here
/illumos-gate/usr/src/cmd/mvdir/
H A Dmvdir.sh66 here=`pwd`
71 cd "$here"
79 cd "$here"
/illumos-gate/usr/src/uts/common/disp/
H A Dcmt_policy.c66 cmt_should_migrate(pg_cmt_t *here, pg_cmt_t *there, pg_cmt_policy_t policy, in cmt_should_migrate() argument
71 here_util = here->cmt_utilization; in cmt_should_migrate()
77 if (self && bitset_in_set(&here->cmt_cpus_actv_set, CPU->cpu_seqid)) in cmt_should_migrate()
96 (CMT_CAPACITY(there) > CMT_CAPACITY(here)))) { in cmt_should_migrate()
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/providers/
H A Dtst.beginexit.d35 here++;
40 exit(here);
/illumos-gate/usr/src/test/util-tests/tests/awk/gnu/
H A Dgawksub.ok1 orig = "here is some text", repl = "<FOO&BAR \q \ \\ \& \\& \\\&>"
2 result is "here is <FOOsomeBAR \q \ \\ & \some \&> text"
/illumos-gate/usr/src/cmd/backup/dump/
H A Dlftw.c243 long here; in lf_xftw() local
254 here = telldir(dirp); in lf_xftw()
279 seekdir(dirp, here); in lf_xftw()

12345678910>>...33