Home
last modified time | relevance | path

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

12345678910>>...32

/illumos-gate/usr/src/contrib/zlib/
H A Dinftrees.c115 here.bits = (unsigned char)1; in inflate_table()
116 here.val = (unsigned short)0; 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()
219 here.val = base[work[sym] - match]; in inflate_table()
223 here.val = 0; in inflate_table()
232 next[(huff >> drop) + fill] = here; in inflate_table()
292 here.val = (unsigned short)0; in inflate_table()
[all …]
H A Dinfback.c396 if (here.val < 16) { in inflateBack()
489 if (here.op && (here.op & 0xf0) == 0) { in inflateBack()
490 last = here; in inflateBack()
499 DROPBITS(here.bits); in inflateBack()
503 if (here.op == 0) { in inflateBack()
504 Tracevv((stderr, here.val >= 0x20 && here.val < 0x7f ? in inflateBack()
515 if (here.op & 32) { in inflateBack()
522 if (here.op & 64) { in inflateBack()
544 last = here; in inflateBack()
553 DROPBITS(here.bits); in inflateBack()
[all …]
H A Dinffast.c108 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()
121 len = (unsigned)(here->val); in inflate_fast()
139 here = dcode + (hold & dmask); in inflate_fast()
141 op = (unsigned)(here->bits); in inflate_fast()
144 op = (unsigned)(here->op); in inflate_fast()
146 dist = (unsigned)(here->val); in inflate_fast()
265 here = dcode + here->val + (hold & ((1U << op) - 1)); in inflate_fast()
[all …]
H A Dinflate.c962 if (here.val < 16) { in inflate()
1057 if (here.op && (here.op & 0xf0) == 0) { in inflate()
1058 last = here; in inflate()
1068 DROPBITS(here.bits); in inflate()
1069 state->back += here.bits; in inflate()
1072 Tracevv((stderr, here.val >= 0x20 && here.val < 0x7f ? in inflate()
1078 if (here.op & 32) { in inflate()
1084 if (here.op & 64) { in inflate()
1110 last = here; in inflate()
1120 DROPBITS(here.bits); in inflate()
[all …]
/illumos-gate/usr/src/contrib/ast/src/lib/libast/disc/
H A Dsfdcsubstr.c53 reg Sfoff_t here, parent; local
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;
149 pos += here;
153 return (su->here = pos);
[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;
175 s = f->here - (f->endb - f->next);
177 if(r <= f->here && r >= (f->here - (f->endb-f->data)) )
181 (s = SFSK(f, f->here, SEEK_SET, f->disc)) == f->here) )
249 if((hardseek || r != f->here) && (f->here = SFSK(f,r,SEEK_SET,f->disc)) != r)
252 if(f->here != p)
259 if(p <= f->here && p >= (f->here - (f->endb - f->data)) )
[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.c149 f->here = r;
150 else f->here -= f->endb-f->next;
164 { f->here -= a;
179 f->file, (sfoff_t)f->here);
196 f->here += r;
199 (void)SFSK(f,f->here,SEEK_SET,dc);
213 f->here += a;
216 (void)SFSK(f,f->here,SEEK_SET,dc);
238 f->here = SFSK(f,f->here,SEEK_SET,dc);
281 { f->here += r;
[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()
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()
145 tmp = here; in demangle_doarg()
153 (void) demangle_doarg(sptr,here.list[here.pos]); in demangle_doarg()
158 here = tmp; in demangle_doarg()
[all …]
/illumos-gate/usr/src/common/ficl/
H A Ddictionary.c94 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()
138 char *here = (char *)dictionary->here; in ficlDictionaryAppendCharacter() local
139 *here++ = c; in ficlDictionaryAppendCharacter()
140 dictionary->here = FICL_POINTER_TO_CELL(here); in ficlDictionaryAppendCharacter()
160 char *here = (char *)dictionary->here; in ficlDictionaryAppendData() local
170 *here++ = *from++; in ficlDictionaryAppendData()
174 *here++ = '\0'; in ficlDictionaryAppendData()
[all …]
H A Dprimitives.c116 c.i = patchAddr - dictionary->here; in resolveBackBranch()
137 offset = dictionary->here - patchAddr; in resolveForwardBranch()
167 (*patchAddr).p = dictionary->here; in resolveAbsBranch()
1287 dictionary->here; in ficlPrimitiveCountedStringQuoteIm()
1300 dictionary->here = in ficlPrimitiveCountedStringQuoteIm()
1325 dictionary->here = in ficlPrimitiveDotQuoteCoIm()
1381 to = (char *)dictionary->here; in ficlPrimitiveSLiteralCoIm()
2071 char *here = (char *)ficlVmGetDictionary(vm)->here; in ficlPrimitiveType() local
2072 if (s != here) in ficlPrimitiveType()
2075 here[length] = '\0'; in ficlPrimitiveType()
[all …]
/illumos-gate/usr/src/contrib/ast/src/lib/libast/cdt/
H A Ddtlist.c32 Dtlink_t* here; /* finger to searched objects */ member
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;
311 list->here = r == list->here ? r->_rght : NIL(Dtlink_t*);
[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()
288 hash->here = NIL(Dtlink_t*);
332 { hash->here = ll;
[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>>...32