Searched refs:small (Results 1 - 25 of 69) sorted by relevance

123

/illumos-gate/usr/src/common/lvm/
H A Dmd_convert.c114 * given a small stripe unit, compute the size of an appropriate
156 * small stripe unit.
158 * in the new small unit.
169 /* Compute the size of the new small ms_unit */
189 * stripe_convert(small, big, dir)
192 * small is the address of a ms_unit32_od_t structure
198 * if dir is BIG2SMALL, convert from big to small (updating old records)
199 * if dir is SMALL2BIG, convert from small to big (snarfing old records)
201 * Caveat emptor: big and small must be well allocated memory areas.
205 stripe_convert(caddr_t small, caddr_ argument
301 mirror_convert(caddr_t small, caddr_t big, int direction) argument
389 raid_convert(caddr_t small, caddr_t big, int direction) argument
445 softpart_convert(caddr_t small, caddr_t big, int direction) argument
490 mt_unit32_od_t *small = (mt_unit32_od_t *)smallp; local
575 ml_unit32_od_t *small = (ml_unit32_od_t *)smallp; local
653 hs_convert(caddr_t small, caddr_t big, int direction) argument
[all...]
/illumos-gate/usr/src/lib/libm/common/C/
H A Dtanh.c65 small = 1.0e-10, variable
83 else if (t > small) {
97 return (signx == 1 ? -z + small * small : z - small * small);
/illumos-gate/usr/src/lib/libm/common/LD/
H A Dtanhl.c38 * 0 < x <= small : tanhl(x) := x
40 * small < x <= 1 : tanhl(x) := --------------
48 * single : small = 1.e-5 threshold = 11.0
49 * double : small = 1.e-10 threshold = 22.0
50 * quad : small = 1.e-20 threshold = 45.0
63 static const long double small = 1.0e-20L, one = 1.0, two = 2.0, variable
85 else if (t > small) {
98 return (signx ? -z + small * small : z - small * smal
[all...]
/illumos-gate/usr/src/lib/libm/common/Q/
H A Dtanhl.c38 * 0 < x <= small : tanhl(x) := x
40 * small < x <= 1 : tanhl(x) := --------------
48 * single : small = 1.e-5 threshold = 11.0
49 * double : small = 1.e-10 threshold = 22.0
50 * quad : small = 1.e-20 threshold = 45.0
63 static const long double small = 1.0e-20L, one = 1.0, two = 2.0, variable
85 else if (t > small) {
98 return (signx ? -z + small * small : z - small * smal
[all...]
H A Dasinl.c46 static const long double zero = 0.0L, small = 1.0e-20L, half = 0.5L, one = 1.0L; variable
62 if (w < small) {
/illumos-gate/usr/src/lib/libsaveargs/tests/functional/
H A DMakefile25 small-struct-ret \
26 small-struct-ret-and-spill \
H A Dtest.sh35 tester small-struct-ret "test (1, 2, 3, 4)"
36 tester small-struct-ret-and-spill "test (1, 2, 3, 4, 5, 6, 7, 8)"
/illumos-gate/usr/src/cmd/tbl/
H A Dts.c30 prefix(char *small, char *big) argument
33 while ((c= *small++) == *big++)
/illumos-gate/usr/src/uts/common/sys/lvm/
H A Dmd_convert.h344 #define MHS_BIG2SMALL(big, small) \
345 small->hs_revision = big->hs_revision; \
346 small->hs_record_id = big->hs_record_id; \
347 small->xx_hs_next = 0; \
348 small->hs_devnum = md_cmpldev(big->hs_devnum); \
349 small->hs_key = big->hs_key; \
350 small->hs_start_blk = (daddr32_t)big->hs_start_blk; \
351 small->hs_has_label = big->hs_has_label; \
352 small->hs_number_blks = (daddr32_t)big->hs_number_blks; \
353 small
[all...]
/illumos-gate/usr/src/lib/libast/common/uwin/
H A Dasinh.c91 const static double small=1.0E-10, /* fl(1+small*small) == 1 */ local
98 if((t=copysign(x,one))>small)
103 else /* if |x| < small */
H A Dexp__E.c117 const static double zero=0.0, one=1.0, half=1.0/2.0, small=1.0E-19; local
119 if(copysign(x,one)>small) {
134 /* end of |x| > small */
137 if(x!=zero) one+small; /* raise the inexact flag */ local
H A Dlog1p.c122 half=1.0/2.0, small=1.0E-20; /* 1+small == 1 */ local
134 if(copysign(x,one)<small) return(x);
/illumos-gate/usr/src/test/zfs-tests/tests/functional/rsend/
H A Dsend-cpL_varied_recsize.ksh162 typeset small=$((128 * 1024))
168 for recsize in $small $large; do
178 check $opts $small log_must
181 check $opts $small log_mustnot
191 check -p $large log_must $small $large
192 check -L $large log_must $large $small
193 check -cp $large log_must $small $large
194 check -cL $large log_must $large $small
/illumos-gate/usr/src/lib/libc/capabilities/sun4u/common/
H A Dmemset.s61 cmp %o2, 12 ! if small counts, just write bytes
/illumos-gate/usr/src/lib/libc/capabilities/sun4u-us3/common/
H A Dmemset.s62 cmp %o2, 12 ! if small counts, just write bytes
/illumos-gate/usr/src/common/bzip2/
H A Dbzlib.h83 # ifdef small
84 /* windows.h define small to char */
85 # undef small macro
132 int small
164 int small,
240 int small,
/illumos-gate/usr/src/boot/sys/boot/sparc64/boot1/
H A DMakefile12 CFLAGS.clang+=-mcmodel=small
/illumos-gate/usr/src/lib/libc/sparc/gen/
H A Dmemmove.s43 cmp %i2, 17 ! delay slot, for small counts copy bytes
48 cmp %i2, 17 ! delay slot, for small counts copy bytes
H A Dmemcpy.s58 cmp %o2, 17 ! for small counts copy bytes
H A Dmemset.s57 cmp %o2, 7 ! if small counts, just write bytes
/illumos-gate/usr/src/lib/libc/sparcv9/gen/
H A Dmemmove.s43 cmp %i2, 17 ! delay slot, for small counts copy bytes
48 cmp %i2, 17 ! delay slot, for small counts copy bytes
H A Dmemcpy.s62 cmp %o2, 17 ! for small counts copy bytes
H A Dmemset.s53 * For small stores (6 or fewer bytes), bytes will be stored one at a time.
80 blu,pn %xcc, .wrchar ! small count: just set bytes
/illumos-gate/usr/src/lib/libc/sparcv9/crt/
H A D__align_cpy_2.s45 cmp %o2, 18 ! for small counts copy bytes
/illumos-gate/usr/src/uts/sun4/ml/
H A Dcopy.s89 ! are small and this takes a small number of cache lines.
152 ! are small and this takes a small number of cache lines.
222 ! are small and this takes a small number of cache lines.
287 ! are small and this takes a small number of cache lines.
357 ! are small and this takes a small numbe
[all...]

Completed in 117 milliseconds

123