Searched refs:input (Results 151 - 175 of 574) sorted by relevance

1234567891011>>

/freebsd-11-stable/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-11-stable/sys/dev/drm2/i915/
H A Dintel_acpi.c36 ACPI_OBJECT_LIST input; local
42 input.Count = 4;
43 input.Pointer = params;
54 ret = AcpiEvaluateObject(handle, "_DSM", &input, &output);
142 ACPI_OBJECT_LIST input; local
147 input.Count = 4;
148 input.Pointer = params;
159 ret = AcpiEvaluateObject(intel_dsm_priv.dhandle, "_DSM", &input,
/freebsd-11-stable/crypto/openssl/crypto/des/
H A Decb_enc.c106 void DES_ecb_encrypt(const_DES_cblock *input, DES_cblock *output, argument
111 const unsigned char *in = &(*input)[0];
/freebsd-11-stable/contrib/wpa/wpa_supplicant/utils/
H A Dlog2pcap.py28 input = sys.argv[1]
34 input_file = open(input, 'r')
/freebsd-11-stable/contrib/apr/include/
H A Dapr_cstr.h65 /** Divide @a input into substrings, interpreting any char from @a sep
81 APR_DECLARE(apr_array_header_t *) apr_cstr_split(const char *input,
93 const char *input,
/freebsd-11-stable/contrib/sqlite3/tea/
H A Dconfigure.ac2 dnl This file is an input file used by the GNU "autoconf" program to
/freebsd-11-stable/sys/kern/
H A Dmd4c.c111 MD4Update(MD4_CTX *context, const unsigned char *input, argument
128 bcopy(input, &context->buffer[index], partLen);
132 MD4Transform (context->state, &input[i]);
139 /* Buffer remaining input */
140 bcopy(&input[i], &context->buffer[index], inputLen-i);
253 /* Encodes input (UINT4) into output (unsigned char). Assumes len is
257 Encode(unsigned char *output, UINT4 *input, unsigned int len) argument
262 output[j] = (unsigned char)(input[i] & 0xff);
263 output[j+1] = (unsigned char)((input[i] >> 8) & 0xff);
264 output[j+2] = (unsigned char)((input[
273 Decode(UINT4 *output, const unsigned char *input, unsigned int len) argument
[all...]
H A Dmd5c.c55 * Encodes input (u_int32_t) into output (unsigned char). Assumes len is
60 Encode (unsigned char *output, u_int32_t *input, unsigned int len) argument
66 ip = input[i];
75 * Decodes input (unsigned char) into output (u_int32_t). Assumes len is
80 Decode (u_int32_t *output, const unsigned char *input, unsigned int len) argument
85 *output++ = input[i] | (input[i+1] << 8) | (input[i+2] << 16) |
86 (input[i+3] << 24);
160 const unsigned char *input local
[all...]
/freebsd-11-stable/contrib/subversion/subversion/svnfsfs/
H A Dload-index-cmd.c131 svn_stream_t *input,
149 /* Get the next line from the input and stop if there is none. */
151 SVN_ERR(svn_stream_readline(input, &line, "\n", &eol, iterpool));
191 svn_stream_t *input; local
193 SVN_ERR(svn_stream_for_stdin2(&input, TRUE, pool));
194 SVN_ERR(load_index(opt_state->repository_path, input, pool));
130 load_index(const char *path, svn_stream_t *input, apr_pool_t *pool) argument
/freebsd-11-stable/crypto/openssl/crypto/sha/asm/
H A Dsha512-ia64.pl130 input=r56; // 2nd arg
146 { .mmi; $ADDP input=0,r33 // 2nd arg
173 { .mii; and r8=7,input
174 and input=~7,input;;
187 { .mmi; ld1 X[15]=[input],$SZ // eliminated in sha512
200 add r9=1-$SZ,input
205 { .mmi; add r8=1*$SZ,input
206 add r9=2*$SZ,input
207 add r10=3*$SZ,input };;
[all...]
/freebsd-11-stable/contrib/byacc/test/
H A Drun_test.sh141 for input in ${TEST_DIR}/*.y
143 case $input in
145 echo "?? ignored $input"
148 root=`basename $input .y`
156 case $input in
190 echo "** testing $input"
205 $YACC $OPTS $opt2 -v -d $output $prefix -b $ROOT${opt2} $input 2>$error
/freebsd-11-stable/contrib/subversion/subversion/libsvn_client/
H A Dcat.c68 svn_stream_t *input;
90 SVN_ERR(svn_wc_get_pristine_contents2(&input, wc_ctx, local_abspath,
92 if (input == NULL)
104 SVN_ERR(svn_stream_open_readonly(&input, local_abspath, scratch_pool,
170 input = svn_subst_stream_translated(
171 input,
175 *normal_stream = input;
66 svn_stream_t *input; local
/freebsd-11-stable/crypto/heimdal/lib/gssapi/mech/
H A Dgss_accept_sec_context.c99 choose_mech(const gss_buffer_t input, gss_OID mech_oid) argument
108 status = parse_header(input, mech_oid);
116 if (input->length > 8 &&
117 memcmp((const char *)input->value, "NTLMSSP\x00", 8) == 0)
121 } else if (input->length != 0 &&
122 ((const char *)input->value)[0] == 0x6E)
127 } else if (input->length == 0) {
182 * parse the input token to figure out the mechanism to use.
/freebsd-11-stable/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) {
184 * parse the input token to figure out the mechanism to use.
/freebsd-11-stable/contrib/llvm-project/llvm/lib/TextAPI/MachO/
H A DTextStubCommon.cpp25 StringRef ScalarTraits<FlowStringRef>::input(StringRef Value, void *Ctx, function in class:llvm::yaml::ScalarTraits
27 return ScalarTraits<StringRef>::input(Value, Ctx, Out.value);
80 StringRef ScalarTraits<PlatformSet>::input(StringRef Scalar, void *IO, function in class:llvm::yaml::ScalarTraits
132 StringRef ScalarTraits<Architecture>::input(StringRef Scalar, void *, function in class:llvm::yaml::ScalarTraits
145 StringRef ScalarTraits<PackedVersion>::input(StringRef Scalar, void *, function in class:llvm::yaml::ScalarTraits
175 StringRef ScalarTraits<SwiftVersion>::input(StringRef Scalar, void *IO, function in class:llvm::yaml::ScalarTraits
209 StringRef ScalarTraits<UUID>::input(StringRef Scalar, void *, UUID &Value) { function in class:llvm::yaml::ScalarTraits
/freebsd-11-stable/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...]
/freebsd-11-stable/contrib/apr/time/unix/
H A Dtime.c67 time_t input)
69 *result = (apr_time_t)input * APR_USEC_PER_SEC;
113 apr_time_t input, apr_int32_t offs)
115 explode_time(result, input, offs, 0);
121 apr_time_t input)
123 return apr_time_exp_tz(result, input, 0);
127 apr_time_t input)
131 return apr_time_exp_tz(result, input, -timezone);
133 explode_time(result, input, 0, 1);
/freebsd-11-stable/contrib/netbsd-tests/ipf/
H A Dt_pools.sh36 mkdir input
37 cp $(atf_get_srcdir)/input/ip2.data input/
/freebsd-11-stable/crypto/heimdal/lib/krb5/
H A Dmit_glue.c47 const krb5_data *input,
58 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
43 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
360 krb5_c_prf(krb5_context context, const krb5_keyblock *key, const krb5_data *input, krb5_data *output) argument
[all...]
/freebsd-11-stable/crypto/heimdal/lib/sl/
H A Dslc-lex.l94 while((c = input()) != EOF) {
130 while((c = input()) != EOF){
/freebsd-11-stable/gnu/usr.bin/gperf/
H A DMakefile9 SRCS= bool-array.cc hash-table.cc input.cc keyword-list.cc keyword.cc \
/freebsd-11-stable/tools/test/hwpmc/
H A Dpmctest.py54 # Use input() for Python version 3
56 raw_input = input
/freebsd-11-stable/contrib/amd/amd/
H A Dsun_map_tok.l91 * The flex scanner uses the YY_INPUT to parse the input.
112 * We can parse strings by redefining input and unput.
114 #undef input
116 #define input() (*(char *)sun_map_tok_buff++)
/freebsd-11-stable/crypto/openssh/
H A Dchacha.h16 u_int input[16]; member in struct:chacha_ctx
/freebsd-11-stable/usr.bin/mail/
H A Dglob.h53 extern FILE *input; /* Current command input file */

Completed in 396 milliseconds

1234567891011>>