HomeSort by: relevance | last modified time | path
    Searched defs:small (Results 1 - 25 of 40) sorted by relevancy

1 2

  /src/lib/libc/arch/mips/string/
bcmp.S 52 blt a2, 16, small # is it worth any trouble?
79 b small # finish remainder
106 small: label
bcmp.S 52 blt a2, 16, small # is it worth any trouble?
79 b small # finish remainder
106 small: label
  /src/lib/libm/noieee_src/
n_asinh.c 87 static const double small=1.0E-10, /* fl(1+small*small) == 1 */ local
94 if((t=copysign(x,one))>small)
99 else /* if |x| < small */
n_tanh.c 79 static const double one=1.0, two=2.0, small = 1.0e-10, big = 1.0e10; local
91 else if ( x > small )
n_asinh.c 87 static const double small=1.0E-10, /* fl(1+small*small) == 1 */ local
94 if((t=copysign(x,one))>small)
99 else /* if |x| < small */
n_tanh.c 79 static const double one=1.0, two=2.0, small = 1.0e-10, big = 1.0e10; local
91 else if ( x > small )
n_cosh.c 118 one=1.0, small=1.0E-18; /* fl(1+small)==1 */ local
126 if(x<small) { return(one+x); }
n_log1p.c 127 half=1.0/2.0, small=1.0E-20; /* 1+small == 1 */ local
139 if(copysign(x,one)<small) return(x);
n_cosh.c 118 one=1.0, small=1.0E-18; /* fl(1+small)==1 */ local
126 if(x<small) { return(one+x); }
n_log1p.c 127 half=1.0/2.0, small=1.0E-20; /* 1+small == 1 */ local
139 if(copysign(x,one)<small) return(x);
n_cabs.c 108 small=1.0E-18; /* fl(1+small)==1 */ local
125 { one+small; return(x); } local
192 small=1.0E-18; /* fl(1+small)==1 */
210 { one+small; return(scalb(x,exp)); }
n_exp__E.c 113 static const double zero=0.0, one=1.0, half=1.0/2.0, small=1.0E-19; local
115 if(copysign(x,one)>small) {
130 /* end of |x| > small */
133 if(x!=zero) w=one+small; /* raise the inexact flag ??? -ragge */
n_cabs.c 108 small=1.0E-18; /* fl(1+small)==1 */ local
125 { one+small; return(x); } local
192 small=1.0E-18; /* fl(1+small)==1 */
210 { one+small; return(scalb(x,exp)); }
n_exp__E.c 113 static const double zero=0.0, one=1.0, half=1.0/2.0, small=1.0E-19; local
115 if(copysign(x,one)>small) {
130 /* end of |x| > small */
133 if(x!=zero) w=one+small; /* raise the inexact flag ??? -ragge */
n_atan2.c 180 static const double zero=0, one=1, small=1.0E-9, big=1.0E18; local
230 if (t < small)
231 { big + small ; /* raise inexact flag */ local
266 { big+small; /* raise inexact flag */ local
n_atan2.c 180 static const double zero=0, one=1, small=1.0E-9, big=1.0E18; local
230 if (t < small)
231 { big + small ; /* raise inexact flag */ local
266 { big+small; /* raise inexact flag */ local
  /src/common/lib/libc/arch/sh3/string/
memset.S 55 /* small amount to fill ? */
59 mov #12,REG_TMP1 /* if (len >= 12) goto small; */
61 bt/s small
95 small: label
149 /* 2 bytes aligned small fill */
memset.S 55 /* small amount to fill ? */
59 mov #12,REG_TMP1 /* if (len >= 12) goto small; */
61 bt/s small
95 small: label
149 /* 2 bytes aligned small fill */
  /src/tests/lib/libc/sys/
t_getlogin.c 51 char small[0]; local
53 ATF_REQUIRE(getlogin_r(small, sizeof(small)) == ERANGE);
t_getlogin.c 51 char small[0]; local
53 ATF_REQUIRE(getlogin_r(small, sizeof(small)) == ERANGE);
  /src/sys/dev/ofisa/
ofisa.c 166 char *buf, *bp, small[OFW_MAX_STACK_BUF_SIZE]; local
179 buf = small;
198 if (buf != small)
236 char *buf, *bp, small[OFW_MAX_STACK_BUF_SIZE]; local
249 buf = small;
281 if (buf != small)
318 char *buf, *bp, small[OFW_MAX_STACK_BUF_SIZE]; local
331 buf = small;
349 if (buf != small)
401 char *model, small[OFW_MAX_STACK_BUF_SIZE] local
    [all...]
ofisa.c 166 char *buf, *bp, small[OFW_MAX_STACK_BUF_SIZE]; local
179 buf = small;
198 if (buf != small)
236 char *buf, *bp, small[OFW_MAX_STACK_BUF_SIZE]; local
249 buf = small;
281 if (buf != small)
318 char *buf, *bp, small[OFW_MAX_STACK_BUF_SIZE]; local
331 buf = small;
349 if (buf != small)
401 char *model, small[OFW_MAX_STACK_BUF_SIZE] local
    [all...]
  /src/lib/libm/arch/vax/
n_argred.S 534 beql small
542 small: label
n_argred.S 534 beql small
542 small: label
  /src/libexec/ld.elf_so/
paths.c 341 char *buf, small[128]; local
353 buf = small;
355 sz = read(fd, buf, sizeof(small));
361 if (sz >= (ssize_t)sizeof(small)) {
408 if (buf != small)

Completed in 42 milliseconds

1 2