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

  /src/lib/libc/gdtoa/
ldtoa.c 19 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
68 int be, kind; local in function:ldtoa
75 be = u.extu_ext.ext_exp - (LDBL_MAX_EXP - 1) - (LDBL_MANT_DIG - 1);
90 be++;
102 ret = gdtoa(&fpi, be, (ULong *)bits, &kind, mode, ndigits, decpt, rve);
g__fmt.c 14 not be used in advertising or publicity pertaining to
20 IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY
46 char *be, *s0; local in function:g__fmt
73 be = b + blen - 1;
99 if (b >= be)
116 if (be < b - decpt + (se - s))
135 if (b + decpt > be) {
dtoa.c 16 not be used in advertising or publicity pertaining to
22 IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY
49 * 3. Under the assumption that input will be rounded nearest,
104 ndigits can be negative.
120 int bbits, b2, b5, be, dig, i, ieps, ilim0, local in function:dtoa
204 b = d2b(dval(&d), &be, &bbits);
230 * We want k to be too large rather than too small.
253 i = bbits + be + (Bias + (P-1) - 1);
446 if (be >= 0 && k <= Int_max) {
459 /* If FLT_ROUNDS == 2, L will usually be high by 1 *
    [all...]
gdtoa.c 16 not be used in advertising or publicity pertaining to
22 IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY
45 ULong *be, *x, *x0; local in function:bitstob
60 be = bits + (((unsigned int)nbits - 1) >> kshift);
67 } while(++bits <= be);
96 * 3. Under the assumption that input will be rounded nearest,
120 (fpi, be, bits, kindp, mode, ndigits, decpt, rve)
121 CONST FPI *fpi; int be; ULong *bits;
124 (CONST FPI *fpi, int be, ULong *bits, int *kindp, int mode, int ndigits, int *decpt, char **rve)
132 be = exponent: value = (integer represented by bits) * (2 to the power of be)
    [all...]
strtodg.c 16 not be used in advertising or publicity pertaining to
22 IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY
340 ULong *b, *be, y, z; local in function:strtodg
1071 be = b + ((unsigned int)(fpi->nbits + 31) >> 5);
1072 while(b < be)
1075 *--be >>= (32 - j);
  /src/usr.sbin/makefs/cd9660/
cd9660_conversion.c 25 * GABRYS, ALAN PEREZ-RATHKE AND RAM VEDAM BE LIABLE FOR ANY DIRECT, INDIRECT,
54 * These can probably be implemented using a macro
104 uint32_t le, be; local in function:cd9660_bothendian_dword
107 be = bswap32(dw);
110 be = dw;
114 memcpy((eightchar+4), &be, 4);
126 uint16_t le, be; local in function:cd9660_bothendian_word
129 be = bswap16(dw);
132 be = dw;
136 memcpy((fourchar+2), &be, 2)
    [all...]
  /src/sys/arch/sun3/dev/
if_ie_sebuf.c 23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
222 * XXX - Would be nice to have asm versions in some library...
229 uint8_t *be = b + l; local in function:wmemset
240 if (b != be && ((uint32_t)be & 1) != 0) {
241 be--;
242 *be = val;
247 while (sp != (uint16_t *)be)
if_ie_vme.c 23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
226 * XXX - Would be nice to have asm versions in some library...
233 uint8_t *be = b + l; local in function:wmemset
244 if (b != be && ((uint32_t)be & 1) != 0) {
245 be--;
246 *be = val;
251 while (sp != (uint16_t *)be)
  /src/sys/arch/arm/xscale/
ixp425_pci_space.c 20 * IN NO EVENT SHALL ICHIRO FUKUHARA OR THE VOICES IN HIS HEAD BE LIABLE FOR
263 uint32_t data, n, be; local in function:_pci_io_bs_r_1
267 be = (0xf & ~(1U << n)) << NP_CBE_SHIFT;
271 CSR_WRITE_4(PCI_NP_CBE, be | COMMAND_NP_IO_READ);
283 uint32_t data, n, be; local in function:_pci_io_bs_r_2
287 be = (0xf & ~((1U << n) | (1U << (n + 1)))) << NP_CBE_SHIFT;
291 CSR_WRITE_4(PCI_NP_CBE, be | COMMAND_NP_IO_READ);
321 uint32_t data, n, be; local in function:_pci_io_bs_w_1
325 be = (0xf & ~(1U << n)) << NP_CBE_SHIFT;
330 CSR_WRITE_4(PCI_NP_CBE, be | COMMAND_NP_IO_WRITE)
341 uint32_t data, n, be; local in function:_pci_io_bs_w_2
    [all...]
  /src/sys/dev/ic/
apple_smc.c 27 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
378 /* Paranoia: type must be NULL or 4 non-null characters long. */
426 /* Paranoia: name must be 4 non-null characters long. */
431 /* Paranoia: type must be NULL or 4 non-null characters long. */
545 uint16_t be;
549 error = apple_smc_read_key(smc, key, &be, 2);
554 *p = be16toh(be);
564 uint32_t be;
568 error = apple_smc_read_key(smc, key, &be, 4);
573 *p = be32toh(be);
540 uint16_t be; local in function:apple_smc_read_key_2
559 uint32_t be; local in function:apple_smc_read_key_4
    [all...]
  /src/sys/arch/x86/x86/
x86_autoconf.c 19 * may be used to endorse or promote products derived from this software
25 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
110 * match between BIOS disks and native disks can be done.
116 struct bi_biosgeom_entry *be; local in function:matchbiosdisks
192 be = &big->disk[i];
193 if (be->flags & BI_GEOM_INVALID)
196 i, ck, be->cksum));
197 if (be->cksum == ck && memcmp(&mbr[MBR_PART_OFFSET],
198 be->mbrparts, MBR_PART_COUNT
201 __func__, be->dev, device_xname(dv)))
    [all...]
  /src/lib/libc/nameser/
ns_name.c 13 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR
408 * Unpack a domain name from a message, source may be compressed.
422 * Unpack a domain name from a message, source may be compressed.
486 * there must be a loop.
760 ns_nname_ct ae = a + as, be = b + bs; local in function:ns_name_eq
768 if (a + ac >= ae || b + bc >= be) {
785 /* If A is shorter, it cannot be owned by B. */
799 /* A might be longer or not, but either way, B owns it. */
1124 * MUST be just sufficient to contain the number of bits specified
1126 * hexadecimal or octal digit, they MUST be zero
    [all...]
  /src/sys/nfs/
nfs_serv.c 19 * may be used to endorse or promote products derived from this software
25 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
51 * such as a badly constructed rpc request that should be dropped without
893 * should do, but I might as well be consistent with Version 3,
970 * just enough to ensure data integrity) must be written to
1204 * Now, do VOP_WRITE()s for any one(s) that need to be done now
1372 * NB: Must be called at splsoftclock().
1407 * Otherwise, requests may be lost and clients will be stuck.
1855 * The root of a mounted filesystem cannot be deleted
2674 char *bp, *be; local in function:nfsrv_readdir
2937 char *bp, *be; local in function:nfsrv_readdirplus
    [all...]
  /src/sys/arch/sparc/sparc/
machdep.c 24 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
55 * may be used to endorse or promote products derived from this software
61 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
341 * XXX this entire mess must be fixed
526 * Build the signal context to be used by sigreturn.
688 * Only the icc bits in the psr are used, so it need not be
689 * verified. pc and npc must be multiples of 4. This is all
935 * savecore(8) expects dumpsize to be the number of pages
941 #define BYTES_PER_DUMP (32 * 1024) /* must be a multiple of pagesize */
1179 u_char *be = b + l local in function:wzero
    [all...]

Completed in 21 milliseconds