| /plan9/sys/src/cmd/gs/jpeg/ |
| H A D | jddctmgr.c | 94 int method = 0; in start_pass() local 105 method = JDCT_ISLOW; /* jidctred uses islow-style table */ in start_pass() 109 method = JDCT_ISLOW; /* jidctred uses islow-style table */ in start_pass() 113 method = JDCT_ISLOW; /* jidctred uses islow-style table */ in start_pass() 121 method = JDCT_ISLOW; in start_pass() 127 method = JDCT_IFAST; in start_pass() 133 method = JDCT_FLOAT; in start_pass() 153 if (! compptr->component_needed || idct->cur_method[ci] == method) in start_pass() 158 idct->cur_method[ci] = method; in start_pass() 159 switch (method) { in start_pass()
|
| H A D | usage.doc | 16 (pronounced "jay-peg") is a standardized compression method for full-color 143 -dct int Use integer DCT method (default). 145 -dct float Use floating-point DCT method. 146 The float method is very slightly more accurate than 147 the int method, but is much slower unless your machine 149 results of the floating-point method may vary slightly 151 the same results everywhere. The fast integer method 266 -dct int Use integer DCT method (default). 268 -dct float Use floating-point DCT method. 269 The float method is very slightly more accurate than [all …]
|
| H A D | filelist.doc | 72 jfdctint.c Forward DCT using slow-but-accurate integer method. 73 jfdctfst.c Forward DCT using faster, less accurate integer method. 91 jidctint.c Inverse DCT using slow-but-accurate integer method. 92 jidctfst.c Inverse DCT using faster, less accurate integer method.
|
| H A D | coderules.doc | 58 ansi2knr does not transform method declarations (function pointers in 94 wherever possible. (Note that our method-based calling conventions help this
|
| H A D | jmorecfg.h.save | 183 /* a function called through method pointers: */ 193 /* This macro is used to declare a "method", that is, a function pointer. 264 #define DCT_IFAST_SUPPORTED /* faster, less accurate integer method */
|
| /plan9/sys/src/cmd/aquarela/ |
| H A D | smbtransaction.c | 409 …n *t, SmbHeader *h, SmbPeerInfo *p, SmbBuffer *ob, SmbTransactionMethod *method, void *magic, char… in smbtransactionrespond() argument 413 assert(method->encoderesponse); in smbtransactionrespond() 414 if (!(*method->encoderesponse)(t, h, p, ob, errmsgp)) in smbtransactionrespond() 416 assert(method->sendresponse); in smbtransactionrespond() 417 if (!(*method->sendresponse)(magic, ob, errmsgp)) in smbtransactionrespond() 443 … *t, SmbHeader *h, SmbPeerInfo *p, SmbBuffer *iob, SmbTransactionMethod *method, void *magic, SmbH… in smbtransactionexecute() argument 449 if (!(*method->encodeprimary)(t, h, p, iob, &sentwordcount, &sentbytecount, errmsgp)) in smbtransactionexecute() 453 if (!(*method->sendrequest)(magic, iob, errmsgp)) in smbtransactionexecute() 459 if (method->encodesecondary == nil || method->receiveintermediate == nil) { in smbtransactionexecute() 463 if (!(*method->receiveintermediate)(magic, &wordcount, &bytecount, errmsgp)) in smbtransactionexecute() [all …]
|
| H A D | smbtrans2client.c | 3 static SmbTransactionMethod method = { variable 27 return smbtransactionexecute(&transaction, &h, &c->peerinfo, c->b, &method, c, rh, errmsgp); in smbclienttrans2()
|
| /plan9/sys/src/cmd/gs/src/ |
| H A D | gdevcmap.c | 83 gx_device_color_mapping_method_t method) in gdev_cmap_set_method() argument 94 switch (method) { in gdev_cmap_set_method() 137 cmdev->mapping_method = method; in gdev_cmap_set_method() 144 gx_device_color_mapping_method_t method) in gdev_cmap_init() argument 154 code = gdev_cmap_set_method(dev, method); in gdev_cmap_init()
|
| H A D | szlibx.h | 34 int method; member
|
| H A D | szlibe.c | 34 if (deflateInit2(&ss->dynamic->zstate, ss->level, ss->method, in s_zlibE_init()
|
| H A D | szlibc.c | 43 ss->method = Z_DEFLATED; in s_zlib_set_defaults()
|
| /plan9/sys/src/cmd/abaco/ |
| H A D | urls.c | 24 u->method = m; in urlalloc() 47 b->method = a->method; in urldup() 101 if(u->method==HPost && u->post.r != nil){ in urlopen()
|
| /plan9/sys/src/cmd/auth/factotum/ |
| H A D | httpdigest.c | 61 char *nonce, char *method, char *uri, in digest() argument 83 s = md5((uchar*)method, strlen(method), nil, nil); in digest()
|
| /plan9/sys/src/cmd/srvold9p/ |
| H A D | srvold9p.c | 125 int method; in main() local 141 method = -1; in main() 161 method = File; in main() 171 method = Network; in main() 180 method = Stdio; in main() 186 method = Command; in main() 193 if(method == Stdio){ in main() 203 connect(method, oldstring); in main() 205 if(method == Stdio) in main() 253 connect(int method, char *oldstring) in connect() argument [all …]
|
| /plan9/sys/src/9/boot/ |
| H A D | boot.c | 103 if(method[0].name == nil) in pickmethod() 306 for(mp = method; mp->name; mp++){ in findmethod() 341 mp = method; in rootserver() 358 strcpy(reply, method->name); in rootserver()
|
| H A D | mkboot | 15 Method method[]={
|
| H A D | boot.h | 25 extern Method method[]; /* defined in ../$arch/boot$CONF.c */
|
| /plan9/sys/src/cmd/ |
| H A D | hget.c | 12 int method; member 86 } method[] = { variable 197 n = (*method[u.method].f)(&u, &px, &r, &out, mtime); in main() 238 if(u->method == Other){ in crackurl() 252 for(i = 0; i < nelem(method); i++){ in crackurl() 253 if(cistrcmp(s, method[i].name) == 0){ in crackurl() 254 u->method = i; in crackurl() 262 if(u->method == Other){ in crackurl() 285 u->port = method[u->method].name; in crackurl() 351 if(u->method == Https){ in dohttp()
|
| /plan9/sys/src/cmd/gs/zlib/ |
| H A D | zlib.h | 1164 ZEXTERN int ZEXPORT deflateInit2_ OF((z_streamp strm, int level, int method, 1178 #define deflateInit2(strm, level, method, windowBits, memLevel, strategy) \ argument 1179 deflateInit2_((strm),(level),(method),(windowBits),(memLevel),\
|
| H A D | deflate.h | 98 Byte method; /* STORED (for zip only) or DEFLATED */ member
|
| H A D | deflate.c | 216 int ZEXPORT deflateInit2_(strm, level, method, windowBits, memLevel, strategy, in deflateInit2_() argument 220 int method; 265 if (memLevel < 1 || memLevel > MAX_MEM_LEVEL || method != Z_DEFLATED || 308 s->method = (Byte)method;
|
| /plan9/sys/src/cmd/gs/libpng/ |
| H A D | pngwrite.c | 1092 png_set_filter(png_structp png_ptr, int method, int filters) in png_set_filter() argument 1097 (method == PNG_INTRAPIXEL_DIFFERENCING)) in png_set_filter() 1098 method = PNG_FILTER_TYPE_BASE; in png_set_filter() 1100 if (method == PNG_FILTER_TYPE_BASE) in png_set_filter() 1355 png_set_compression_method(png_structp png_ptr, int method) in png_set_compression_method() argument 1358 if (method != 8) in png_set_compression_method() 1361 png_ptr->zlib_method = method; in png_set_compression_method()
|
| /plan9/sys/src/ape/cmd/patch/ |
| H A D | NEWS | 52 * The method used to intuit names of files to be patched is changed again: 55 The complete new method is described in the man page. 80 * The method used to intuit names of files to be patched is changed. 148 * RCS is used only if the version control method is `existing'
|
| /plan9/sys/doc/ |
| H A D | release4.ms | 153 The installation method has also changed and we're moving towards a new 154 method for maintaining updates.
|
| /plan9/sys/doc/sam/ |
| H A D | sam.tut | 178 the method in the madness that is the Emacs command structure. 207 the method in the madness that is the Emacs command structure. 253 the method in the madness that is the Emacs command structure. 347 command, but the method used so far to insert text includes a newline. 612 the method in the madness that is the vi command structure. 648 the method in the madness that is the Emacs command structure. 692 the method in the madness that is the Emacs{TM} command structure. 710 the method in the madness that is the Emacs command structure. 781 A better method is to extend every group of newlines by one: 946 the method in the madness that is the Emacs command structure. [all …]
|