Searched refs:partial (Results 1 - 25 of 74) sorted by relevance

123

/freebsd-current/crypto/heimdal/lib/gssapi/mech/
H A Dgss_oid_to_str.c84 size_t i, partial = (size_t)-1; local
90 if (partial != (size_t)-1)
92 partial = i;
95 if (partial != (size_t)-1)
96 return _gss_ont_mech[partial].oid;
/freebsd-current/crypto/openssl/test/
H A Dbio_readbuffer_test.c28 int ret = 0, len, partial; local
55 partial = 4;
73 if (tstid == 1 && --partial == 0)
80 len = 8; /* Do a small partial read to start with */
/freebsd-current/lib/libc/gen/
H A Dpututxline.c73 off_t partial; local
76 partial = -1;
106 if (partial == -1) {
107 partial = ftello(fp);
112 if (partial != -1)
113 partial -= (off_t)sizeof(fe);
120 * No exact match found. Use the partial match. If no partial
123 if (partial != -1)
124 ret = fseeko(fp, partial, SEEK_SE
[all...]
/freebsd-current/contrib/kyua/utils/format/
H A Dformatter.cpp132 std::string partial = format.substr(1, format.length() - 2); local
133 if (partial[0] == '0') {
135 partial.erase(0, 1);
137 if (!partial.empty()) {
138 const std::string::size_type dot = partial.find('.');
140 output->width(to_int(format, partial.substr(0, dot), "width"));
143 output->precision(to_int(format, partial.substr(dot + 1),
/freebsd-current/contrib/openbsm/bin/praudit/
H A Dpraudit.c67 static int partial = 0; variable
91 if (partial) {
149 partial = 1;
/freebsd-current/sys/contrib/openzfs/include/sys/
H A Dvdev_trim.h37 extern void vdev_trim(vdev_t *vd, uint64_t rate, boolean_t partial,
/freebsd-current/contrib/llvm-project/libcxx/modules/std/
H A Dnumeric.inc23 // [partial.sum], partial sum
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/rsend/
H A Dsend_partial_dataset.ksh87 "/$POOL/stream/partial.send"
88 mess_send_file /$POOL/stream/partial.send
89 log_mustnot zfs recv -s $POOL/partialfs < /$POOL/stream/partial.send
/freebsd-current/crypto/heimdal/lib/roken/
H A Dparse_units.c77 unsigned partial; local
108 partial = 0;
121 ++partial;
127 if (partial == 1) {
/freebsd-current/tests/sys/common/
H A Dsender.py31 from functools import partial namespace
99 send_cb = partial(send_packet, args, pkt)
135 send_cb = partial(send_packet, args, pkt)
178 send_cb = partial(send_packet, args, pkt)
H A Dnet_receiver.py31 from functools import partial namespace
/freebsd-current/contrib/llvm-project/libcxx/src/
H A Dstd_stream.h172 case codecvt_base::partial:
190 } while (__r == std::codecvt_base::partial);
225 case codecvt_base::partial:
329 } else if (__r == codecvt_base::ok || __r == codecvt_base::partial) {
333 if (__r == codecvt_base::partial) {
338 } while (__r == codecvt_base::partial);
368 } while (__r == codecvt_base::partial);
H A Dlocale.cpp1388 return partial;
1400 return partial;
1410 return frm_nxt == frm_end ? ok : partial;
1446 return partial;
1453 return frm_nxt == frm_end ? ok : partial;
1474 return frm_nxt == frm_end ? ok : partial;
1486 return partial;
1559 return codecvt_base::partial;
1570 return codecvt_base::partial;
1574 return codecvt_base::partial;
[all...]
/freebsd-current/usr.sbin/fstyp/
H A Dhammer.c139 __fsvtyp_hammer(const char *blkdevs, char *label, size_t size, int partial) argument
177 if (partial)
/freebsd-current/contrib/tcsh/
H A Dsh.lex.c1567 size_t partial; local
1575 partial = 0;
1578 size_t len = nchars > partial ? nchars - partial : 1;
1580 if (partial + len >= sizeof(cbuf) / sizeof(*cbuf))
1583 r = xread(fildes, cbuf + partial, len);
1585 if (partial == 0 && r <= 0)
1587 partial += r;
1589 while (i < partial && nchars != 0) {
1592 tlen = normal_mbtowc(buf + res, cbuf + i, partial
[all...]
/freebsd-current/crypto/openssl/util/perl/TLSProxy/
H A DRecord.pm63 my $partial = "";
77 $partial = $packet;
128 return (\@record_list, \@message_list, $partial);
H A DProxy.pm106 partial => ["", ""],
152 $self->{partial} = ["", ""];
489 #list of messages in those records and any partial message
491 $self->{partial}[$server].$packet);
492 $self->{partial}[$server] = $ret[2];
/freebsd-current/contrib/dialog/
H A Dfselect.c625 char *partial = 0; local
839 if (partial != 0) {
840 free(partial);
841 partial = 0;
848 if (complete(input, &d_list, &f_list, &partial)) {
849 completed = partial;
859 if (partial != NULL) {
860 free(partial);
861 partial = 0;
941 if (partial !
[all...]
/freebsd-current/crypto/openssh/
H A Dauth2.c371 int r, partial = 0; local
398 partial = 1;
403 auth_log(ssh, authenticated, partial, method, submethod);
406 if (authenticated || partial)
447 if (!partial && !authctxt->server_caused_failure &&
459 debug3_f("failure partial=%d next methods=\"%s\"",
460 partial, methods);
463 (r = sshpkt_put_u8(ssh, partial)) != 0 ||
/freebsd-current/usr.sbin/etcupdate/tests/
H A Dtests_test.sh470 # /adddir/partial: Add a new file in a directory. The
475 mkdir $i/adddir/partial
477 echo "foo" > $NEW/adddir/partial/file
478 mkfifo $TEST/adddir/partial/fifo
498 # /rmdir/partial: Remove a complete hierarchy when part of the
501 mkdir -p $i/rmdir/partial/subdir
502 mkfifo $i/rmdir/partial/subdir/fifo
504 echo "foo" > $OLD/rmdir/partial/subdir/file
880 ## /adddir/partial:
881 file /adddir/partial/fil
[all...]
/freebsd-current/contrib/wpa/src/tls/
H A Dtlsv1_client.c217 struct wpabuf *partial; local
219 partial = wpabuf_alloc_copy(pos, end - pos);
221 conn->partial_input = partial;
374 struct wpabuf *partial; local
376 partial = wpabuf_alloc_copy(pos, in_end - pos);
378 conn->partial_input = partial;
/freebsd-current/sys/dev/netmap/
H A Dnetmap_null.c53 #warning OSX support is only partial
/freebsd-current/crypto/openssl/crypto/des/asm/
H A Ddest4-sparcv9.pl193 stda %f2, [$out + $omask]0xc0 ! partial store
196 stda %f2, [$out + $omask]0xc0 ! partial store
293 stda %f0, [$out + $omask]0xc0 ! partial store
296 stda %f0, [$out + $omask]0xc0 ! partial store
453 stda %f2, [$out + $omask]0xc0 ! partial store
456 stda %f2, [$out + $omask]0xc0 ! partial store
607 stda %f0, [$out + $omask]0xc0 ! partial store
610 stda %f0, [$out + $omask]0xc0 ! partial store
/freebsd-current/usr.sbin/autofs/
H A Dcommon.c130 char *component, *copy, *tofree, *partial, *tmp; local
140 partial = checked_strdup("/");
145 tmp = concat(partial, '/', component);
146 free(partial);
147 partial = tmp;
148 //log_debugx("creating \"%s\"", partial);
149 error = mkdir(partial, 0755);
151 log_warn("cannot create %s", partial);
/freebsd-current/contrib/sendmail/contrib/
H A Dcidrexpand235 -O When a CIDR expansion would generate a partial conflict

Completed in 187 milliseconds

123