HomeSort by: relevance | last modified time | path
    Searched defs:small (Results 1 - 25 of 49) 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
  /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_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_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 */
  /src/tests/lib/libc/sys/
t_getlogin.c 51 char small[0]; local
53 ATF_REQUIRE(getlogin_r(small, sizeof(small)) == ERANGE);
  /src/external/bsd/jemalloc/dist/include/jemalloc/internal/
jemalloc_internal_decls.h 100 * The Win32 midl compiler has #define small char; we don't use midl, but
101 * "small" is a nice identifier to have available when talking about size
104 #ifdef small
105 # undef small macro
  /src/external/bsd/jemalloc/include/jemalloc/internal/
jemalloc_internal_decls.h 100 * The Win32 midl compiler has #define small char; we don't use midl, but
101 * "small" is a nice identifier to have available when talking about size
104 #ifdef small
105 # undef small macro
  /src/external/gpl3/binutils/dist/libiberty/
objalloc.c 49 We handle large and small allocation requests differently. If we
64 contains small objects, this is NULL. */
75 hold small objects. */
204 struct objalloc_chunk *p, *small; local
208 and set Q to the last small object chunk we see before P. */
209 small = NULL;
216 small = p;
234 /* The block is in a chunk containing small objects. We can
235 free every chunk through SMALL, because they have certainly
236 been allocated more recently. After SMALL, we will not se
    [all...]
  /src/external/gpl3/binutils.old/dist/libiberty/
objalloc.c 49 We handle large and small allocation requests differently. If we
64 contains small objects, this is NULL. */
75 hold small objects. */
200 struct objalloc_chunk *p, *small; local
204 and set Q to the last small object chunk we see before P. */
205 small = NULL;
212 small = p;
230 /* The block is in a chunk containing small objects. We can
231 free every chunk through SMALL, because they have certainly
232 been allocated more recently. After SMALL, we will not se
    [all...]
  /src/external/gpl3/gcc/dist/libiberty/
objalloc.c 49 We handle large and small allocation requests differently. If we
64 contains small objects, this is NULL. */
75 hold small objects. */
200 struct objalloc_chunk *p, *small; local
204 and set Q to the last small object chunk we see before P. */
205 small = NULL;
212 small = p;
230 /* The block is in a chunk containing small objects. We can
231 free every chunk through SMALL, because they have certainly
232 been allocated more recently. After SMALL, we will not se
    [all...]
  /src/external/gpl3/gcc.old/dist/libiberty/
objalloc.c 49 We handle large and small allocation requests differently. If we
64 contains small objects, this is NULL. */
75 hold small objects. */
200 struct objalloc_chunk *p, *small; local
204 and set Q to the last small object chunk we see before P. */
205 small = NULL;
212 small = p;
230 /* The block is in a chunk containing small objects. We can
231 free every chunk through SMALL, because they have certainly
232 been allocated more recently. After SMALL, we will not se
    [all...]
  /src/external/gpl3/gdb/dist/libiberty/
objalloc.c 49 We handle large and small allocation requests differently. If we
64 contains small objects, this is NULL. */
75 hold small objects. */
200 struct objalloc_chunk *p, *small; local
204 and set Q to the last small object chunk we see before P. */
205 small = NULL;
212 small = p;
230 /* The block is in a chunk containing small objects. We can
231 free every chunk through SMALL, because they have certainly
232 been allocated more recently. After SMALL, we will not se
    [all...]
  /src/external/gpl3/gdb.old/dist/libiberty/
objalloc.c 49 We handle large and small allocation requests differently. If we
64 contains small objects, this is NULL. */
75 hold small objects. */
200 struct objalloc_chunk *p, *small; local
204 and set Q to the last small object chunk we see before P. */
205 small = NULL;
212 small = p;
230 /* The block is in a chunk containing small objects. We can
231 free every chunk through SMALL, because they have certainly
232 been allocated more recently. After SMALL, we will not se
    [all...]
  /src/external/mit/isl/dist/
isl_int_sioimath.c 6 extern int isl_sioimath_decode(isl_sioimath val, int32_t *small, mp_int *big);
8 extern int isl_sioimath_decode_small(isl_sioimath val, int32_t *small);
82 * two values in small representation.
167 * If it has less than 10 characters then it will fit into the small
172 int32_t small; local
175 small = strtol(str, NULL, 10);
176 isl_sioimath_set_small(dst, small);
201 int32_t small; local
205 if (isl_sioimath_decode_small(i, &small)) {
206 fprintf(out, "%*" PRIi32, width, small);
    [all...]
  /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...]
  /src/crypto/external/bsd/netpgp/dist/src/netpgpverify/
netpgpv-bzlib.h 82 # ifdef small
83 /* windows.h define small to char */
84 # undef small macro
121 int small
145 int small,
221 int small,
  /src/external/bsd/bzip2/dist/
bzlib.h 82 # ifdef small
83 /* windows.h define small to char */
84 # undef small macro
121 int small
145 int small,
221 int small,
  /src/external/gpl2/groff/dist/src/preproc/eqn/
delim.cpp 28 // Small must be none-zero and must exist in each device.
29 // Small will be put in the roman font, others are assumed to be
35 const char *small; member in struct:delimiter
318 current_roman_font, d->small, axis_height,
319 current_roman_font, d->small);
  /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
353 buf = small;
355 sz = read(fd, buf, sizeof(small));
361 if (sz >= (ssize_t)sizeof(small)) {
408 if (buf != small)

Completed in 31 milliseconds

1 2