/vbox/src/libs/zlib-1.2.6/contrib/iostream3/ |
H A D | test.cc | 14 gzifstream inf; local 26 inf.open("test1.txt.gz"); 27 while (inf.getline(buf,80,'\n')) { 28 std::cout << buf << "\t(" << inf.rdbuf()->in_avail() << " chars left in buffer)\n"; 30 inf.close(); 41 inf.rdbuf()->pubsetbuf(0,0); 42 inf.open("test2.txt.gz"); 43 while (inf.getline(buf,80,'\n')) { 44 std::cout << buf << "\t(" << inf.rdbuf()->in_avail() << " chars left in buffer)\n"; 46 inf [all...] |
/vbox/src/libs/zlib-1.2.6/examples/ |
H A D | zpipe.c | 10 1.3 6 Apr 2005 Remove incorrect assertion in inf() 87 inf() returns Z_OK on success, Z_MEM_ERROR if memory could not be 92 int inf(FILE *source, FILE *dest) function 194 ret = inf(stdin, stdout);
|
H A D | fitblk.c | 92 /* recompress from inf's input to def's output; the input for inf and 96 local int recompress(z_streamp inf, z_streamp def) argument 104 inf->avail_out = RAWLEN; 105 inf->next_out = raw; 106 ret = inflate(inf, Z_NO_FLUSH); 113 def->avail_in = RAWLEN - inf->avail_out; 115 if (inf->avail_out != 0) 134 z_stream def, inf; /* zlib deflate and inflate states */ local 180 inf [all...] |
/vbox/src/libs/zlib-1.2.6/test/ |
H A D | infcover.c | 284 local void inf(char *hex, char *what, unsigned step, int win, unsigned len, function 367 inf("63 0", "force window allocation", 0, -15, 1, Z_OK); 368 inf("63 18 5", "force window replacement", 0, -8, 259, Z_OK); 369 inf("63 18 68 30 d0 0 0", "force split window update", 4, -8, 259, Z_OK); 370 inf("3 0", "use fixed blocks", 0, -15, 1, Z_STREAM_END); 371 inf("", "bad window size", 0, 1, 0, Z_STREAM_ERROR); 399 inf("1f 8b 0 0", "bad gzip method", 0, 31, 0, Z_DATA_ERROR); 400 inf("1f 8b 8 80", "bad gzip flags", 0, 31, 0, Z_DATA_ERROR); 401 inf("77 85", "bad zlib method", 0, 15, 0, Z_DATA_ERROR); 402 inf(" [all...] |
/vbox/src/libs/zlib-1.2.6/contrib/blast/ |
H A D | blast.c | 414 local unsigned inf(void *how, unsigned char **buf) function 433 ret = blast(inf, stdin, outf, stdout);
|
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/ |
H A D | prism2.c | 774 hfa384x_InfFrame_t inf; local 837 result = hfa384x_copy_from_bap( hw, infofid, 0, &inf.framelen, sizeof(UINT16)); 839 inf.framelen = hfa384x2host_16(inf.framelen); 842 &(inf.infotype), inf.framelen * sizeof(UINT16)); 844 if ( inf.infotype != HFA384x_IT_LINKSTATUS ) { 846 printf ( "Unexpected info frame type %#hx (not LinkStatus type)\n", inf.infotype ); 849 inf.info.linkstatus.linkstatus = hfa384x2host_16(inf [all...] |
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Enquire/ |
H A D | Enquire.c | 664 #define D_FLT_ROUNDS "Addition rounds to 0: zero, 1: nearest, 2: +inf, 3: -inf, -1: unknown" 2780 iz, k, inf, machep, f_max_exp, f_min_exp, mx, negeps, local 2868 if (irnd==2 && mrnd==0) f_rounds=2; /* +inf */ 2869 if (irnd==0 && mrnd==2) f_rounds=3; /* -inf */ 3127 inf=0; trap=0; 3130 if (setjmp(lab) == 0) { /* Yields inf, f_max_exp */ 3137 if (newxmax > f_max) inf=1; /* ieee infinity */ 3192 if (inf) { Vprintf("%sThere is an 'infinite' value%s\n", co, oc); }
|
/vbox/src/libs/libxml2-2.6.31/ |
H A D | xpath.c | 6360 * @inf: less than (1) or greater than (0) 6380 xmlXPathCompareNodeSetFloat(xmlXPathParserContextPtr ctxt, int inf, int strict, argument 6402 ret = xmlXPathCompareValues(ctxt, inf, strict); 6416 * @inf: less than (1) or greater than (0) 6435 xmlXPathCompareNodeSetString(xmlXPathParserContextPtr ctxt, int inf, int strict, argument 6456 ret = xmlXPathCompareValues(ctxt, inf, strict); 6469 * @inf: less than (1) or greater than (0) 6496 xmlXPathCompareNodeSets(int inf, int strict, argument 6548 if (inf && strict) 6550 else if (inf 6591 xmlXPathCompareNodeSetValue(xmlXPathParserContextPtr ctxt, int inf, int strict, xmlXPathObjectPtr arg, xmlXPathObjectPtr val) argument 7231 xmlXPathCompareValues(xmlXPathParserContextPtr ctxt, int inf, int strict) argument 10798 int inf, strict; local [all...] |
H A D | testapi.c | 46523 int inf; /* less than (1) or greater than (0) */ local [all...] |
/vbox/src/libs/libxml2-2.6.31/python/ |
H A D | libxml2-py.c | 2826 int inf; local 2829 if (!PyArg_ParseTuple(args, (char *)"Oii:xmlXPathCompareValues", &pyobj_ctxt, &inf, &strict)) 2833 c_retval = xmlXPathCompareValues(ctxt, inf, strict);
|