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

1234567891011>>

/freebsd-9.3-release/contrib/opie/libopie/
H A Dmd5c.c80 * Encodes input (UINT4) into output (unsigned char).
83 static VOIDRET EEncode FUNCTION((output, input, len), unsigned char *output AND UINT4 *input AND unsigned int len)
88 output[j] = (unsigned char) (input[i] & 0xff);
89 output[j + 1] = (unsigned char) ((input[i] >> 8) & 0xff);
90 output[j + 2] = (unsigned char) ((input[i] >> 16) & 0xff);
91 output[j + 3] = (unsigned char) ((input[i] >> 24) & 0xff);
96 * Decodes input (unsigned char) into output (UINT4).
99 static VOIDRET EDecode FUNCTION((output, input, len), UINT4 *output AND unsigned char *input AN
[all...]
/freebsd-9.3-release/sys/kern/
H A Dmd4c.c110 void MD4Update (context, input, inputLen)
112 const unsigned char *input; /* input block */
113 unsigned int inputLen; /* length of input block */
129 bcopy(input, &context->buffer[index], partLen);
133 MD4Transform (context->state, &input[i]);
140 /* Buffer remaining input */
141 bcopy(&input[i], &context->buffer[index], inputLen-i);
256 /* Encodes input (UINT4) into output (unsigned char). Assumes len is
259 static void Encode (output, input, le
[all...]
/freebsd-9.3-release/crypto/heimdal/lib/krb5/
H A Dmit_glue.c46 const krb5_data *input,
57 input->data, input->length, cksum);
209 krb5_enc_data *input,
215 ret = krb5_crypto_init(context, &key, input->enctype, &crypto);
235 input->ciphertext.data, input->ciphertext.length,
249 const krb5_data *input,
275 input->data, input
42 krb5_c_make_checksum(krb5_context context, krb5_cksumtype cksumtype, const krb5_keyblock *key, krb5_keyusage usage, const krb5_data *input, krb5_checksum *cksum) argument
205 krb5_c_decrypt(krb5_context context, const krb5_keyblock key, krb5_keyusage usage, const krb5_data *ivec, krb5_enc_data *input, krb5_data *output) argument
245 krb5_c_encrypt(krb5_context context, const krb5_keyblock *key, krb5_keyusage usage, const krb5_data *ivec, const krb5_data *input, krb5_enc_data *output) argument
353 krb5_c_prf(krb5_context context, const krb5_keyblock *key, const krb5_data *input, krb5_data *output) argument
[all...]
/freebsd-9.3-release/contrib/gcc/
H A Dopts-common.c33 multiple sub-matches can occur, e.g. input of "-pedantic" matching
52 find_opt (const char *input, int lang_mask) argument
62 cl_options[mn] <= input < cl_options[mn + 1]. */
67 comp = strncmp (input, cl_options[md].opt_text + 1, opt_len);
86 /* Is the input either an exact match or a prefix that takes a
88 if (!strncmp (input, opt->opt_text + 1, opt->opt_len)
89 && (input[opt->opt_len] == '\0' || (opt->flags & CL_JOINED)))
H A Dopts.h84 /* The count of input filenames. */
88 size_t find_opt (const char *input, int lang_mask);
/freebsd-9.3-release/contrib/telnet/libtelnet/
H A Dencrypt.h88 int (*input)(int); member in struct:__anon4217
/freebsd-9.3-release/crypto/heimdal/appl/telnet/libtelnet/
H A Dencrypt.h81 int (*input) (int); member in struct:__anon4555
/freebsd-9.3-release/crypto/openssh/
H A Dchacha.h15 u_int input[16]; member in struct:chacha_ctx
/freebsd-9.3-release/gnu/usr.bin/groff/src/roff/troff/
H A DMakefile4 SRCS= dictionary.cpp div.cpp env.cpp input.cpp \
/freebsd-9.3-release/lib/libmd/
H A Dmd2c.c104 const void *in; /* input block */
105 unsigned int inputLen; /* length of input block */
108 const unsigned char *input = in; local
120 ((POINTER)&context->buffer[idx], (POINTER)input, partLen);
124 MD2Transform (context->state, context->checksum, &input[i]);
131 /* Buffer remaining input */
133 ((POINTER)&context->buffer[idx], (POINTER)&input[i],
H A Dmd4c.c112 const void *in; /* input block */
113 unsigned int inputLen; /* length of input block */
116 const unsigned char *input = in; local
131 ((POINTER)&context->buffer[idx], (CONST_POINTER)input, partLen);
135 MD4Transform (context->state, &input[i]);
142 /* Buffer remaining input */
144 ((POINTER)&context->buffer[idx], (CONST_POINTER)&input[i],
260 /* Encodes input (UINT4) into output (unsigned char). Assumes len is
263 static void Encode (output, input, len)
265 UINT4 *input;
[all...]
/freebsd-9.3-release/contrib/ntp/sntp/libevent/include/event2/
H A Dbufferevent_struct.h86 /** An input buffer. Only the bufferevent is allowed to add data to
88 struct evbuffer *input; member in struct:bufferevent
90 /** An input buffer. Only the bufferevent is allowed to drain data
/freebsd-9.3-release/crypto/openssl/demos/engines/zencod/
H A Dhw_zencod.h110 /* input : input data buffer */
113 * typedef int t_zencod_hash ( KEY *output, const KEY *input, int algo ) ;
114 * typedef int t_zencod_sha_hash ( KEY *output, const KEY *input, int algo ) ;
118 typedef int t_zencod_md5_update(ZEN_MD_DATA *data, const KEY * input);
122 typedef int t_zencod_sha1_update(ZEN_MD_DATA *data, const KEY * input);
129 /* input : input data buffer */
137 typedef int t_zencod_rc4_cipher(KEY * output, const KEY * input,
142 /* input
[all...]
/freebsd-9.3-release/sbin/restore/
H A Dinteractive.c307 static char input[BUFSIZ]; local
309 # define rawname input /* save space by reusing input buffer */
324 if (fgets(input, BUFSIZ, terminal) == NULL) {
328 } while (input[0] == '\n');
329 for (cp = &input[strlen(input) - 2]; *cp == ' ' || *cp == '\t'; cp--)
335 cp = copynext(input, cmd);
392 * Strip off the next token of the input.
395 copynext(char *input, cha argument
[all...]
/freebsd-9.3-release/crypto/openssl/crypto/des/
H A Ddes.h132 void DES_ecb3_encrypt(const_DES_cblock *input, DES_cblock *output,
135 DES_LONG DES_cbc_cksum(const unsigned char *input, DES_cblock *output,
139 void DES_cbc_encrypt(const unsigned char *input, unsigned char *output,
142 void DES_ncbc_encrypt(const unsigned char *input, unsigned char *output,
145 void DES_xcbc_encrypt(const unsigned char *input, unsigned char *output,
152 void DES_ecb_encrypt(const_DES_cblock *input, DES_cblock *output,
181 void DES_ede3_cbc_encrypt(const unsigned char *input, unsigned char *output,
216 void DES_pcbc_encrypt(const unsigned char *input, unsigned char *output,
219 DES_LONG DES_quad_cksum(const unsigned char *input, DES_cblock output[],
/freebsd-9.3-release/contrib/ipfilter/test/
H A Ddotest624 echo "$rule" | ../ipftest -F $format -6br - -i input/$1 >> results/$1;
H A Dhextest16 echo "$rule" | ../ipftest -br - -F hex -i input/$1 >> results/$1;
H A Dmhtest19 ../ipftest -br regress/$1 -F hex -i input/$1 > results/$1
H A Dmtest21 ../ipftest -F $format -Rbr regress/$1 -i input/$1 > results/$1
H A Dnattest31 echo "$rule" | ../ipftest $format -RbN - -i input/$1 >> results/$1;
/freebsd-9.3-release/contrib/ntp/sntp/libevent/
H A Dbufferevent_pair.c141 evbuffer_freeze(downcast(bufev1)->input, 0);
143 evbuffer_freeze(downcast(bufev2)->input, 0);
160 evbuffer_unfreeze(dst->input, 0);
163 dst_size = evbuffer_get_length(dst->input);
166 evbuffer_remove_buffer(src->output, dst->input, n);
171 evbuffer_add_buffer(dst->input, src->output);
175 evbuffer_add_buffer(dst->input, src->output);
191 evbuffer_freeze(dst->input, 0);
/freebsd-9.3-release/sys/dev/ixgbe/
H A Dixgbe_82599.c863 /* Set autoneg_advertised value based on input link speed */
895 /* Set autoneg_advertised value based on input link speed */
1143 /* Setup the PHY according to input speed */
1553 * @stream: input bitstream to compute the hash on
1561 u32 ixgbe_atr_compute_sig_hash_82599(union ixgbe_atr_hash_dword input, argument
1568 flow_vm_vlan = IXGBE_NTOHL(input.dword);
1620 * @input: unique input dword
1621 * @common: compressed common input dword
1625 union ixgbe_atr_hash_dword input,
1624 ixgbe_fdir_add_signature_filter_82599(struct ixgbe_hw *hw, union ixgbe_atr_hash_dword input, union ixgbe_atr_hash_dword common, u8 queue) argument
1690 ixgbe_atr_compute_perfect_hash_82599(union ixgbe_atr_input *input, union ixgbe_atr_input *input_mask) argument
1900 ixgbe_fdir_write_perfect_filter_82599(struct ixgbe_hw *hw, union ixgbe_atr_input *input, u16 soft_id, u8 queue) argument
1959 ixgbe_fdir_erase_perfect_filter_82599(struct ixgbe_hw *hw, union ixgbe_atr_input *input, u16 soft_id) argument
2013 ixgbe_fdir_add_perfect_filter_82599(struct ixgbe_hw *hw, union ixgbe_atr_input *input, union ixgbe_atr_input *input_mask, u16 soft_id, u8 queue) argument
[all...]
/freebsd-9.3-release/crypto/openssl/crypto/sha/asm/
H A Dsha512-ia64.pl124 input=r48; // 2nd arg
141 { .mmi; $ADDP input=0,r33 // 2nd arg
170 { .mii; and r8=7,input
171 and input=~7,input;;
192 { .mmi; ld1 X[15]=[input],$SZ // eliminated in 64-bit
200 { .mmi; add r9=1-$SZ,input
201 add r10=2-$SZ,input
202 add r11=3-$SZ,input };;
218 { .mmi; (p16) ld1 X[15-1]=[input],
[all...]
/freebsd-9.3-release/lib/libgssapi/
H A Dgss_accept_sec_context.c108 choose_mech(const gss_buffer_t input, gss_OID mech_oid) argument
117 status = parse_header(input, mech_oid);
125 if (input->length > 8 &&
126 memcmp((const char *)input->value, "NTLMSSP\x00", 8) == 0)
130 } else if (input->length != 0 &&
131 ((const char *)input->value)[0] == 0x6E)
136 } else if (input->length == 0) {
185 * parse the input token to figure out the mechanism to use.
/freebsd-9.3-release/contrib/pf/libevent/
H A Devbuffer.c68 * This callback is executed when the size of the input buffer changes.
109 res = evbuffer_read(bufev->input, fd, howmuch);
126 len = EVBUFFER_LENGTH(bufev->input);
130 struct evbuffer *buf = bufev->input;
230 if ((bufev->input = evbuffer_new()) == NULL) {
236 evbuffer_free(bufev->input);
279 evbuffer_free(bufev->input);
322 struct evbuffer *buf = bufev->input;
398 bufferevent_read_pressure_cb(bufev->input,
399 0, EVBUFFER_LENGTH(bufev->input), bufe
[all...]

Completed in 154 milliseconds

1234567891011>>