Searched refs:output (Results 1 - 25 of 57) sorted by relevance

123

/ast/src/lib/libvcodex/Vcdelta/
H A Dvchamming.c38 Vcchar_t *srcdt, *tardt, *output, *dt; local
58 if(!(output = vcbuffer(vc, NIL(Vcchar_t*), tarsz, 0)) )
62 memcpy(output, tardt, tarsz);
64 { for(dt = output, t = 0; t < tarsz; )
72 dt = output;
73 if(vcrecode(vc, &output, &tarsz, 0, 0) < 0 )
75 if(dt != output)
79 *out = (Void_t*)output;
95 Vcchar_t *srcdt, *tardt, *output, *dt; local
117 if(!(output
[all...]
/ast/src/lib/libvcodex/Vcmisc/
H A Dvcbwt.c40 Vcchar_t *dt, *output, *bw; local
58 if(!(output = vcbuffer(vc, NIL(Vcchar_t*), sz, hd)) )
62 dt = (Vcchar_t*)data; bw = output;
71 dt = output;
72 if(vcrecode(vc, &output, &sz, hd, 0) < 0 )
74 if(dt != output) /* got a new buffer, free old one */
78 output -= hd;
79 vcioinit(&io, output, hd);
84 if(!(output = vcbuffer(vc, output, r
103 Vcchar_t *dt, *output, *o; local
[all...]
H A Dvcmap.c259 Vcchar_t *dt, *enddt, *output, *o; local
277 if(!(output = vcbuffer(vc, NIL(Vcchar_t*), sz, 0)) )
281 memcpy(output, dt, sz);
282 else for(o = output, enddt = dt+sz; dt < enddt; )
289 { dt = output;
290 if(vcrecode(vc, &output, &sz, 0, 0) < 0 )
292 if(dt != output)
297 *out = output;
H A Dvcmtf.c52 static ssize_t mtfp(Vcchar_t* dt, Vcchar_t* enddt, Vcchar_t* output, int encoding) argument
54 static ssize_t mtfp(dt, enddt, output, encoding)
57 Vcchar_t* output; /* output array */
82 { for(o = output; dt < enddt; ++dt, ++o )
88 { for(o = output; dt < enddt; ++dt, ++o )
94 return o-output;
100 static ssize_t mtf0(Vcchar_t* dt, Vcchar_t* enddt, Vcchar_t* output, int encoding) argument
102 static ssize_t mtf0(dt, enddt, output, encoding)
105 Vcchar_t* output; /* outpu
139 Vcchar_t *output, *dt; local
173 Vcchar_t *dt, *output; local
[all...]
H A Dvctranspose.c100 else /* output one byte from this record */
252 Vcchar_t *output, *enddt;
260 if(!(output = vcbuffer(vc, NIL(Vcchar_t*), 2*(size + vcsizeu(size)), hd)) )
263 chr = output + vcsizeu(size);
318 c = chr - (output + vcsizeu(size)); chr = output + vcsizeu(size);
323 if((sz = _vcrle2coder(vc->coder,hd,chr,c,run,r,&output,sz)) < 0)
327 { vcioinit(&io, output, 2*(size+hd));
335 output -= hd;
336 vcioinit(&io, output, h
359 Vcchar_t *output, *dt; local
447 Vcchar_t *output, *dt; local
[all...]
H A Dvcstrip.c55 Vcchar_t *dt, *edt, *hdt, *tdt, *output; local
116 /* allocate output buffer */
118 if(!(output = vcbuffer(vc, NIL(Vcchar_t*), z, 0)) )
122 vcioinit(&io, output, z);
131 *out = (Void_t*)output;
146 Vcchar_t *hdt, *tdt, *dt, *output; local
171 if(!(output = vcbuffer(vc, NIL(Vcchar_t*), z, 0)) )
174 memcpy(output, hdt, hsz);
175 memcpy(output+hsz, dt, dsz);
176 memcpy(output
[all...]
H A Dvcrle.c40 Vcchar_t* obuf; /* default output data */
261 vcioputu(&io, n-1); /* output length of last run */
367 Vcchar_t *dt, *output, *space; local
397 if(!(output = space = vcbuffer(vc, NIL(Vcchar_t*), outsz+128, hd)) )
401 { rle->obuf = output + vcsizeu(size);
418 output = vcbuffer(vc, NIL(Vcchar_t*), sz, hd);
420 vcioinit(&io, output, sz);
435 { rle->obuf = output;
441 if(vcrecode(vc, &output, &sz, hd, 0) < 0 )
445 if(space != output) /* fre
474 Vcchar_t *output; local
[all...]
/ast/src/lib/libcmd/
H A Duname.c35 " standard output. When options are specified, one or more"
36 " system characteristics are written to standard output, space"
38 " the output is in the order specfied by the \b-A\b option below."
62 "[S:sethost?Set the hostname or nodename to \aname\a. No output is"
63 " written to standard output.]:[name]"
236 #define output(f,v,u) do \ macro
383 output(OPT_system, ut.sysname, "sysname");
390 output(OPT_nodename, s, "nodename");
392 output(OPT_release, ut.release, "release");
393 output(OPT_versio
[all...]
/ast/src/cmd/sortlib/vcodex/
H A Dvcodex.c31 "decodes input, output and temporary file data. By default temporary and "
32 "output encoding is the same as the encoding used on the first encoded "
33 "input file. Output encoding is only applied to the standard output or "
35 "a regular output file and the output file path does not have a suffix "
37 "output path is renamed by appending the input path suffix.]"
40 "[o:output?Encode the output file using \amethod\a. \b--nooutput\b "
41 "disables output encoding.]:[method]"
42 "[r:regress?Massage \bverbose\b output fo
80 Encoding_t output; member in struct:State_s
[all...]
/ast/src/lib/libvcodex/Vchuff/
H A Dvchuffman.c82 Vcchar_t *output, *dt, *enddt; local
111 /* set up buffer for output */
113 if(!(output = vcbuffer(vc, NIL(Vcchar_t*), s, 0)) )
115 vcioinit(&io, output, s);
126 { /* output the code tree */
138 dt = output;
140 if(vcrecode(vc, &output, &s, 0, 0) < 0 )
142 if(dt != output)
146 *out = output;
163 Vcchar_t *o, *endo, *output, *dat local
[all...]
H A Dvchuffpart.c170 Void_t** out; /* to return output buffer */
175 Vcchar_t *output, *dt; local
193 if(!(output = vcbuffer(vc, NIL(Vcchar_t*), n, 0)) )
195 vcioinit(&io, output, n);
206 dt = output;
208 if(vcrecode(vc, &output, &n, 0, 0) < 0)
210 if(dt != output) /* free unused buffers */
215 *out = output;
227 Void_t** out; /* to return output buffer */
230 Vcchar_t *output, *d local
[all...]
H A Dvchuffgroup.c437 Void_t** out; /* to return output buffer */
446 Vcchar_t *output, *dt; local
486 /* get space for output */
488 if(!(output = vcbuffer(vc, NIL(Vcchar_t*), n_output, 0)) )
490 vcioinit(&io, output, n_output);
496 /* output the coding tables and compute the coding bits */
510 /* compress and output the indices */
534 dt = output;
536 if(vcrecode(vc, &output, &n, 0, 0) < 0 )
538 if(dt != output)
560 Vcchar_t *part, *dt, *output, *o, *endo, *data; local
[all...]
/ast/src/cmd/ksh93/tests/
H A Dstatics.sh50 typeset output
52 output="$($SHELL -c "${cmd}" 2>&1 )"
54 [[ "${output}" == "${expected_output}" ]] || err_exit ${line_number} "${output} != ${expected_output}"
/ast/src/cmd/pack/
H A Dhuffdecode.c58 * decode <input> using huffman tree defined in <hp> onto <output>
64 Sfoff_t huffdecode(register Huff_t *hp,Sfio_t *input,Sfio_t *output,int size) argument
82 /* set up output buffers for faster access */
83 if(!(outp=outbuff=(unsigned char*)sfreserve(output,SF_UNBOUND,SF_LOCKR)))
84 return(sfvalue(output));
85 n = sfvalue(output);
139 if(sfwrite(output,outbuff,n)<0)
148 if(!(outp=outbuff=(unsigned char*)sfreserve(output,SF_UNBOUND,SF_LOCKR)))
150 n = sfvalue(output);
192 /* compute output cha
[all...]
/ast/src/cmd/ie/
H A Deditlib.c57 static int output = 0; variable
268 * flush the output queue and reset the output stream
280 if(output==fd)
282 if(io_ftable[fd]==io_ftable[output])
284 output = fd;
288 * flush the output if necessary and null terminate the buffer
293 register struct fileblk *fp = io_ftable[output];
297 if(write(output,fp->base,count) < 0)
312 register struct fileblk *fp = io_ftable[output];
[all...]
/ast/src/cmd/vczip/
H A Dvczip.c40 "and/or encodes the standard output. The \b--method\b option specifies "
64 "[o:output?Output data is written to \afile\a instead of the standard "
65 "output.]:[file]"
69 "\b--method\b transformation string on the standard output. "
75 "\b>\b to encode the output. Method arguments, if any, must be prefixed "
87 "more output.]:[level]"
92 "\n[ source ] < input > output\n"
236 * apply the codex and/or vcodex transforms to a single input/output pair
240 apply(int action, const char* vt, Vcsfdata_t* vcodexdisc, const char* ct, Codexdisc_t* codexdisc, const char* input, const char* source, const char* output, void* buf, size_t bufsize, Sfoff_t donez, Sfoff_t lastz) argument
264 * set up the sfio output strea
[all...]
/ast/src/lib/libtk/library/
H A Dconsole.tcl58 .console mark set output [.console index "end - 1 char"]
87 .console mark set output end
162 .console mark set output end
169 set temp [.console index output]
170 .console mark set output end
178 .console mark set output $temp
395 # dest - The output tag to be used: either "stderr" or "stdout".
399 .console insert output $string $dest
/ast/src/cmd/tw/
H A Dupdatedb.sh58 [o:output|codes?The path of the generated database.]:[dbfile:='${codes_default}$']
99 output="-"
144 o) output=$OPTARG
254 $show $su tw $options -F "$output" -G "$format" "$expr" $dirs
/ast/src/cmd/3d/
H A D3d.sh70 output.]#[level]
78 [o:output?\b--trace\b and \b--debug\b output is written to \afile\a instead
211 output=
246 o) output=$OPTARG ;;
268 case $output in
269 ?*) mount="$output /#fs/option $mount" ;;
/ast/src/cmd/sort/
H A Dmain.c44 "writes the result on the standard output. The file name \b-\b means the "
129 "ordering rules; give no output on the standard output. If the input "
143 "[o:output?Place output in the designated \afile\a instead of on the "
144 "standard output. This file may be the same as one of the inputs. The "
145 "\afile\a \b-\b names the standard output. The option may appear among "
146 "the file arguments, except after \b--\b.]:[output]"
160 "\astyle\a \blist\b lists a line on the standard output for each plugin "
180 "[+O?\bgzip\b(1) compress the output
[all...]
/ast/src/lib/libtk/generic/
H A DtkConsole.c206 * Writes the given output on the IO channel. Returns count of how
211 * error indication is returned in an output argument.
214 * Writes output on the actual channel.
600 Tcl_DString command, output;
623 Tcl_DStringInit(&output);
624 Tcl_DStringAppend(&output, buffer, size);
628 Tcl_DStringAppendElement(&command, output.string);
636 Tcl_DStringFree(&output);
587 Tcl_DString command, output; local
/ast/src/lib/libjcl/
H A Djcl.h146 Jcloutput_t* output; member in struct:Jclout_s
227 Dt_t* output; member in struct:Jcl_s
/ast/src/cmd/nmake/
H A Dppcc.sh239 eval output$nfile='$file'
310 "") eval output='$output'$n
312 1) echo + "$@" "$input" "$output" ;;
315 1) "$@" "$input" "$output" || exit ;;
366 eval arg='$output'$n
/ast/src/cmd/dsslib/netflow/
H A Dflow-tool.c78 u_int16 output; /* Output interface index */ member in struct:fts3rec_v1
105 u_int16 output; /* Output interface index */ member in struct:fts3rec_v5
133 u_int16 output; /* Output interface index */ member in struct:fts3rec_v6
151 u_int8 out_encaps; /* size in bytes of the output encapsulation */
165 u_int16 output; /* Output interface index */ member in struct:fts3rec_v7
374 rp->output = R1(fp)->output;
405 rp->output = R5(fp)->output;
442 rp->output
[all...]
/ast/src/lib/libsum/
H A Dsum-md5.c62 * encode input into output
67 md5_encode(register unsigned char* output, register UINT4* input, unsigned int len) argument
74 output[j] = (unsigned char)(input[i] & 0xff);
75 output[j+1] = (unsigned char)((input[i] >> 8) & 0xff);
76 output[j+2] = (unsigned char)((input[i] >> 16) & 0xff);
77 output[j+3] = (unsigned char)((input[i] >> 24) & 0xff);
82 * decode input into output
87 md5_decode(register UINT4* output, register unsigned char* input, unsigned int len) argument
93 output[i] = ((UINT4)input[j]) |

Completed in 168 milliseconds

123