HomeSort by: relevance | last modified time | path
    Searched defs:residual (Results 1 - 21 of 21) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/builtins/
divsf3.c 122 // In either case, we are going to compute a residual of the form
134 rep_t residual; local
136 residual = (aSignificand << 24) - quotient * bSignificand;
140 residual = (aSignificand << 23) - quotient * bSignificand;
157 const bool round = (residual << 1) > bSignificand;
divdf3.c 137 // In either case, we are going to compute a residual of the form
149 rep_t residual; local
151 residual = (aSignificand << 53) - quotient * bSignificand;
155 residual = (aSignificand << 52) - quotient * bSignificand;
172 const bool round = (residual << 1) > bSignificand;
divtf3.c 153 // In either case, we are going to compute a residual of the form
165 rep_t residual; local
170 residual = (aSignificand << 113) - qb;
175 residual = (aSignificand << 112) - qb;
190 const bool round = (residual << 1) >= bSignificand;
  /src/sys/arch/prep/stand/boot/
boot.c 41 #include <machine/residual.h>
65 RESIDUAL residual; variable
95 * residual data
100 memcpy(&residual, resp, sizeof(residual));
101 btinfo_residual.addr = (void *)&residual;
103 printf("Warning: no residual data.\n");
127 residual.VitalProductData.ProcessorBusHz/4 : TICKS_PER_SEC;
  /src/sys/dev/pci/
vioscsireg.h 67 uint32_t residual; member in struct:virtio_scsi_res_hdr
  /src/crypto/external/bsd/heimdal/dist/lib/hdb/
hdb.c 358 const char *residual; member in struct:cb_s
370 cb_ctx->residual = cb_ctx->filename + strlen(h->prefix) + 1;
430 cb_ctx.residual = NULL;
484 cb_ctx.h = find_method (filename, &cb_ctx.residual);
500 return (*cb_ctx.h->create)(context, db, cb_ctx.residual);
  /src/crypto/external/bsd/heimdal/dist/lib/krb5/
dcache.c 73 set_default_cache(krb5_context context, krb5_dcache *dc, const char *residual)
81 if (!is_filename_cacheish(residual)) {
83 "name %s is not a cache (doesn't start with tkt)", residual);
103 len = strlen(residual);
105 iov[0].iov_base = rk_UNCONST(residual);
144 get_default_cache(krb5_context context, krb5_dcache *dc, char **residual)
151 *residual = NULL;
160 *residual = strdup("tkt");
161 if (*residual == NULL)
191 *residual = strdup(buf)
317 char *residual; local
    [all...]
keytab.c 53 * A keytab name is on the form type:residual. The residual part is
67 * residual part is a filename. For compatibility with other
76 * the type's name is AFSKEYFILE. The residual part is a filename.
82 * opened by the residual name, so two handles can point to the
170 const char *residual; local
172 residual = strchr(name, ':');
174 if (residual == NULL ||
179 || name + 1 == residual
185 residual = name
216 const char *type, *residual; local
    [all...]
  /src/sys/dev/isa/
if_iy.c 632 u_int llen, residual; local
748 residual = resval = 0;
753 if (residual) {
755 printf("%s: merging residual with next mbuf.\n",
771 residual = llen & 1;
772 if (residual) {
783 if (residual)
  /src/external/gpl3/gcc/dist/gcc/
explow.cc 1920 We compute ROUNDED_SIZE, LAST_ADDR, RESIDUAL and PROBE_INTERVAL.
1927 rtx *residual,
1947 *residual = simplify_gen_binary (MINUS, Pmode, size, *rounded_size);
1967 if (*residual != CONST0_RTX (Pmode))
2050 rtx rounded_size, last_addr, residual;
2054 &residual, &probe_interval, size);
2106 if (residual != CONST0_RTX (Pmode))
2109 /* RESIDUAL could be zero at runtime and in that case *sp could
2115 RESIDUAL == 0. However we still need to probe at the right offset
2116 when RESIDUAL > PROBE_RANGE, in which case we probe at PROBE_RANGE
2041 rtx rounded_size, last_addr, residual; local
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
explow.cc 1877 We compute ROUNDED_SIZE, LAST_ADDR, RESIDUAL and PROBE_INTERVAL.
1884 rtx *residual,
1904 *residual = simplify_gen_binary (MINUS, Pmode, size, *rounded_size);
1924 if (*residual != CONST0_RTX (Pmode))
2007 rtx rounded_size, last_addr, residual;
2011 &residual, &probe_interval, size);
2063 if (residual != CONST0_RTX (Pmode))
2066 /* RESIDUAL could be zero at runtime and in that case *sp could
2072 RESIDUAL == 0. However we still need to probe at the right offset
2073 when RESIDUAL > PROBE_RANGE, in which case we probe at PROBE_RANGE
1998 rtx rounded_size, last_addr, residual; local
    [all...]
  /src/external/gpl3/gcc/dist/gcc/config/rs6000/
rs6000-logue.cc 1681 /* Allocate (and implicitly probe) any residual space. */
1682 HOST_WIDE_INT residual = orig_size - rounded_size;
1684 rtx_insn *insn = rs6000_emit_allocate_stack_1 (residual, orig_sp);
1686 /* If the residual was the only allocation, then we can return the
1678 HOST_WIDE_INT residual = orig_size - rounded_size; local
  /src/external/gpl3/gcc.old/dist/gcc/config/rs6000/
rs6000-logue.cc 1688 /* Allocate (and implicitly probe) any residual space. */
1689 HOST_WIDE_INT residual = orig_size - rounded_size;
1691 rtx_insn *insn = rs6000_emit_allocate_stack_1 (residual, orig_sp);
1693 /* If the residual was the only allocation, then we can return the
1685 HOST_WIDE_INT residual = orig_size - rounded_size; local
  /src/external/gpl3/gcc/dist/gcc/config/i386/
i386.cc 8191 /* We need to allocate space for the residual, but we do not need
8192 to probe the residual... */
8193 HOST_WIDE_INT residual = (i - probe_interval - size);
8194 if (residual)
8197 GEN_INT (residual), -1,
8205 dump_stack_clash_frame_info (PROBE_INLINE, residual != 0);
8176 HOST_WIDE_INT residual = (i - probe_interval - size); local
  /src/external/gpl3/gcc.old/dist/gcc/config/i386/
i386.cc 7789 /* We need to allocate space for the residual, but we do not need
7790 to probe the residual... */
7791 HOST_WIDE_INT residual = (i - probe_interval - size);
7792 if (residual)
7795 GEN_INT (residual), -1,
7803 dump_stack_clash_frame_info (PROBE_INLINE, residual != 0);
7774 HOST_WIDE_INT residual = (i - probe_interval - size); local
  /src/external/gpl3/gcc.old/dist/gcc/config/s390/
s390.cc 11253 HOST_WIDE_INT residual = -INTVAL (size) - rounded_size;
11270 dump_stack_clash_frame_info (PROBE_INLINE, residual != 0);
11304 dump_stack_clash_frame_info (PROBE_LOOP, residual != 0);
11307 /* Handle any residual allocation request. */
11310 GEN_INT (-residual), true);
11311 last_probe_offset += residual;
11315 GEN_INT (residual
11252 HOST_WIDE_INT residual = -INTVAL (size) - rounded_size; local
  /src/external/gpl3/binutils/dist/bfd/
elf32-arm.c 10121 encoded constant-and-rotation, together with the final residual. If n is
10131 bfd_vma residual = value; /* Also known as Y_n. */ local
10138 if (residual == 0)
10144 /* Determine the most significant bit in the residual and
10147 if (residual & (3u << msb))
10158 g_n = residual & (0xff << shift);
10162 /* Calculate the residual for the next time around. */
10163 residual &= ~g_n;
10166 *final_residual = residual;
12153 bfd_vma residual; local
12291 bfd_vma residual; local
12379 bfd_vma residual; local
12467 bfd_vma residual; local
    [all...]
  /src/external/gpl3/binutils.old/dist/bfd/
elf32-arm.c 10250 encoded constant-and-rotation, together with the final residual. If n is
10260 bfd_vma residual = value; /* Also known as Y_n. */ local
10267 if (residual == 0)
10273 /* Determine the most significant bit in the residual and
10276 if (residual & (3u << msb))
10287 g_n = residual & (0xff << shift);
10291 /* Calculate the residual for the next time around. */
10292 residual &= ~g_n;
10295 *final_residual = residual;
12282 bfd_vma residual; local
12420 bfd_vma residual; local
12508 bfd_vma residual; local
12596 bfd_vma residual; local
    [all...]
  /src/external/gpl3/gcc/dist/gcc/config/s390/
s390.cc 11778 HOST_WIDE_INT residual = -INTVAL (size) - rounded_size;
11795 dump_stack_clash_frame_info (PROBE_INLINE, residual != 0);
11829 dump_stack_clash_frame_info (PROBE_LOOP, residual != 0);
11832 /* Handle any residual allocation request. */
11835 GEN_INT (-residual), true);
11836 last_probe_offset += residual;
11840 GEN_INT (residual
11777 HOST_WIDE_INT residual = -INTVAL (size) - rounded_size; local
  /src/external/gpl3/gdb/dist/bfd/
elf32-arm.c 10244 encoded constant-and-rotation, together with the final residual. If n is
10254 bfd_vma residual = value; /* Also known as Y_n. */ local
10261 if (residual == 0)
10267 /* Determine the most significant bit in the residual and
10270 if (residual & (3u << msb))
10281 g_n = residual & (0xff << shift);
10285 /* Calculate the residual for the next time around. */
10286 residual &= ~g_n;
10289 *final_residual = residual;
12276 bfd_vma residual; local
12414 bfd_vma residual; local
12502 bfd_vma residual; local
12590 bfd_vma residual; local
    [all...]
  /src/external/gpl3/gdb.old/dist/bfd/
elf32-arm.c 10225 encoded constant-and-rotation, together with the final residual. If n is
10235 bfd_vma residual = value; /* Also known as Y_n. */ local
10242 if (residual == 0)
10248 /* Determine the most significant bit in the residual and
10251 if (residual & (3u << msb))
10262 g_n = residual & (0xff << shift);
10266 /* Calculate the residual for the next time around. */
10267 residual &= ~g_n;
10270 *final_residual = residual;
12198 bfd_vma residual; local
12336 bfd_vma residual; local
12424 bfd_vma residual; local
12512 bfd_vma residual; local
    [all...]

Completed in 130 milliseconds