Searched defs:here (Results 1 - 10 of 10) sorted by relevance

/vbox/src/libs/zlib-1.2.6/
H A Dinffast.c90 code here; /* retrieved table entry */ local
127 here = lcode[hold & lmask];
129 op = (unsigned)(here.bits);
132 op = (unsigned)(here.op);
134 Tracevv((stderr, here.val >= 0x20 && here.val < 0x7f ?
136 "inflate: literal 0x%02x\n", here.val));
137 PUP(out) = (unsigned char)(here.val);
140 len = (unsigned)(here.val);
158 here
[all...]
H A Dinftrees.c53 code here; /* table entry for duplication */ local
118 here.op = (unsigned char)64; /* invalid code marker */
119 here.bits = (unsigned char)1;
120 here.val = (unsigned short)0;
121 *(*table)++ = here; /* make a table to force an error */
122 *(*table)++ = here;
218 here.bits = (unsigned char)(len - drop);
220 here.op = (unsigned char)0;
221 here.val = work[sym];
224 here
[all...]
H A Dinfback.c265 code here; /* current decoding table entry */ local
401 here = state->lencode[BITS(state->lenbits)];
402 if ((unsigned)(here.bits) <= bits) break;
405 if (here.val < 16) {
406 DROPBITS(here.bits);
407 state->lens[state->have++] = here.val;
410 if (here.val == 16) {
411 NEEDBITS(here.bits + 2);
412 DROPBITS(here.bits);
422 else if (here
[all...]
H A Dinflate.c622 code here; /* current decoding table entry */ local
943 here = state->lencode[BITS(state->lenbits)];
944 if ((unsigned)(here.bits) <= bits) break;
947 if (here.val < 16) {
948 DROPBITS(here.bits);
949 state->lens[state->have++] = here.val;
952 if (here.val == 16) {
953 NEEDBITS(here.bits + 2);
954 DROPBITS(here.bits);
964 else if (here
[all...]
/vbox/src/libs/zlib-1.2.6/examples/
H A Dzran.c46 use of pointers in the state. The approach here allows for storage of the
249 struct point *here; local
258 here = index->list;
260 while (--ret && here[1].out <= offset)
261 here++;
272 ret = fseeko(in, here->in - (here->bits ? 1 : 0), SEEK_SET);
275 if (here->bits) {
281 (void)inflatePrime(&strm, here->bits, ret >> (8 - here
[all...]
/vbox/src/libs/zlib-1.2.6/contrib/infback9/
H A Dinfback9.c245 code here; /* current decoding table entry */ local
387 here = lencode[BITS(lenbits)];
388 if ((unsigned)(here.bits) <= bits) break;
391 if (here.val < 16) {
392 NEEDBITS(here.bits);
393 DROPBITS(here.bits);
394 state->lens[state->have++] = here.val;
397 if (here.val == 16) {
398 NEEDBITS(here.bits + 2);
399 DROPBITS(here
[all...]
/vbox/src/VBox/GuestHost/OpenGL/util/
H A Dlibteac.c352 char* here; local
447 /* I don't think we have to do anything here! */
493 if ((here= crStrchr(buf,'.')) != NULL) *here= '\0';
1182 char* here; local
1189 if ((here= crStrchr(host,'.')) != NULL) *here= '\0';
/vbox/src/libs/libxml2-2.6.31/include/libxml/
H A Dxpath.h315 xmlNodePtr here; /* for here() */ member in struct:_xmlXPathContext
/vbox/src/libs/libxml2-2.6.31/
H A Dxpointer.c1150 /* in case of syntax error, break here */
1156 * or location set, return here.
1307 * @here: the node that directly contains the XPointer being evaluated or NULL
1316 xmlXPtrNewContext(xmlDocPtr doc, xmlNodePtr here, xmlNodePtr origin) { argument
1323 ret->here = here;
1338 xmlXPathRegisterFunc(ret, (xmlChar *)"here",
1726 * Function implementing here() operation
1733 if (ctxt->context->here == NULL)
1736 valuePush(ctxt, xmlXPtrNewLocationSetNodes(ctxt->context->here, NUL
[all...]
/vbox/src/libs/libxml2-2.6.31/python/
H A Dlibxml2-py.c6894 xmlNodePtr here; local
6902 here = (xmlNodePtr) PyxmlNode_Get(pyobj_here);
6905 c_retval = xmlXPtrNewContext(doc, here, origin);

Completed in 96 milliseconds