Home
last modified time | relevance | path

Searched refs:out (Results 1 – 25 of 1921) sorted by relevance

12345678910>>...77

/dragonfly/crypto/libressl/crypto/lhash/
H A Dlh_stats.c73 lh_stats(LHASH *lh, FILE *out) in lh_stats() argument
81 fprintf(out, "num_contract_reallocs = %lu\n", in lh_stats()
101 lh_node_stats(LHASH *lh, FILE *out) in lh_node_stats() argument
109 fprintf(out, "node %6u -> %3u\n", i, num); in lh_node_stats()
114 lh_node_usage_stats(LHASH *lh, FILE *out) in lh_node_usage_stats() argument
130 fprintf(out, "%lu items\n", total); in lh_node_usage_stats()
186 lh_stats_bio(const _LHASH *lh, BIO *out) in lh_stats_bio() argument
192 BIO_printf(out, "num_expand_reallocs = %lu\n", in lh_stats_bio()
215 lh_node_stats_bio(const _LHASH *lh, BIO *out) in lh_node_stats_bio() argument
223 BIO_printf(out, "node %6u -> %3u\n", i, num); in lh_node_stats_bio()
[all …]
/dragonfly/crypto/libressl/ssl/
H A Dbs_cbs.c163 *out = result; in cbs_get_u()
175 *out = *v; in CBS_get_u8()
187 *out = v; in CBS_get_u16()
289 *out = result; in cbs_peek_u()
301 *out = *v; in CBS_peek_u8()
313 *out = v; in CBS_peek_u16()
365 if (out == NULL) in cbs_get_any_asn1_element_internal()
501 *out = 0; in CBS_get_asn1_uint64()
522 *out <<= 8; in CBS_get_asn1_uint64()
605 *out = 0; in CBS_get_optional_asn1_bool()
[all …]
/dragonfly/crypto/libressl/crypto/bytestring/
H A Dbs_cbs.c163 *out = result; in cbs_get_u()
175 *out = *v; in CBS_get_u8()
187 *out = v; in CBS_get_u16()
289 *out = result; in cbs_peek_u()
301 *out = *v; in CBS_peek_u8()
313 *out = v; in CBS_peek_u16()
365 if (out == NULL) in cbs_get_any_asn1_element_internal()
501 *out = 0; in CBS_get_asn1_uint64()
522 *out <<= 8; in CBS_get_asn1_uint64()
605 *out = 0; in CBS_get_optional_asn1_bool()
[all …]
/dragonfly/bin/dd/
H A Ddd.c189 out.dbp = out.db; in setup()
203 if (ftruncate(out.fd, out.offset * out.dbsz) == -1) in setup()
458 if (ddflags & C_OSYNC && out.dbcnt && out.dbcnt < out.dbsz) { in dd_close()
460 memset(out.dbp, fill_char, out.dbsz - out.dbcnt); in dd_close()
462 memset(out.dbp, ' ', out.dbsz - out.dbcnt); in dd_close()
464 memset(out.dbp, 0, out.dbsz - out.dbcnt); in dd_close()
465 out.dbcnt = out.dbsz; in dd_close()
512 for (n = force ? out.dbcnt : out.dbsz;; n = out.dbsz) { in dd_out()
575 if ((out.dbcnt -= n) < out.dbsz) in dd_out()
581 memmove(out.db, out.dbp - out.dbcnt, out.dbcnt); in dd_out()
[all …]
H A Dposition.c168 if (lseek(out.fd, seek_offset(&out), SEEK_CUR) == -1 && in pos_out()
170 err(1, "%s", out.name); in pos_out()
175 if (out.offset < 0) in pos_out()
179 if (out.flags & NOREAD) { in pos_out()
184 err(1, "%s", out.name); in pos_out()
190 if ((n = read(out.fd, out.db, out.dbsz)) > 0) in pos_out()
194 err(1, "%s", out.name); in pos_out()
204 err(1, "%s", out.name); in pos_out()
207 n = write(out.fd, out.db, out.dbsz); in pos_out()
209 err(1, "%s", out.name); in pos_out()
[all …]
H A Dconv.c65 out.dbp = in.dbp; in def()
77 in.dbp = out.dbp; in def()
177 out.dbp += cbsz; in block()
178 if ((out.dbcnt += cbsz) >= out.dbsz) in block()
180 outp = out.dbp; in block()
201 out.dbcnt += cbsz; in block_close()
234 out.dbp += cnt; in unblock()
235 out.dbcnt += cnt; in unblock()
238 if (++out.dbcnt >= out.dbsz) in unblock()
259 out.dbp += cnt; in unblock_close()
[all …]
/dragonfly/crypto/libressl/crypto/asn1/
H A Dtasn_prn.c208 parg.out = out; in asn1_item_print_ctx()
264 if (BIO_printf(out, in asn1_item_print_ctx()
285 if (BIO_puts(out, "\n") <= 0) in asn1_item_print_ctx()
407 if (BIO_puts(out, fname) <= 0) in asn1_print_fsname()
415 if (BIO_puts(out, sname) <= 0) in asn1_print_fsname()
419 if (BIO_write(out, ": ", 2) != 2) in asn1_print_fsname()
443 if (BIO_puts(out, str) <= 0) in asn1_print_boolean_ctx()
456 if (BIO_puts(out, s) <= 0) in asn1_print_integer_ctx()
546 if (BIO_puts(out, pname) <= 0) in asn1_primitive_print()
548 if (BIO_puts(out, ":") <= 0) in asn1_primitive_print()
[all …]
H A Dt_crl.c88 X509_CRL_print(BIO *out, X509_CRL *x) in X509_CRL_print() argument
107 BIO_printf(out, "%8sIssuer: %s\n", "", p); in X509_CRL_print()
109 BIO_printf(out, "%8sLast Update: ", ""); in X509_CRL_print()
111 BIO_printf(out, "\n%8sNext Update: ", ""); in X509_CRL_print()
115 BIO_printf(out, "NONE"); in X509_CRL_print()
116 BIO_printf(out, "\n"); in X509_CRL_print()
124 BIO_printf(out, "Revoked Certificates:\n"); in X509_CRL_print()
130 BIO_printf(out, " Serial Number: "); in X509_CRL_print()
131 i2a_ASN1_INTEGER(out, r->serialNumber); in X509_CRL_print()
133 ASN1_TIME_print(out, r->revocationDate); in X509_CRL_print()
[all …]
H A Dtasn_enc.c109 if (out && !*out) { in asn1_item_flags_i2d()
120 *out = buf; in asn1_item_flags_i2d()
239 if (!out) in ASN1_item_ex_i2d()
254 ASN1_put_eoc(out); in ASN1_item_ex_i2d()
363 if (!out) in asn1_template_ex_i2d()
376 ASN1_put_eoc(out); in asn1_template_ex_i2d()
393 if (out) { in asn1_template_ex_i2d()
477 p = *out; in asn1_set_seq_out()
482 *out = p; in asn1_set_seq_out()
541 if (out) { in asn1_i2d_ex_primitive()
[all …]
/dragonfly/crypto/libressl/crypto/ct/
H A Dct_prn.c84 BIO_printf(out, "%*s", indent, ""); in BIO_hex_string()
86 BIO_printf(out, "%02X:", data[i]); in BIO_hex_string()
90 BIO_printf(out, "\n"); in BIO_hex_string()
94 BIO_printf(out, "%*s", indent, ""); in BIO_hex_string()
107 BIO_printf(out, "%s", OBJ_nid2ln(nid)); in SCT_signature_algorithms_print()
126 ASN1_GENERALIZEDTIME_print(out, gen); in timestamp_print()
169 BIO_printf(out, "v1 (0x0)"); in SCT_print()
180 timestamp_print(sct->timestamp, out); in SCT_print()
184 BIO_printf(out, "none"); in SCT_print()
204 SCT_print(sct, out, indent, log_store); in SCT_LIST_print()
[all …]
/dragonfly/crypto/libressl/crypto/modes/
H A Dcbc128.c82 (*block)(out, out, key); in CRYPTO_cbc128_encrypt()
83 iv = out; in CRYPTO_cbc128_encrypt()
86 out += 16; in CRYPTO_cbc128_encrypt()
93 (*block)(out, out, key); in CRYPTO_cbc128_encrypt()
94 iv = out; in CRYPTO_cbc128_encrypt()
97 out += 16; in CRYPTO_cbc128_encrypt()
106 (*block)(out, out, key); in CRYPTO_cbc128_encrypt()
107 iv = out; in CRYPTO_cbc128_encrypt()
111 out += 16; in CRYPTO_cbc128_encrypt()
136 out += 16; in CRYPTO_cbc128_decrypt()
[all …]
/dragonfly/contrib/gcc-8.0/libiberty/
H A Drust-demangle.c246 char *out; in rust_demangle_sym() local
253 out = sym; in rust_demangle_sym()
260 if (!(unescape (&in, &out, "$C$", ',') in rust_demangle_sym()
290 *out++ = *in++; in rust_demangle_sym()
296 *out++ = ':'; in rust_demangle_sym()
297 *out++ = ':'; in rust_demangle_sym()
303 *out++ = '-'; in rust_demangle_sym()
320 *out++ = *in++; in rust_demangle_sym()
331 *out = '\0'; in rust_demangle_sym()
342 **out = value; in unescape()
[all …]
/dragonfly/usr.bin/time/
H A Dtime.c73 FILE *out = stderr; in main() local
167 fprintf(out, "%10ld %s\n", in main()
169 fprintf(out, "%10ld %s\n", in main()
171 fprintf(out, "%10ld %s\n", in main()
173 fprintf(out, "%10ld %s\n", in main()
175 fprintf(out, "%10ld %s\n", in main()
232 fprintf(out, "\t"); in humantime()
236 fprintf(out, "%ldh", hrs); in humantime()
267 fprintf(out, " real\t"); in showtime()
269 fprintf(out, " user\t"); in showtime()
[all …]
/dragonfly/crypto/libressl/apps/openssl/
H A Decparam.c259 BIO *in = NULL, *out = NULL; in ecparam_main() local
281 out = BIO_new(BIO_s_file()); in ecparam_main()
467 BIO_printf(out, "\n\n"); in ecparam_main()
509 BIO_printf(out, "err:\n"); in ecparam_main()
515 BIO_printf(out, "\t\t{\n"); in ecparam_main()
518 BIO_printf(out, "\t\t}\n"); in ecparam_main()
579 BIO_free_all(out); in ecparam_main()
591 BIO_printf(out, "\n\t0x00"); in ecparam_print_var()
598 BIO_printf(out, "\n\t"); in ecparam_print_var()
602 BIO_printf(out, "\n\t"); in ecparam_print_var()
[all …]
/dragonfly/tools/regression/lib/libm/
H A Dtest-nearbyint.c83 double out; in get_output() local
93 out = tests[testindex].out[rmodeindex]; in get_output()
94 return (negative ? -out : out); in get_output()
100 float in, out; in test_nearby() local
108 out = get_output(testindex, i, 0); in test_nearby()
110 assert(fpequal(out, nearbyint(in))); in test_nearby()
115 out = get_output(testindex, i, 1); in test_nearby()
117 assert(fpequal(out, nearbyint(in))); in test_nearby()
128 float in, out; in test_modf() local
140 out = copysignf( in test_modf()
[all …]
/dragonfly/crypto/libressl/include/openssl/
H A Dmodes.h16 unsigned char out[16],
19 typedef void (*cbc128_f)(const unsigned char *in, unsigned char *out,
23 typedef void (*ctr128_f)(const unsigned char *in, unsigned char *out,
101 const unsigned char *in, unsigned char *out,
104 const unsigned char *in, unsigned char *out,
107 const unsigned char *in, unsigned char *out,
110 const unsigned char *in, unsigned char *out,
126 const unsigned char *inp, unsigned char *out, size_t len);
128 const unsigned char *inp, unsigned char *out, size_t len);
130 const unsigned char *inp, unsigned char *out, size_t len,
[all …]
/dragonfly/contrib/gcc-4.7/libcpp/
H A Dtraditional.c227 pfile->out.cur = out; in skip_whitespace()
229 out = pfile->out.cur; in skip_whitespace()
237 pfile->out.cur = out; in skip_whitespace()
256 len = out - pfile->out.cur; in lex_identifier()
259 pfile->out.cur = out; in lex_identifier()
376 out = pfile->out.cur; in _cpp_scan_out_logical_line()
410 pfile->out.cur = out - 1; in _cpp_scan_out_logical_line()
456 pfile->out.cur = out; in _cpp_scan_out_logical_line()
458 out = pfile->out.cur; in _cpp_scan_out_logical_line()
481 out = pfile->out.cur; in _cpp_scan_out_logical_line()
[all …]
/dragonfly/contrib/lvm2/dist/test/
H A Dt-inconsistent-metadata.sh24 lvs -o lv_name,lv_size --units k $vg | tee lvs.out
25 grep resized lvs.out | not grep 8192
32 grep resized lvs.out | grep 8192
37 vgscan 2>&1 | tee cmd.out
39 vgscan 2>&1 | tee cmd.out
45 vgdisplay 2>&1 | tee cmd.out
47 vgdisplay 2>&1 | tee cmd.out
53 lvs 2>&1 | tee cmd.out
55 vgdisplay 2>&1 | tee cmd.out
61 vgs 2>&1 | tee cmd.out
[all …]
/dragonfly/contrib/zlib-1.2/
H A Dinffast.c84 out = strm->next_out;
85 beg = out - (start - strm->avail_out);
86 end = out + (strm->avail_out - 257);
188 *out++ = 0;
240 *out++ = *from++;
241 *out++ = *from++;
242 *out++ = *from++;
246 *out++ = *from++;
290 } while (in < last && out < end);
300 strm->next_out = out;
[all …]
/dragonfly/lib/libc/yp/
H A Dxdryp.c63 struct ypresp_all out; in xdr_ypresp_all_seq() local
68 bzero(&out, sizeof out); in xdr_ypresp_all_seq()
70 if (!xdr_ypresp_all(xdrs, &out)) { in xdr_ypresp_all_seq()
71 xdr_free((xdrproc_t)xdr_ypresp_all, &out); in xdr_ypresp_all_seq()
75 if (out.more == 0) { in xdr_ypresp_all_seq()
76 xdr_free((xdrproc_t)xdr_ypresp_all, &out); in xdr_ypresp_all_seq()
80 status = out.ypresp_all_u.val.stat; in xdr_ypresp_all_seq()
85 out.ypresp_all_u.val.key.keydat_len); in xdr_ypresp_all_seq()
89 out.ypresp_all_u.val.val.valdat_len); in xdr_ypresp_all_seq()
91 xdr_free((xdrproc_t)xdr_ypresp_all, &out); in xdr_ypresp_all_seq()
[all …]
/dragonfly/crypto/openssh/
H A Dauthfd.c197 out: in ssh_request_reply_decode()
230 out: in ssh_lock_agent()
254 out: in deserialise_identity2()
329 out: in ssh_fetch_identitylist()
450 out: in ssh_agent_sign()
481 out: in encode_dest_constraint_hop()
502 out: in encode_dest_constraint()
556 out: in encode_constraints()
617 out: in ssh_add_identity_constrained()
652 out: in ssh_remove_identity()
[all …]
/dragonfly/contrib/gcc-8.0/libcpp/
H A Dtraditional.c239 pfile->out.cur = out; in skip_whitespace()
241 out = pfile->out.cur; in skip_whitespace()
249 pfile->out.cur = out; in skip_whitespace()
268 len = out - pfile->out.cur; in lex_identifier()
271 pfile->out.cur = out; in lex_identifier()
413 out = pfile->out.cur; in _cpp_scan_out_logical_line()
448 pfile->out.cur = out - 1; in _cpp_scan_out_logical_line()
496 pfile->out.cur = out; in _cpp_scan_out_logical_line()
498 out = pfile->out.cur; in _cpp_scan_out_logical_line()
521 out = pfile->out.cur; in _cpp_scan_out_logical_line()
[all …]
/dragonfly/sys/vfs/hammer2/zlib/
H A Dhammer2_zlib_inffast.c101 out = strm->next_out - OFF; in inflate_fast()
102 beg = out - (start - strm->avail_out); in inflate_fast()
103 end = out + (strm->avail_out - 257); in inflate_fast()
199 PUP(out) = 0; in inflate_fast()
205 PUP(out) = 0; in inflate_fast()
257 PUP(out) = PUP(from); in inflate_fast()
258 PUP(out) = PUP(from); in inflate_fast()
307 } while (in < last && out < end); in inflate_fast()
317 strm->next_out = out + OFF; in inflate_fast()
319 strm->avail_out = (unsigned)(out < end ? in inflate_fast()
[all …]
/dragonfly/usr.sbin/makefs/hammer2/zlib/
H A Dhammer2_zlib_inffast.c101 out = strm->next_out - OFF; in inflate_fast()
102 beg = out - (start - strm->avail_out); in inflate_fast()
103 end = out + (strm->avail_out - 257); in inflate_fast()
199 PUP(out) = 0; in inflate_fast()
205 PUP(out) = 0; in inflate_fast()
257 PUP(out) = PUP(from); in inflate_fast()
258 PUP(out) = PUP(from); in inflate_fast()
307 } while (in < last && out < end); in inflate_fast()
317 strm->next_out = out + OFF; in inflate_fast()
319 strm->avail_out = (unsigned)(out < end ? in inflate_fast()
[all …]
/dragonfly/sbin/hammer2/zlib/
H A Dhammer2_zlib_inffast.c101 out = strm->next_out - OFF; in inflate_fast()
102 beg = out - (start - strm->avail_out); in inflate_fast()
103 end = out + (strm->avail_out - 257); in inflate_fast()
199 PUP(out) = 0; in inflate_fast()
205 PUP(out) = 0; in inflate_fast()
257 PUP(out) = PUP(from); in inflate_fast()
258 PUP(out) = PUP(from); in inflate_fast()
307 } while (in < last && out < end); in inflate_fast()
317 strm->next_out = out + OFF; in inflate_fast()
319 strm->avail_out = (unsigned)(out < end ? in inflate_fast()
[all …]

12345678910>>...77