Searched refs:input (Results 101 - 125 of 211) sorted by relevance

123456789

/osnet-11/usr/src/cmd/perl/5.8.4/distrib/pod/
H A Dpodchecker.PL79 The pathname of a POD file to syntax-check (defaults to standard input).
85 B<podchecker> will read the given input files looking for POD
H A Dpod2text.PL114 S<[B<-w> I<width>]> [I<input> [I<output>]]
124 I<input> is the file to read for POD source (the POD can be embedded in
125 code). If I<input> isn't given, it defaults to STDIN. I<output>, if given,
140 Include any non-POD text from the input file in the output as well. Useful
H A Dpod2man.PL38 # pod2man -- Convert POD data to formatted *roff input.
86 # Initialize and run the formatter, pulling a pair of input and output off at
100 pod2man - Convert POD data to formatted *roff input
109 [I<input> [I<output>] ...]
115 B<pod2man> is a front-end for Pod::Man, using it to generate *roff input
119 I<input> is the file to read for POD source (the POD can be embedded in
120 code). If I<input> isn't given, it defaults to STDIN. I<output>, if given,
124 times) by providing multiple pairs of I<input> and I<output> files on the
158 date of the input file will be used, or the current date if input come
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Pod/t/
H A DUsage.t37 -output => \*FAKEOUT, -input => $file });
44 -output => \*FAKEOUT, -input => $file,
58 "-input => q{$0}",
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Pod/
H A DSelect.pm20 Pod::Select, podselect() - extract selected sections of POD from input
45 ## Create a parser object for selecting POD sections from the input
74 pod documentation from an input stream. This ability is provided by the
296 corresponds to the most recently parsed paragraph of the input.
436 section heading title in the input.
489 responsible for keeping track of the current input section and
491 (but not yet processed) input paragraph.
540 POD sections in the given input files specified by C<@filelist>
558 sections and subsections to be selected from input. If no section
567 paragraphs to be selected from the desired input section
[all...]
H A DMan.pm1 # Pod::Man -- Convert POD data to formatted *roff input.
428 # input from stdin.
432 # input.
1147 Pod::Man - Convert POD data to formatted *roff input
1163 preferred language for documenting Perl) into *roff input using the man
1177 If no options are given, Pod::Man uses the name of the input file with any
1182 footer of the modification date of its input (or the current date if given
1183 STDIN for input).
1213 Sets the left-hand footer. By default, the modification date of the input
1215 case if the input i
[all...]
H A DUsage.pm102 =item C<-input>
110 A list of directory paths. If the input file does not exist, then it
365 B<This program> will read the given input file(s) and do something
372 By default, B<pod2usage()> will use C<$0> as the path to the pod input
380 pod2usage(-exitval => 2, -input => "/path/to/your/pod/docs");
477 ## Default the input file
478 $opts{"-input"} = $0 unless (defined $opts{"-input"});
480 ## Look up input file in path if it doesnt exist.
481 unless ((ref $opts{"-input"}) || (
[all...]
/osnet-11/usr/src/lib/libsasl/include/
H A Dsasl.h557 * prompt for input in response to a challenge.
558 * input:
577 * input:
720 * input:
736 * input:
1057 * inputlen & input -- client data
1069 * SASL_BADPROT -- invalid input from client
1229 * returning the input buffer if there is no security layer.
1232 * SASL_OK -- success (returns input if no layer negotiated)
1237 const char *input, unsigne
[all...]
/osnet-11/usr/src/lib/efcode/engine/
H A Dinterface.c245 env->input = MALLOC(sizeof (input_typ));
257 FREE(env->input);
H A Dforth.c2000 if (env->input) {
2001 here = env->input->scanptr;
2002 while (*here == env->input->separator) here++;
2003 next = strchr(here, env->input->separator);
2006 while (*next == env->input->separator) next++;
2011 env->input->scanptr = next;
2133 osep = env->input->separator;
2134 env->input->separator = '"';
2136 env->input->separator = osep;
2260 input_typ *old_input = env->input;
[all...]
/osnet-11/usr/src/grub/grub2/util/
H A Dgrub-solvers.c69 grub_md5_calc(void *output, const void *input, unsigned int inlen) argument
75 GRUB_MD_MD5->write (ctx, input, inlen);
/osnet-11/usr/src/lib/libnsl/xpol/
H A Dxpol_lib.c314 makerange(char *input, uint_t *min, uint_t *max, argument
317 char *p = strchr(input, '-');
323 *max = *min = atoi_range(input, minmin, maxmax, &err);
/osnet-11/usr/src/lib/libfuse/common/
H A Doptions.c236 * Scan the input into the value, according to the format. If the
241 fuse_opt_scan(const char *input, const char *format, void *value) argument
245 *cpp = libfuse_strdup(input);
249 if (sscanf(input, format, value) != 1)
256 * "apply" the given fuse_opt to the input. That is, if the offset is
/osnet-11/usr/src/grub/grub2/grub-core/gnulib/
H A Dregex_internal.c926 re_string_context_at (const re_string_t *input, Idx idx, int eflags)
930 /* In this case, we use the value stored in input->tip_context,
931 since we can't know the character in input->mbs[-1] here. */
932 return input->tip_context;
933 if (BE (idx == input->len, 0))
937 if (input->mb_cur_max > 1)
941 while(input->wcs[wc_idx] == WEOF)
949 return input->tip_context;
951 wc = input->wcs[wc_idx];
952 if (BE (input
925 re_string_context_at(const re_string_t *input, Idx idx, int eflags) argument
[all...]
H A Dregcomp.c57 static Idx fetch_number (re_string_t *input, re_token_t *token,
59 static int peek_token (re_token_t *token, re_string_t *input,
1771 fetch_token (re_token_t *result, re_string_t *input, reg_syntax_t syntax)
1773 re_string_skip_bytes (input, peek_token (result, input, syntax)); argument
1781 peek_token (re_token_t *token, re_string_t *input, reg_syntax_t syntax)
1785 if (re_string_eoi (input))
1791 c = re_string_peek_byte (input, 0);
1797 if (input->mb_cur_max > 1 &&
1798 !re_string_first_byte (input, re_string_cur_id
1763 fetch_token(re_token_t *result, re_string_t *input, reg_syntax_t syntax) argument
2012 peek_token_bracket(re_token_t *token, re_string_t *input, reg_syntax_t syntax) argument
3727 fetch_number(re_string_t *input, re_token_t *token, reg_syntax_t syntax) argument
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/t/io/
H A Dlayers.t188 check([ PerlIO::get_layers(F, input => 1) ],
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/
H A Duniversal.c570 bool input = TRUE; local
584 if (klen == 5 && memEQ(key, "input", 5)) {
585 input = SvTRUE(*valp);
591 input = !SvTRUE(*valp);
624 AV* av = PerlIO_get_layers(aTHX_ input ?
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Encode/bin/
H A Dpiconv107 "string" will be the input instead of STDIN or files
110 -C N | -c | -p check the validity of the input
/osnet-11/usr/src/lib/pkcs11/pkcs11_softtoken/common/
H A DsoftCrypt.h104 CK_BYTE_PTR input, CK_ULONG inputlen,
/osnet-11/usr/src/grub/grub2/grub-core/lib/libgcrypt/cipher/
H A Decc.c300 static gpg_err_code_t sign (gcry_mpi_t input, ECC_secret_key *skey,
302 static gpg_err_code_t verify (gcry_mpi_t input, ECC_public_key *pkey,
699 sign (gcry_mpi_t input, ECC_secret_key *skey, gcry_mpi_t r, gcry_mpi_t s)
739 mpi_addm (sum, input, dr, skey->E.n); /* sum = hash + (d*r) mod n */
760 verify (gcry_mpi_t input, ECC_public_key *pkey, gcry_mpi_t r, gcry_mpi_t s)
787 mpi_mulm (h1, input, h, pkey->E.n);
695 sign(gcry_mpi_t input, ECC_secret_key *skey, gcry_mpi_t r, gcry_mpi_t s) argument
756 verify(gcry_mpi_t input, ECC_public_key *pkey, gcry_mpi_t r, gcry_mpi_t s) argument
H A Ddes.c842 byte input[8] = local
852 des_ecb_encrypt (des, input, temp1);
857 memcpy (input, temp1, 8);
869 byte input[8] = local
883 tripledes_ecb_encrypt (des3, input, key1);
884 tripledes_ecb_decrypt (des3, input, key2);
885 tripledes_set3keys (des3, key1, input, key2);
886 tripledes_ecb_encrypt (des3, input, input);
888 if (memcmp (input, resul
[all...]
/osnet-11/usr/src/grub/grub2/grub-core/lib/libgcrypt-grub/cipher/
H A Decc.c300 static gpg_err_code_t sign (gcry_mpi_t input, ECC_secret_key *skey,
302 static gpg_err_code_t verify (gcry_mpi_t input, ECC_public_key *pkey,
699 sign (gcry_mpi_t input, ECC_secret_key *skey, gcry_mpi_t r, gcry_mpi_t s)
739 mpi_addm (sum, input, dr, skey->E.n); /* sum = hash + (d*r) mod n */
760 verify (gcry_mpi_t input, ECC_public_key *pkey, gcry_mpi_t r, gcry_mpi_t s)
787 mpi_mulm (h1, input, h, pkey->E.n);
695 sign(gcry_mpi_t input, ECC_secret_key *skey, gcry_mpi_t r, gcry_mpi_t s) argument
756 verify(gcry_mpi_t input, ECC_public_key *pkey, gcry_mpi_t r, gcry_mpi_t s) argument
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Text/
H A DBalanced.pm1151 The remainder of the input string (i.e. the characters after the
1161 Note that in a list context, the contents of the original input text (the first
1164 However, if the input text was passed in a variable, that variable's
1178 removed from the input text. Thus, the following code also processes
1186 Note that if the input text is a read-only string (i.e. a literal),
1219 C<extract_delimited> takes up to four scalars (the input text, the
1426 the remainder of the input text,
1438 failure. In addition, the original input text has the returned substring
1441 In a void context, the input text just has the matched substring (and
1561 the remainder of the input tex
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/x2p/
H A Ds2p.PL90 A stream editor reads the input stream consisting of the specified files
91 (or standard input, if none are given), processes is line by line by
93 to standard output. The filename `C<->' may be used to read standard input.
111 opened before input processing starts. Using B<-a>, opening of such
140 command to the selected line(s) of input.
145 The edit cycle performed on each input line consist of reading the line
155 arbitrarily to construct ranges. Lines are numbered across all input files.
168 A dollar sign (C<$>) is the line number of the last line of the input stream.
219 of input, either by executing the B<N> function or by beginning a new cycle.
351 output. Replace the pattern space with the next line of input
[all...]
/osnet-11/usr/src/lib/gss_mechs/mech_dh/backend/mech/
H A Dcontext_establish.c246 * and uses those keys to verifiy the signature over the input token
358 gss_buffer_t input, /* Input from initiator */
379 if (input == NULL)
415 * Deserialize the input into token, extracting the signature
417 * over the input token up to the signature.
420 if (*minor = __get_ap_token(input, &OID, &token, &sig)) {
810 /* Deserialize the input token into tok using the session keys */
354 __dh_gss_accept_sec_context( OM_uint32 *minor, gss_ctx_id_t *gss_ctx, gss_cred_id_t cred, gss_buffer_t input, gss_channel_bindings_t channel, gss_name_t *principal, gss_OID* mech, gss_buffer_t output, OM_uint32 *flags, OM_uint32 *expire, gss_cred_id_t *del_cred ) argument

Completed in 177 milliseconds

123456789