/vbox/src/libs/zlib-1.2.6/ |
H A D | inftrees.c | 56 const unsigned short FAR *extra; /* extra bits table to use */ local 57 int end; /* use base and extra for symbol > end */ 63 static const unsigned short lext[31] = { /* Length codes 257..285 extra */ 70 static const unsigned short dext[32] = { /* Distance codes 0..29 extra */ 183 base = extra = work; /* dummy value--not used */ 189 extra = lext; 190 extra -= 257; 195 extra = dext; 224 here.op = (unsigned char)(extra[wor [all...] |
H A D | inflate.h | 24 OS, /* i: waiting for extra flags and operating system (gzip) */ 25 EXLEN, /* i: waiting for extra length (gzip) */ 26 EXTRA, /* i: waiting for extra bytes (gzip) */ 42 LENEXT, /* i: waiting for length extra bits */ 44 DISTEXT, /* i: waiting for distance extra bits */ 104 unsigned extra; /* extra bits needed */ member in struct:inflate_state
|
H A D | infback.c | 537 /* length code -- get extra bits, if any */ 538 state->extra = (unsigned)(here.op) & 15; 539 if (state->extra != 0) { 540 NEEDBITS(state->extra); 541 state->length += BITS(state->extra); 542 DROPBITS(state->extra); 570 /* get distance extra bits, if any */ 571 state->extra = (unsigned)(here.op) & 15; 572 if (state->extra != 0) { 573 NEEDBITS(state->extra); [all...] |
H A D | inflate.c | 19 * - Remove unnecessary second byte pull from length extra in inffast.c 34 * - Remove distance extra == 0 check in inflate_fast()--only helps for lengths 735 state->head->extra = Z_NULL; 743 state->head->extra != Z_NULL) { 745 zmemcpy(state->head->extra + len, next, 1072 state->extra = (unsigned)(here.op) & 15; 1075 if (state->extra) { 1076 NEEDBITS(state->extra); 1077 state->length += BITS(state->extra); 1078 DROPBITS(state->extra); [all...] |
H A D | trees.c | 62 local const int extra_lbits[LENGTH_CODES] /* extra bits for each length code */ 65 local const int extra_dbits[D_CODES] /* extra bits for each distance code */ 68 local const int extra_blbits[BL_CODES]/* extra bits for each bit length code */ 88 * need for the L_CODES extra codes used during heap construction. However 119 const intf *extra_bits; /* extra bits for each code or NULL */ 495 const intf *extra = desc->stat_desc->extra_bits; local 501 int xbits; /* extra bits */ 523 if (n >= base) xbits = extra[n-base]; 653 /* node is 0 or 1 so it does not have extra bits */ 1067 int extra; /* numbe local [all...] |
/vbox/src/libs/libxml2-2.6.31/macos/src/ |
H A D | config-mac.h | 191 #include <extra/stricmp.h> 192 #include <extra/strdup.h>
|
/vbox/src/libs/libxml2-2.6.31/ |
H A D | libxml.h | 74 void __xmlIOErr(int domain, int code, const char *extra);
|
H A D | check-xml-test-suite.py | 312 extra = None 318 extra = test.prop('ENTITIES') 320 #if extra == None: 322 #elif extra == 'none': 324 #elif extra == 'general': 326 #elif extra == 'both' or extra == 'parameter': 329 # print "Unknow value %s for an ENTITIES test value" % (extra) 351 if extra != None: 352 log.write(" %s:%s:%s\n" % (type, extra, conten [all...] |
H A D | xmlmodule.c | 39 * @extra: extra information 44 xmlModuleErrMemory(xmlModulePtr module, const char *extra) argument 53 XML_ERR_NO_MEMORY, XML_ERR_FATAL, NULL, 0, extra, 55 "Memory allocation failed : %s\n", extra);
|
H A D | c14n.c | 128 * @extra: extra informations 133 xmlC14NErrMemory(const char *extra) argument 136 XML_ERR_NO_MEMORY, XML_ERR_ERROR, NULL, 0, extra, 138 "Memory allocation failed : %s\n", extra); 143 * @extra: extra informations 148 xmlC14NErrParam(const char *extra) argument 151 XML_ERR_INTERNAL_ERROR, XML_ERR_ERROR, NULL, 0, extra, 153 "Invalid parameter : %s\n", extra); 163 xmlC14NErrInternal(const char *extra) argument 178 xmlC14NErrInvalidNode(const char *node_type, const char *extra) argument 193 xmlC14NErrUnknownNode(int node_type, const char *extra) argument [all...] |
/vbox/src/libs/zlib-1.2.6/contrib/infback9/ |
H A D | infback9.c | 236 unsigned extra; /* extra bits needed */ local 515 /* length code -- get extra bits, if any */ 516 extra = (unsigned)(here.op) & 31; 517 if (extra != 0) { 518 NEEDBITS(extra); 519 length += BITS(extra); 520 DROPBITS(extra); 548 /* get distance extra bits, if any */ 549 extra [all...] |
H A D | inftree9.c | 56 const unsigned short FAR *extra; /* extra bits table to use */ local 57 int end; /* use base and extra for symbol > end */ 64 static const unsigned short lext[31] = { /* Length codes 257..285 extra */ 72 static const unsigned short dext[32] = { /* Distance codes 0..31 extra */ 177 base = extra = work; /* dummy value--not used */ 183 extra = lext; 184 extra -= 257; 189 extra = dext; 218 this.op = (unsigned char)(extra[wor [all...] |
/vbox/src/libs/zlib-1.2.6/contrib/minizip/ |
H A D | mztools.c | 46 char extra[1024]; local 63 unsigned int extsize = READ_16(header + 28); /* extra field length */ 64 filename[0] = extra[0] = '\0'; 99 if (extsize < sizeof(extra)) { 100 if (fread(extra, 1, extsize, fpZip) == extsize) { 101 if (fwrite(extra, 1, extsize, fpOut) == extsize) { 188 if (fwrite(extra, 1, extsize, fpOutCD) == extsize) {
|
/vbox/src/VBox/NetworkServices/DHCP/ |
H A D | Config.cpp | 796 std::vector<RawOption> extra; local 800 extra.push_back(opt); 810 extra.push_back(opt); 812 processParameterReqList(client, pu8ReqList, cReqList, extra); 814 return doReply(client, extra); 849 std::vector<RawOption> extra; local 853 extra.push_back(opt); 862 extra.push_back(opt); 864 processParameterReqList(client, pu8ReqList, cReqList, extra); 866 return doReply(client, extra); 891 std::vector<RawOption> extra; local 936 doReply(const Client& client, const std::vector<RawOption>& extra) argument 1096 processParameterReqList(const Client& client, const uint8_t *pu8ReqList, int cReqList, std::vector<RawOption>& extra) argument [all...] |
/vbox/src/libs/xpcom18a4/xpcom/reflect/xptcall/src/md/unix/ |
H A D | xptcstubs_asm_mips.s.m4 | 50 NARGSAVE=4 # extra space for the callee to use. gccism
|
H A D | xptcinvoke_asm_sparc_solaris_SUNW.s | 61 add %l0,8,%l0 ! there are 2 extra entries in the vTable
|
H A D | xptcinvoke_asm_sparcv9_solaris_SUNW.s | 92 add %l0,16,%l0 ! there are 2 extra entries in the vTable (16bytes)
|
H A D | xptcstubs_asm_irix.s | 73 # a2 is stack address where extra function params
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.6.5/ |
H A D | xkbrules.h | 92 XkbRF_DescribeVarsPtr extra; member in struct:_XkbRF_Rules
|
/vbox/src/libs/xpcom18a4/xpcom/io/ |
H A D | nsEscape.cpp | 86 int i, extra = 0; local 93 extra += 2; /* the escape, plus an extra byte for each nibble */ 96 char* result = (char *)nsMemory::Alloc(len + extra + 1);
|
/vbox/src/libs/zlib-1.2.6/contrib/pascal/ |
H A D | zlibpas.pas | 53 xflags: Integer; (* extra flags (not used when writing a gzip file) *) 55 extra: PChar; (* pointer to extra field or Z_NULL if none *) 56 extra_len: Integer; (* extra field length (valid if extra != Z_NULL) *) 57 extra_max: Integer; (* space at extra (only when reading header) *)
|
/vbox/src/libs/libxml2-2.6.31/doc/examples/ |
H A D | index.py | 148 output.write(" <extra topic='%s'>%s</extra>\n" % ( 242 for extra in extras: 243 EXTRA_DIST = EXTRA_DIST + extra + " "
|
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/unix/ |
H A D | os_ReliantUNIX.s | 50 .frame sp,0,$31 # vars= 0, regs= 0/0, args= 0, extra= 0 87 .frame sp,0,$31 # vars= 0, regs= 0/0, args= 0, extra= 0
|
/vbox/src/libs/zlib-1.2.6/contrib/blast/ |
H A D | blast.c | 244 * byte is 4, 5, or 6 for the number of extra bits in the distance code. 258 * no bit reversal is needed for either the length extra bits or the distance 259 * extra bits. 280 int symbol; /* decoded symbol, extra bits for distance */ 306 static const char extra[16] = { /* extra bits for length codes */ local 328 len = base[symbol] + bits(s, extra[symbol]);
|
/vbox/src/libs/xpcom18a4/python/ |
H A D | xpt.py | 295 extra="" 297 extra = "Out" 298 in_comment = "In%s: %s: %s" % (extra, name, type_desc)
|