| /freebsd/contrib/llvm-project/clang/lib/Headers/ |
| H A D | avxintrin.h | 801 /// copied. \n 803 /// 0: Bits [63:0] of the source are copied to bits [63:0] of the returned 805 /// 1: Bits [127:64] of the source are copied to bits [63:0] of the 808 /// 0: Bits [63:0] of the source are copied to bits [127:64] of the 810 /// 1: Bits [127:64] of the source are copied to bits [127:64] of the 812 /// \returns A 128-bit vector of [2 x double] containing the copied values. 830 /// copied. \n 832 /// 0: Bits [63:0] of the source are copied to bits [63:0] of the returned 834 /// 1: Bits [127:64] of the source are copied to bits [63:0] of the 837 /// 0: Bits [63:0] of the source are copied to bits [127:64] of the [all …]
|
| H A D | smmintrin.h | 97 /// copied to the corresponding bits of the result. 100 /// rounded up to the nearest integer and copied to the corresponding bits 102 /// \returns A 128-bit vector of [4 x float] containing the copied and rounded 122 /// copied to the corresponding bits of the result. 125 /// rounded up to the nearest integer and copied to the corresponding bits 127 /// \returns A 128-bit vector of [2 x double] containing the copied and rounded 181 /// copied to the corresponding bits of the result. 184 /// rounded down to the nearest integer and copied to the corresponding bits 186 /// \returns A 128-bit vector of [4 x float] containing the copied and rounded 206 /// copied to the corresponding bits of the result. [all …]
|
| /freebsd/sys/contrib/openzfs/lib/libspl/ |
| H A D | strlcpy.c | 43 size_t copied; in strlcpy() local 49 copied = len - 1; in strlcpy() 51 copied = slen; in strlcpy() 52 (void) memcpy(dst, src, copied); in strlcpy() 53 dst[copied] = '\0'; in strlcpy()
|
| H A D | strlcat.c | 46 size_t copied; in strlcat() local 54 copied = l1 + l2 >= dstsize ? dstsize - l1 - 1 : l2; in strlcat() 55 (void) memcpy(dst + l1, src, copied); in strlcat() 56 dst[l1+copied] = '\0'; in strlcat()
|
| /freebsd/share/doc/usd/13.viref/ |
| H A D | vi.cmd.roff | 388 commands, in which case any text copied into a buffer is 530 in which case any text copied into a buffer is character oriented. 562 commands, in which case any text copied into a buffer is 601 commands, in which case any text copied into a buffer is 627 commands, in which case any text copied into a buffer is 832 commands, in which case any text copied into a buffer is 1000 commands, in which case any text copied into a buffer is 1040 commands, in which case any text copied into a buffer is 1119 command, any text copied into a buffer is line oriented. 1123 any text copied into a buffer is character oriented, [all …]
|
| /freebsd/crypto/libecc/src/external_deps/ |
| H A D | rand.c | 33 * size has been read and copied to buffer and -1 otherwise. 38 u16 rem = buflen, copied = 0; in fimport() local 55 ret = (int)read(fd, buf + copied, rem); in fimport() 60 copied = (u16)(copied + ret); in fimport() 70 ret = (copied == buflen) ? 0 : -1; in fimport()
|
| /freebsd/sys/dev/cxgbe/tom/ |
| H A D | t4_ddp.c | 166 long copied; in ddp_complete_one() local 169 * If this job had copied data out of the socket buffer before in ddp_complete_one() 173 copied = job->aio_received; in ddp_complete_one() 174 if (copied != 0 || error == 0) in ddp_complete_one() 175 aio_complete(job, copied, 0); in ddp_complete_one() 469 long copied; in insert_ddp_data() local 506 copied = job->aio_received; in insert_ddp_data() 508 if (placed > job->uaiocb.aio_nbytes - copied) in insert_ddp_data() 509 placed = job->uaiocb.aio_nbytes - copied; in insert_ddp_data() 517 * Update the copied length for when in insert_ddp_data() [all …]
|
| /freebsd/sys/ofed/drivers/infiniband/ulp/sdp/ |
| H A D | sdp_zcopy.c | 287 int copied = rx_sa->used - rx_sa->reported; in sdp_post_rdma_rd_compl() local 292 mb = sdp_alloc_mb_rdmardcompl(ssk->socket, copied, 0); in sdp_post_rdma_rd_compl() 294 rx_sa->reported += copied; in sdp_post_rdma_rd_compl() 557 int copied; in sdp_rdma_to_iovec() local 599 copied = rx_sa->umem->length; in sdp_rdma_to_iovec() 601 sdp_update_iov_used(sk, iov, copied); in sdp_rdma_to_iovec() 602 rx_sa->used += copied; in sdp_rdma_to_iovec() 603 atomic_add(copied, &ssk->rcv_nxt); in sdp_rdma_to_iovec() 604 *used = copied; in sdp_rdma_to_iovec() 721 int copied = 0; in sdp_sendmsg_zcopy() local [all …]
|
| /freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/redacted_send/ |
| H A D | redacted_contents.ksh | 30 # 5. A copied, then removed file in the clone redacts the whole file. 84 log_must cp "$clone_mnt/f1" "$clone_mnt/f1.copied" 92 [[ -f $recv_mnt/f1.copied ]] && log_fail "Found moved file in redacted receive." 97 log_must cp "$clone_mnt/f1" "$clone_mnt/f1.copied" 98 log_must cp "$clone_mnt/f1.copied" "$clone_mnt/f1" 105 [[ -f $recv_mnt/f1.copied ]] && log_fail "Found moved file in redacted receive."
|
| /freebsd/contrib/ncurses/man/ |
| H A D | form_field_new.3x | 58 options, and user pointer) are copied. 60 not copied. 97 It may be unwise to count on the set of attributes copied by 99 not very explicit about what gets copied and what does not.
|
| /freebsd/crypto/openssl/doc/man3/ |
| H A D | CMS_get1_ReceiptRequest.pod | 49 The signedContentIdentifier is copied to B<pcid>. If the B<allOrFirstTier> 50 option of B<receiptsFrom> is used its value is copied to B<pallorfirst> 51 otherwise the B<receiptList> field is copied to B<plist>. The B<receiptsTo> 52 parameter is copied to B<prto>.
|
| /freebsd/share/man/man9/ |
| H A D | VOP_COPY_FILE_RANGE.9 | 96 These file offsets should be updated by the number of bytes copied. 100 to be copied. 103 will be updated to the number of bytes actually copied. 104 Normally, this will be the number of bytes requested to be copied,
|
| /freebsd/sys/dev/drm2/ |
| H A D | drm_crtc.c | 1211 int copied = 0, i; in drm_mode_getresources() local 1256 copied = 0; in drm_mode_getresources() 1259 if (put_user(fb->base.id, fb_id + copied)) { in drm_mode_getresources() 1263 copied++; in drm_mode_getresources() 1270 copied = 0; in drm_mode_getresources() 1276 if (put_user(crtc->base.id, crtc_id + copied)) { in drm_mode_getresources() 1280 copied++; in drm_mode_getresources() 1285 crtc_id + copied)) { in drm_mode_getresources() 1289 copied++; in drm_mode_getresources() 1297 copied = 0; in drm_mode_getresources() [all …]
|
| /freebsd/sys/contrib/openzfs/man/man1/ |
| H A D | zilstat.1 | 87 Copied in-transaction count 89 Copied in-transaction bytes 95 Direct (copied + needcopy) count 97 Direct (copied + needcopy) bytes
|
| /freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/xattr/ |
| H A D | xattr_004_pos.ksh | 58 log_assert "Files from $NEWFS_DEFAULT_FS with xattrs copied to zfs retain xattr info." 81 # ensure the xattr information has been copied correctly 114 # ensure the xattr information has been copied correctly 124 log_pass "Files from $NEWFS_DEFAULT_FS with xattrs copied to zfs retain xattr info."
|
| /freebsd/lib/libsys/ |
| H A D | copy_file_range.2 | 89 the number of bytes copied. 130 the byte range being copied. 132 It is recommended that sparse files be copied in a loop using 149 If it succeeds, the call returns the number of bytes copied, which can be fewer
|
| /freebsd/secure/lib/libcrypto/man/man3/ |
| H A D | CMS_get1_ReceiptRequest.3 | 111 The signedContentIdentifier is copied to \fBpcid\fR. If the \fBallOrFirstTier\fR 112 option of \fBreceiptsFrom\fR is used its value is copied to \fBpallorfirst\fR 113 otherwise the \fBreceiptList\fR field is copied to \fBplist\fR. The \fBreceiptsTo\fR 114 parameter is copied to \fBprto\fR.
|
| /freebsd/sys/contrib/dev/athk/ath10k/ |
| H A D | coredump.h | 111 /* magic number to fill the holes not copied due to sections in regions */ 126 /* Define a section of the region which should be copied. As not all parts 141 * region is copied. If sections is non-null only the areas specified in 142 * sections are copied and rest of the areas are filled with
|
| /freebsd/contrib/bearssl/src/symcipher/ |
| H A D | aes_pwr8.c | 59 * v1 = constant -8 / +8, copied into four words in key_schedule_128() 62 * v6 = constant 8, copied into four words in key_schedule_128() 63 * v7 = constant 0x11B, copied into four words in key_schedule_128() 168 * v1 = constant -8 / +8, copied into four words in key_schedule_192() 171 * v6 = constant 8, copied into four words in key_schedule_192() 306 * v1 = constant -8 / +8, copied into four words in key_schedule_256() 309 * v7 = constant 8, copied into four words in key_schedule_256()
|
| /freebsd/sys/contrib/openzfs/tests/zfs-tests/cmd/ |
| H A D | clonefile.c | 322 ssize_t copied = cf_copy_file_range(sfd, &soff, dfd, &doff, len, 0); in do_copyfilerange() local 323 if (copied < 0) { in do_copyfilerange() 336 if (copied != len) { in do_copyfilerange() 337 fprintf(stderr, "copy_file_range: copied less than requested: " in do_copyfilerange() 338 "requested=%zu; copied=%zd\n", len, copied); in do_copyfilerange()
|
| /freebsd/sys/netinet/ |
| H A D | accf_http.c | 280 int ccleft, copied; in soishttpconnected() local 288 * copied - how much we've copied so far in soishttpconnected() 293 copied = 0; in soishttpconnected() 306 tocopy = (NCHRS - ccleft) - copied; in soishttpconnected() 310 switch (copied++) { in soishttpconnected()
|
| /freebsd/contrib/tcp_wrappers/ |
| H A D | hosts_access.3 | 36 copied. The expected keys (and corresponding value types) are: 45 contents of the structure are not copied. 52 The contents of the structure are not copied.
|
| /freebsd/sys/dev/bhnd/nvram/ |
| H A D | bhnd_nvram_value.h | 131 * Value data will still be copied if the value itself is copied to the 157 * When performing copy/retain, the existing structure must be copied 196 * storage location. The data need not be copied if copying the value. 201 * Value represented by weak external reference, which must be copied
|
| /freebsd/crypto/openssl/crypto/asn1/ |
| H A D | evp_asn1.c | 31 * if passing NULL in data, nothing is copied but the necessary length 67 * whether all the data was copied. 120 * whether all the data was copied. 183 * whether all the data was copied.
|
| /freebsd/lib/libgssapi/ |
| H A D | gss_add_oid_set_member.3 | 76 The object identifier to copied into the set. 105 This document and translations of it may be copied and furnished to 107 or assist in its implementation may be prepared, copied, published
|