Searched refs:residual (Results 1 - 20 of 20) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/
H A Ddivsf3.c129 // In either case, we are going to compute a residual of the form
141 rep_t residual; local
143 residual = (aSignificand << 24) - quotient * bSignificand;
147 residual = (aSignificand << 23) - quotient * bSignificand;
160 const bool round = (residual << 1) > bSignificand;
176 const bool round = (residual << 1) > bSignificand;
H A Ddivdf3.c144 // In either case, we are going to compute a residual of the form
156 rep_t residual; local
158 residual = (aSignificand << 53) - quotient * bSignificand;
162 residual = (aSignificand << 52) - quotient * bSignificand;
175 const bool round = (residual << 1) > bSignificand;
191 const bool round = (residual << 1) > bSignificand;
H A Ddivtf3.c161 // In either case, we are going to compute a residual of the form
173 rep_t residual; local
178 residual = (aSignificand << 113) - qb;
183 residual = (aSignificand << 112) - qb;
194 const bool round = (residual << 1) > bSignificand;
208 const bool round = (residual << 1) >= bSignificand;
/freebsd-11-stable/sys/dev/virtio/block/
H A Dvirtio_blk.h122 uint32_t residual; member in struct:virtio_scsi_inhdr
/freebsd-11-stable/crypto/heimdal/lib/krb5/
H A Dkeytab.c51 * A keytab name is on the form type:residual. The residual part is
65 * residual part is a filename. For compatibility with other
74 * the type's name is AFSKEYFILE. The residual part is a filename.
80 * opened by the residual name, so two handles can point to the
171 const char *residual; local
173 residual = strchr(name, ':');
175 if (residual == NULL ||
180 || name + 1 == residual
186 residual
217 const char *type, *residual; local
[all...]
H A Dcache.c179 * and name `residual'. Return 0 or an error code.
185 const char *residual,
192 ret = _krb5_expand_path_tokens(context, residual, &exp_residual);
196 residual = exp_residual;
208 ret = (*id)->ops->resolve(context, id, residual);
242 * Find and allocate a ccache in `id' from the specification in `residual'.
183 allocate_ccache(krb5_context context, const krb5_cc_ops *ops, const char *residual, krb5_ccache *id) argument
/freebsd-11-stable/crypto/heimdal/appl/login/
H A Dlogin.c183 char residual[64]; local
186 snprintf(residual, sizeof(residual), "FILE:/tmp/krb5cc_%u",
188 krb5_cc_resolve(context, residual, &id2);
191 add_env("KRB5CCNAME", residual);
/freebsd-11-stable/crypto/heimdal/lib/hdb/
H A Dhdb.c455 const char *residual; local
462 h = find_method (filename, &residual);
471 residual = filename + strlen(h->prefix);
484 h = find_dynamic_method (context, filename, &residual);
488 return (*h->create)(context, db, residual);
/freebsd-11-stable/sys/geom/
H A Dgeom_disk.c360 off_t residual; local
366 residual = bp->bio_length;
369 while (residual != 0 && pages != 0) {
372 g_disk_seg_limit(seg, &offset, &residual, &pages);
377 return (residual);
401 off_t residual; local
404 residual = g_disk_vlist_limit(dp, bp, &endseg);
405 if (residual != 0) {
407 bp->bio_length -= residual;
/freebsd-11-stable/sys/dev/ocs_fc/
H A Docs_scsi.c1480 size_t residual = 0; local
1529 residual = (xwire_len - io->wire_len);
1539 /* if this is the last data phase and there is no residual, enable
1543 (residual == 0) && ((io->transferred + io->wire_len) == io->exp_xfer_len) && (!(flags & OCS_SCSI_NO_AUTO_RESPONSE))) {
1554 * when the residual is calculated in ocs_scsi_send_resp
1556 io->transferred += residual;
1560 if (residual) {
1563 while (residual) {
1565 if ( len > residual) {
1566 sgl_ptr->len = len - residual;
1649 int32_t residual; local
[all...]
H A Docs_ioctl.h181 int32_t residual; /**< residual */ member in struct:__anon7621
H A Docs_fabric.c1857 uint16_t residual; local
1859 residual = ocs_be16toh(gidpt->hdr.max_residual_size);
1861 if (residual != 0) {
1862 ocs_log_debug(node->ocs, "residual is %u words\n", residual);
H A Docs_scsi.h86 * sense data. In this case all but the @b residual element are used. For
88 * response data for issued commands, including the residual element.
97 int32_t residual; /**< command residual (not used for target), positive value member in struct:__anon7642
H A Docs_cam.c1380 resp.residual = io->exp_xfer_len - io->transferred;
1491 csio->resid = rsp->residual;
1492 if (rsp->residual > 0) {
1498 } else if (rsp->residual < 0) {
1696 resp.residual = io->exp_xfer_len - io->transferred;
/freebsd-11-stable/contrib/binutils/bfd/
H A Delf32-arm.c4416 encoded constant-and-rotation, together with the final residual. If n is
4426 bfd_vma residual = value; /* Also known as Y_n. */ local
4433 if (residual == 0)
4439 /* Determine the most significant bit in the residual and
4442 if (residual & (3 << msb))
4453 g_n = residual & (0xff << shift);
4457 /* Calculate the residual for the next time around. */
4458 residual &= ~g_n;
4461 *final_residual = residual;
5894 bfd_vma residual; local
6027 bfd_vma residual; local
6073 calculate_group_reloc_mask (llabs (signed_value), group - 1, &residual); local
6110 bfd_vma residual; local
6156 calculate_group_reloc_mask (llabs (signed_value), group - 1, &residual); local
6193 bfd_vma residual; local
6239 calculate_group_reloc_mask (llabs (signed_value), group - 1, &residual); local
[all...]
/freebsd-11-stable/sys/cam/ctl/
H A Dctl_io.h323 uint32_t residual; /* Unused */ member in struct:ctl_scsiio
/freebsd-11-stable/sys/dev/mpr/
H A Dmpr.c862 int i, count, ioc_sz, residual; local
941 residual = 0;
944 residual = ioc_sz * 2 - count;
946 "residual message words\n", residual);
961 * Pull out residual words that won't fit into the provided buffer.
965 while (residual--) {
2640 * is >= the residual beyond 4 pages then use IEEE,
2664 * Check if first SG entry size is < residual beyond 4
/freebsd-11-stable/sys/dev/mps/
H A Dmps.c849 int i, count, ioc_sz, residual; local
924 residual = 0;
927 residual = ioc_sz * 2 - count;
929 "residual message words\n", residual);
944 * Pull out residual words that won't fit into the provided buffer.
948 while (residual--) {
/freebsd-11-stable/sys/dev/ata/
H A Data-all.h220 u_int32_t residual; /* bytes still to transfer */ member in struct:ata_composite
/freebsd-11-stable/sys/cam/scsi/
H A Dscsi_sa.c2628 * with the residual equal to the count.
2634 * addition to setting the residual equal
2719 * The residual information from the ccb allows
3316 * Clear I/O residual.
3456 * it's not an error and propagate the residual and return.
4567 residual, "Residual for the last I/O");
4688 * Clear residual because we will be using it.
4706 * take account of the residual, but still check against less
4710 * we have a residual, we've either hit BOT or hit a filemark.
4759 * Clear residual becaus
[all...]

Completed in 220 milliseconds