/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
|
/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
|
/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_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_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);
|
/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 */
|
/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...] |
/src/lib/libm/arch/vax/ |
n_argred.S | 534 beql small 542 small: label
|
/src/libexec/ld.elf_so/ |
paths.c | 341 char *buf, small[128]; local in function:_rtld_process_hints 353 buf = small; 355 sz = read(fd, buf, sizeof(small)); 361 if (sz >= (ssize_t)sizeof(small)) { 408 if (buf != small)
|
/src/sys/external/bsd/drm2/dist/drm/ttm/ |
ttm_page_alloc.c | 95 unsigned small; member in struct:ttm_pool_opts 109 * @small_allocation: Limit in number of pages what is small allocation. 175 m->options.small = val; 202 val = m->options.small; 574 * pages is small. 593 /* If allocation request is small and there are not enough 595 if (count < _manager->options.small 999 _manager->options.small = SMALL_ALLOCATION;
|
ttm_page_alloc_dma.c | 142 unsigned small; member in struct:ttm_pool_opts 223 m->options.small = val; 250 val = m->options.small; 794 unsigned count = _manager->options.small; 1181 _manager->options.small = SMALL_ALLOCATION;
|
/src/sys/dev/scsipi/ |
sd.c | 223 struct scsi_mode_parameter_header_6 small; member in union:sd_mode_sense_data::__anonb847906b010a 1625 bdesc = (void *)(&scsipi_sense.header.small + 1); 1626 bsize = scsipi_sense.header.small.blk_desc_len; 1699 poffset = sizeof scsipi_sense.header.small; 1700 poffset += scsipi_sense.header.small.blk_desc_len; 1784 poffset = sizeof scsipi_sense.header.small; 1785 poffset += scsipi_sense.header.small.blk_desc_len; 1946 pages = (void *)(&scsipi_sense.header.small + 1); 1947 dev_spec = scsipi_sense.header.small.dev_spec; 1973 pages = (void *)(&scsipi_sense.header.small + 1) [all...] |
cd.c | 811 * fit in a "small" cdb, use it. 817 * We can fit in a small cdb. 2193 struct scsi_mode_parameter_header_6 small; member in union:cd_set_pa_immed::__anonb83eca5b0108::__anonb83eca5b020a 2220 page = (void *)((u_long)&data.header.small + 2221 sizeof data.header.small + 2222 data.header.small.blk_desc_len); 2240 struct scsi_mode_parameter_header_6 small; member in union:cd_setchan::__anonb83eca5b0308::__anonb83eca5b040a 2266 page = (void *)((u_long)&data.header.small + 2267 sizeof data.header.small + 2268 data.header.small.blk_desc_len) 2285 struct scsi_mode_parameter_header_6 small; member in union:cd_getvol::__anonb83eca5b0508::__anonb83eca5b060a 2328 struct scsi_mode_parameter_header_6 small; member in union:cd_setvol::__anonb83eca5b0708::__anonb83eca5b080a 2400 struct scsi_mode_parameter_header_6 small; member in union:cd_setblksize::__anonb83eca5b0908::__anonb83eca5b0a0a [all...] |
/src/usr.bin/stat/ |
stat.c | 671 int small; /* true if datum is a small integer */ local in function:format1 677 small = 0; 691 small = (sizeof(st->st_dev) == 4); 725 small = (sizeof(st->st_ino) == 4); 733 small = (sizeof(st->st_mode) == 4); 765 small = (sizeof(st->st_dev) == 4); 773 small = (sizeof(st->st_uid) == 4); 787 small = (sizeof(st->st_gid) == 4); 835 small = (sizeof(secs) == 4) [all...] |
/src/usr.bin/kdump/ |
kdump.c | 95 #define small(v) (((long)(v) >= 0) && ((long)(v) < 10)) macro 868 output_long((long)*ap, !(decimal || small(*ap))); 883 output_long((long)*ap, !(decimal || small(*ap))); 899 output_long((long)*ap, !(decimal || small(*ap))); 907 !(decimal || small(*ap))); 932 !(decimal || small(*ap))); 966 output_long((long)ap[0], !(decimal || small(*ap))); 973 output_long((long)ap[0], !(decimal || small(ap[0]))); 976 output_long((long)ap[1], !(decimal || small(ap[1]))); 985 output_long((long)ap[0], !(decimal || small(ap[0]))) [all...] |
/src/sys/external/bsd/drm2/dist/drm/i915/ |
intel_pm.c | 643 * intel_wm_method1 - Method 1 / "small buffer" watermark formula 648 * Compute the watermark using the method 1 or "small buffer" 655 * a longer period. The name "small" refers to the fact the 656 * FIFO is relatively small compared to the amount of data 944 * "If the line size is small, the TLB fetches can get in the way of the 1166 unsigned int small, large; local in function:g4x_compute_wm 1168 small = intel_wm_method1(clock, cpp, latency); 1171 wm = min(small, large); 6259 * - lines are small relative to FIFO size (buffer can hold more than 2
|