HomeSort by: relevance | last modified time | path
    Searched defs:small (Results 1 - 25 of 42) 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/libexec/httpd/small/
Makefile 4 # build a 100% lean bozohttpd-small.c
5 PROG= bozohttpd-small
7 SRCS= bozohttpd-small.c content-bozo-small.c ssl-bozo.c main.c
17 bozohttpd-small.c: bozohttpd.c
26 content-bozo-small.c: content-bozo.c
35 CLEANFILES+= content-bozo-small.c bozohttpd-small.c
Makefile 4 # build a 100% lean bozohttpd-small.c
5 PROG= bozohttpd-small
7 SRCS= bozohttpd-small.c content-bozo-small.c ssl-bozo.c main.c
17 bozohttpd-small.c: bozohttpd.c
26 content-bozo-small.c: content-bozo.c
35 CLEANFILES+= content-bozo-small.c bozohttpd-small.c
  /src/lib/libm/noieee_src/
n_asinh.c 87 static const double small=1.0E-10, /* fl(1+small*small) == 1 */ variable in typeref:typename:const double
94 if((t=copysign(x,one))>small)
99 else /* if |x| < small */
n_cosh.c 118 one=1.0, small=1.0E-18; /* fl(1+small)==1 */ variable in typeref:typename:const double
126 if(x<small) { return(one+x); }
n_tanh.c 79 static const double one=1.0, two=2.0, small = 1.0e-10, big = 1.0e10; local in function:tanh
91 else if ( x > small )
n_asinh.c 87 static const double small=1.0E-10, /* fl(1+small*small) == 1 */ variable in typeref:typename:const double
94 if((t=copysign(x,one))>small)
99 else /* if |x| < small */
n_cosh.c 118 one=1.0, small=1.0E-18; /* fl(1+small)==1 */ variable in typeref:typename:const double
126 if(x<small) { return(one+x); }
n_tanh.c 79 static const double one=1.0, two=2.0, small = 1.0e-10, big = 1.0e10; local in function:tanh
91 else if ( x > small )
n_exp__E.c 113 static const double zero=0.0, one=1.0, half=1.0/2.0, small=1.0E-19; variable in typeref:typename:const double
115 if(copysign(x,one)>small) {
130 /* end of |x| > small */
133 if(x!=zero) w=one+small; /* raise the inexact flag ??? -ragge */
n_log1p.c 127 half=1.0/2.0, small=1.0E-20; /* 1+small == 1 */ local in function:__weak_alias
139 if(copysign(x,one)<small) return(x);
n_exp__E.c 113 static const double zero=0.0, one=1.0, half=1.0/2.0, small=1.0E-19; variable in typeref:typename:const double
115 if(copysign(x,one)>small) {
130 /* end of |x| > small */
133 if(x!=zero) w=one+small; /* raise the inexact flag ??? -ragge */
n_log1p.c 127 half=1.0/2.0, small=1.0E-20; /* 1+small == 1 */ local in function:__weak_alias
139 if(copysign(x,one)<small) return(x);
n_cabs.c 108 small=1.0E-18; /* fl(1+small)==1 */ variable in typeref:typename:const double
125 { one+small; return(x); }
192 small=1.0E-18; /* fl(1+small)==1 */
210 { one+small; return(scalb(x,exp)); }
n_cabs.c 108 small=1.0E-18; /* fl(1+small)==1 */ variable in typeref:typename:const double
125 { one+small; return(x); }
192 small=1.0E-18; /* fl(1+small)==1 */
210 { one+small; return(scalb(x,exp)); }
n_atan2.c 180 static const double zero=0, one=1, small=1.0E-9, big=1.0E18; local in function:atan2
230 if (t < small)
231 { big + small ; /* raise inexact flag */
266 { big+small; /* raise inexact flag */
n_atan2.c 180 static const double zero=0, one=1, small=1.0E-9, big=1.0E18; local in function:atan2
230 if (t < small)
231 { big + small ; /* raise inexact flag */
266 { big+small; /* raise inexact flag */
  /src/tests/lib/libc/sys/
t_getlogin.c 51 char small[0]; local in function:ATF_TC_BODY
53 ATF_REQUIRE(getlogin_r(small, sizeof(small)) == ERANGE);
t_getlogin.c 51 char small[0]; local in function:ATF_TC_BODY
53 ATF_REQUIRE(getlogin_r(small, sizeof(small)) == ERANGE);
  /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/sys/dev/ofisa/
ofisa.c 166 char *buf, *bp, small[OFW_MAX_STACK_BUF_SIZE]; local in function:ofisa_reg_get
179 buf = small;
198 if (buf != small)
236 char *buf, *bp, small[OFW_MAX_STACK_BUF_SIZE]; local in function:ofisa_intr_get
249 buf = small;
281 if (buf != small)
318 char *buf, *bp, small[OFW_MAX_STACK_BUF_SIZE]; local in function:ofisa_dma_get
331 buf = small;
349 if (buf != small)
401 char *model, small[OFW_MAX_STACK_BUF_SIZE] local in function:ofisa_print_model
    [all...]
ofisa.c 166 char *buf, *bp, small[OFW_MAX_STACK_BUF_SIZE]; local in function:ofisa_reg_get
179 buf = small;
198 if (buf != small)
236 char *buf, *bp, small[OFW_MAX_STACK_BUF_SIZE]; local in function:ofisa_intr_get
249 buf = small;
281 if (buf != small)
318 char *buf, *bp, small[OFW_MAX_STACK_BUF_SIZE]; local in function:ofisa_dma_get
331 buf = small;
349 if (buf != small)
401 char *model, small[OFW_MAX_STACK_BUF_SIZE] local in function:ofisa_print_model
    [all...]
  /src/lib/libm/arch/vax/
n_argred.S 534 beql small
542 small: label

Completed in 30 milliseconds

1 2