/freebsd/crypto/heimdal/lib/gssapi/mech/ |
H A D | gss_oid_to_str.c | 84 size_t i, partial = (size_t)-1; in gss_name_to_oid() local 90 if (partial != (size_t)-1) in gss_name_to_oid() 92 partial = i; in gss_name_to_oid() 95 if (partial != (size_t)-1) in gss_name_to_oid() 96 return _gss_ont_mech[partial].oid; in gss_name_to_oid()
|
/freebsd/lib/libc/gen/ |
H A D | pututxline.c | 73 off_t partial; in utx_active_add() local 76 partial = -1; in utx_active_add() 106 if (partial == -1) { in utx_active_add() 107 partial = ftello(fp); in utx_active_add() 112 if (partial != -1) in utx_active_add() 113 partial -= (off_t)sizeof(fe); in utx_active_add() 123 if (partial != -1) in utx_active_add() 124 ret = fseeko(fp, partial, SEEK_SET); in utx_active_add()
|
/freebsd/contrib/kyua/utils/format/ |
H A D | formatter.cpp | 132 std::string partial = format.substr(1, format.length() - 2); in new_ostringstream() local 133 if (partial[0] == '0') { in new_ostringstream() 135 partial.erase(0, 1); in new_ostringstream() 137 if (!partial.empty()) { in new_ostringstream() 138 const std::string::size_type dot = partial.find('.'); in new_ostringstream() 140 output->width(to_int(format, partial.substr(0, dot), "width")); in new_ostringstream() 143 output->precision(to_int(format, partial.substr(dot + 1), in new_ostringstream()
|
/freebsd/contrib/libfido2/man/ |
H A D | NOTES | 1 To generate .partial files for https://developers.yubico.com/: 4 $ (cd build/man && pax -p p -r -w *.partial /tmp/partial)
|
H A D | CMakeLists.txt | 313 add_custom_command(OUTPUT ${g}.partial 314 COMMAND cat ${PROJECT_SOURCE_DIR}/man/dyc.css > ${g}.partial 315 COMMAND mandoc -T html -O man="%N.html",fragment ${f} >> ${g}.partial 317 list(APPEND HTML_PARTIAL_FILES ${g}.partial) 348 define_symlink_target(man_symlink_html_partial partial)
|
/freebsd/crypto/openssl/test/ |
H A D | bio_readbuffer_test.c | 28 int ret = 0, len, partial; in test_readbuffer_file_bio() local 55 partial = 4; in test_readbuffer_file_bio() 73 if (tstid == 1 && --partial == 0) in test_readbuffer_file_bio()
|
/freebsd/contrib/llvm-project/libcxx/src/ |
H A D | std_stream.h | 172 case codecvt_base::partial: in __getchar() 190 } while (__r == std::codecvt_base::partial); in __getchar() 225 case codecvt_base::partial: in __getchar() 329 } else if (__r == codecvt_base::ok || __r == codecvt_base::partial) { in __do_fputc() 333 if (__r == codecvt_base::partial) { in __do_fputc() 338 } while (__r == codecvt_base::partial); in __do_fputc() 368 } while (__r == codecvt_base::partial); in overflow()
|
H A D | locale.cpp | 1386 return partial; in do_out() 1398 return partial; in do_out() 1408 return frm_nxt == frm_end ? ok : partial; in do_out() 1444 return partial; in do_in() 1451 return frm_nxt == frm_end ? ok : partial; in do_in() 1472 return frm_nxt == frm_end ? ok : partial; in do_in() 1484 return partial; in do_unshift() 1557 return codecvt_base::partial; in utf16_to_utf8() 1568 return codecvt_base::partial; in utf16_to_utf8() 1572 return codecvt_base::partial; in utf16_to_utf8() [all …]
|
/freebsd/contrib/openbsm/bin/praudit/ |
H A D | praudit.c | 67 static int partial = 0; variable 91 if (partial) { in print_tokens() 149 partial = 1; in main()
|
/freebsd/contrib/bc/tests/bc/ |
H A D | stdin.txt | 5 "String /* with partial comment" 7 1 /* Comment with partial "string */ + 2
|
/freebsd/tests/sys/common/ |
H A D | sender.py | 31 from functools import partial 99 send_cb = partial(send_packet, args, pkt) 135 send_cb = partial(send_packet, args, pkt) 178 send_cb = partial(send_packet, args, pkt)
|
/freebsd/contrib/tcsh/ |
H A D | sh.lex.c | 1567 size_t partial; in wide_read() local 1575 partial = 0; in wide_read() 1578 size_t len = nchars > partial ? nchars - partial : 1; in wide_read() 1580 if (partial + len >= sizeof(cbuf) / sizeof(*cbuf)) in wide_read() 1583 r = xread(fildes, cbuf + partial, len); in wide_read() 1585 if (partial == 0 && r <= 0) in wide_read() 1587 partial += r; in wide_read() 1589 while (i < partial && nchars != 0) { in wide_read() 1592 tlen = normal_mbtowc(buf + res, cbuf + i, partial - i); in wide_read() 1595 if ((partial - i) < MB_LEN_MAX && r > 0) in wide_read() [all …]
|
/freebsd/contrib/dialog/ |
H A D | fselect.c | 625 char *partial = 0; in dlg_fselect() local 839 if (partial != 0) { in dlg_fselect() 840 free(partial); in dlg_fselect() 841 partial = 0; in dlg_fselect() 848 if (complete(input, &d_list, &f_list, &partial)) { in dlg_fselect() 849 completed = partial; in dlg_fselect() 859 if (partial != NULL) { in dlg_fselect() 860 free(partial); in dlg_fselect() 861 partial = 0; in dlg_fselect() 941 if (partial != 0) in dlg_fselect() [all …]
|
/freebsd/crypto/heimdal/lib/roken/ |
H A D | parse_units.c | 77 unsigned partial; in parse_something() local 108 partial = 0; in parse_something() 121 ++partial; in parse_something() 127 if (partial == 1) { in parse_something()
|
/freebsd/usr.sbin/etcupdate/tests/ |
H A D | tests_test.sh | 475 mkdir $i/adddir/partial 477 echo "foo" > $NEW/adddir/partial/file 478 mkfifo $TEST/adddir/partial/fifo 501 mkdir -p $i/rmdir/partial/subdir 502 mkfifo $i/rmdir/partial/subdir/fifo 504 echo "foo" > $OLD/rmdir/partial/subdir/file 881 file /adddir/partial/file "foo" 882 fifo /adddir/partial/fifo 893 missing /rmdir/partial 952 D /rmdir/partial/subdir/fifo [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/fpga/ |
H A D | fpga-region.txt | 18 FPGA Regions represent FPGA's and partial reconfiguration regions of FPGA's in 51 * Also called a "partial bit stream" 79 * A base image may set up a set of partial reconfiguration regions that may 150 For partial reconfiguration (PR), each PR region will have an FPGA Region. 185 - partial-fpga-config : boolean, set if partial reconfiguration is to be done, 301 region while the buses are enabled for other sections. Before any partial 340 * "partial-fpga-config" 341 This binding is a boolean and should be present if partial reconfiguration 439 "partial [all...] |
/freebsd/crypto/openssh/ |
H A D | auth2.c | 369 int r, partial = 0; in userauth_finish() local 396 partial = 1; in userauth_finish() 401 auth_log(ssh, authenticated, partial, method, submethod); in userauth_finish() 404 if (authenticated || partial) in userauth_finish() 445 if (!partial && !authctxt->server_caused_failure && in userauth_finish() 458 partial, methods); in userauth_finish() 461 (r = sshpkt_put_u8(ssh, partial)) != 0 || in userauth_finish()
|
/freebsd/contrib/llvm-project/libcxx/modules/std/ |
H A D | numeric.cppm |
|
/freebsd/crypto/openssl/util/perl/TLSProxy/ |
H A D | Record.pm | 63 my $partial = ""; 77 $partial = $packet; 128 return (\@record_list, \@message_list, $partial);
|
H A D | Proxy.pm | 107 partial => ["", ""], 153 $self->{partial} = ["", ""]; 492 $self->{partial}[$server].$packet); 493 $self->{partial}[$server] = $ret[2];
|
/freebsd/contrib/wpa/src/tls/ |
H A D | tlsv1_client.c | 217 struct wpabuf *partial; in tlsv1_client_handshake() local 219 partial = wpabuf_alloc_copy(pos, end - pos); in tlsv1_client_handshake() 221 conn->partial_input = partial; in tlsv1_client_handshake() 374 struct wpabuf *partial; in tlsv1_client_decrypt() local 376 partial = wpabuf_alloc_copy(pos, in_end - pos); in tlsv1_client_decrypt() 378 conn->partial_input = partial; in tlsv1_client_decrypt()
|
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/rsend/ |
H A D | send_partial_dataset.ksh | 88 mess_send_file /$POOL/stream/partial.send 89 log_mustnot zfs recv -s $POOL/partialfs < /$POOL/stream/partial.send
|
/freebsd/contrib/googletest/googlemock/ |
H A D | README.md | 19 - Can define partial (hybrid) mocks, which are a cross of real and mock 25 - Allows arbitrary (partial) ordering constraints on function calls to be
|
/freebsd/usr.sbin/autofs/ |
H A D | common.c | 130 char *component, *copy, *tofree, *partial, *tmp; in create_directory() local 140 partial = checked_strdup("/"); in create_directory() 145 tmp = concat(partial, '/', component); in create_directory() 146 free(partial); in create_directory() 147 partial = tmp; in create_directory() 149 error = mkdir(partial, 0755); in create_directory() 151 log_warn("cannot create %s", partial); in create_directory()
|
/freebsd/contrib/llvm-project/lld/docs/ |
H A D | windows_support.rst | 5 .partial { background-color: #FFFF99 } 10 .. role:: partial 55 :partial:`Partially done`. LLD currently recognizes these directives:
|