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

1 2 3

  /src/external/bsd/mdocml/dist/
test-strcasestr.c 6 const char *big = "BigString"; local
7 char *cp = strcasestr(big, "Gst");
8 return cp != big + 2;
  /src/lib/libm/noieee_src/
n_acosh.c 91 double t,big=1.E20; /* big+1==big */ local
98 if(x>big) {t=log1p(x)+ln2lo; return(t+ln2hi);}
n_asinh.c 88 big =1.0E20, /* fl(1+big) == big */ local
95 if(t<big) {
97 else /* if |x| > big */
n_tanh.c 79 static const double one=1.0, two=2.0, small = 1.0e-10, big = 1.0e10; local
94 { t = big+x; return(copysign(x,sign));} /* ??? -ragge */
n_exp2.c 349 int k, big; local
376 big = k >= 3075 << 20;
377 if (big) {
389 if (big) {
n_atan2.c 180 static const double zero=0, one=1, small=1.0E-9, big=1.0E18; local
215 if((m=(k=logb(y))-logb(x)) > 60) t=big+big;
231 { big + small ; /* raise inexact flag */
261 /* t is in [2.4375, big] */
262 if (t <= big) t = - x / y;
264 /* t is in [big, INF] */
266 { big+small; /* raise inexact flag */
  /src/external/bsd/ntp/dist/util/
byteorder.c 23 int big; local
35 if (u.c[0] == 0x08) big = 1;
36 else big = 0;
38 if (u.c[0] == 0x04) big = 1;
39 else big = 0;
42 if (big == 1 && (u.c[i] == (sizeof(long) - i))) {
44 } else if (big == 0 && (u.c[i] == (i+1))) {
47 big = -1;
52 if (big == 1) {
54 } else if (big == 0)
    [all...]
  /src/external/gpl3/gcc/dist/gcc/config/pdp11/
pdp11-protos.h 32 typedef enum { little, either, big } pdp11_partorder; enumerator in enum:__anon13400
  /src/external/gpl3/gcc.old/dist/gcc/config/pdp11/
pdp11-protos.h 32 typedef enum { little, either, big } pdp11_partorder; enumerator in enum:__anon15834
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Orc/
TPCEHFrameRegistrar.cpp 59 support::endianness::big); member in class:llvm::orc::support::endianness
72 support::endianness::big); member in class:llvm::orc::support::endianness
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
Endian.h 27 enum endianness {big, little, native}; enumerator in enum:llvm::support::endianness
45 return sys::IsBigEndianHost ? big : little;
298 detail::packed_endian_specific_integral<uint16_t, big, unaligned>;
300 detail::packed_endian_specific_integral<uint32_t, big, unaligned>;
302 detail::packed_endian_specific_integral<uint64_t, big, unaligned>;
305 detail::packed_endian_specific_integral<int16_t, big, unaligned>;
307 detail::packed_endian_specific_integral<int32_t, big, unaligned>;
309 detail::packed_endian_specific_integral<int64_t, big, unaligned>;
312 detail::packed_endian_specific_integral<uint16_t, big, aligned>;
314 detail::packed_endian_specific_integral<uint32_t, big, aligned>
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Orc/TargetProcess/
RegisterEHFrames.cpp 170 support::endianness::big); member in class:support::endianness
196 support::endianness::big); member in class:support::endianness
JITLoaderGDB.cpp 74 support::endianness::big); member in class:support::endianness
  /src/external/mit/isl/dist/
isl_int_sioimath.c 6 extern int isl_sioimath_decode(isl_sioimath val, int32_t *small, mp_int *big);
7 extern int isl_sioimath_decode_big(isl_sioimath val, mp_int *big);
202 mp_int big; local
210 big = isl_sioimath_get_big(i);
211 len = mp_int_string_len(big, 10);
213 mp_int_to_string(big, 10, buf, len);
  /src/lib/libc/gdtoa/
gethex.c 45 int big, esign, havedig, irv, j, k, n, n0, nbits, up, zret; local
109 big = esign = 0;
127 big = 1;
139 if (big) {
  /src/external/gpl3/gcc/dist/libquadmath/math/
expm1q.c 83 minarg = -7.9018778583833765273564461846232128760607E1Q, big = 1e4932Q; variable
119 return (4.0/big - 1);
  /src/external/gpl3/gcc.old/dist/libquadmath/math/
expm1q.c 83 minarg = -7.9018778583833765273564461846232128760607E1Q, big = 1e4932Q; variable
119 return (4.0/big - 1);
  /src/lib/libc/stdlib/
merge.c 116 int big, iflag; local
145 i = big = 0;
166 if (!big) { /* here i = 0 */
173 big = 1;
190 big = 0;
  /src/sys/arch/amiga/amiga/
disksubr.c 106 } big[0]; member in struct:rdbmap
  /src/sys/arch/x86/x86/
x86_autoconf.c 115 struct btinfo_biosgeom *big; local
127 big = lookup_bootinfo(BTINFO_BIOSGEOM);
129 numbig = big ? big->num : 0;
147 x86_alldisks->dl_biosdisks[i].bi_dev = big->disk[i].dev;
148 x86_alldisks->dl_biosdisks[i].bi_sec = big->disk[i].sec;
149 x86_alldisks->dl_biosdisks[i].bi_head = big->disk[i].head;
150 x86_alldisks->dl_biosdisks[i].bi_cyl = big->disk[i].cyl;
151 x86_alldisks->dl_biosdisks[i].bi_lbasecs = big->disk[i].totsec;
152 x86_alldisks->dl_biosdisks[i].bi_flags = big->disk[i].flags
338 struct btinfo_biosgeom *big; local
    [all...]
  /src/crypto/external/apache2/openssl/dist/providers/implementations/kdfs/
kbkdf.c 93 uint32_t big = 0; local
99 big |= (host & 0xff000000) >> 24;
100 big |= (host & 0x00ff0000) >> 8;
101 big |= (host & 0x0000ff00) << 8;
102 big |= (host & 0x000000ff) << 24;
103 return big;
  /src/crypto/external/bsd/openssl/dist/providers/implementations/kdfs/
kbkdf.c 88 uint32_t big = 0; local
94 big |= (host & 0xff000000) >> 24;
95 big |= (host & 0x00ff0000) >> 8;
96 big |= (host & 0x0000ff00) << 8;
97 big |= (host & 0x000000ff) << 24;
98 return big;
  /src/external/gpl3/binutils/dist/gas/config/
tc-pj.c 43 big (int ignore ATTRIBUTE_UNUSED) function
51 {"mb", big, 0},
331 {"big", no_argument, NULL, OPTION_BIG},
345 big (0);
359 -big generate big endian code\n"));
457 executable section into big endian order. */
  /src/external/gpl3/binutils.old/dist/gas/config/
tc-pj.c 43 big (int ignore ATTRIBUTE_UNUSED) function
51 {"mb", big, 0},
331 {"big", no_argument, NULL, OPTION_BIG},
345 big (0);
359 -big generate big endian code\n"));
457 executable section into big endian order. */
  /src/crypto/external/bsd/openssl.old/dist/crypto/bn/
rsa_sup_mul.c 414 * smallest power of two big enough to fit mod and that's also a power
476 uint64_t big = 0; local
478 big |= (host & 0xff00000000000000) >> 56;
479 big |= (host & 0x00ff000000000000) >> 40;
480 big |= (host & 0x0000ff0000000000) >> 24;
481 big |= (host & 0x000000ff00000000) >> 8;
482 big |= (host & 0x00000000ff000000) << 8;
483 big |= (host & 0x0000000000ff0000) << 24;
484 big |= (host & 0x000000000000ff00) << 40;
485 big |= (host & 0x00000000000000ff) << 56
502 uint32_t big = 0; local
    [all...]

Completed in 103 milliseconds

1 2 3