Searched refs:big (Results 1 - 25 of 44) sorted by relevance

12

/freebsd-9.3-release/contrib/ntp/util/
H A Dbyteorder.c21 int big; local
33 if (u.c[0] == 0x08) big = 1;
34 else big = 0;
36 if (u.c[0] == 0x04) big = 1;
37 else big = 0;
40 if (big == 1 && (u.c[i] == (sizeof(long) - i))) {
42 } else if (big == 0 && (u.c[i] == (i+1))) {
45 big = -1;
50 if (big == 1) {
52 } else if (big
[all...]
/freebsd-9.3-release/tools/regression/lib/msun/
H A Dtest-fmaxmin.c79 testall_r(long double big, long double small) argument
83 long double expected_max = isnan(big) ? small : big;
84 long double expected_min = isnan(small) ? big : small;
87 TEST(fmaxf, float, big, small, expected_max);
88 TEST(fmaxf, float, small, big, expected_max);
89 TEST(fmax, double, big, small, expected_max);
90 TEST(fmax, double, small, big, expected_max);
91 TEST(fmaxl, long double, big, small, expected_max);
92 TEST(fmaxl, long double, small, big, expected_ma
109 testall(int testnum, long double big, long double small) argument
[all...]
/freebsd-9.3-release/contrib/llvm/include/llvm/Support/
H A DEndian.h24 enum endianness {big, little, native}; enumerator in enum:llvm::support::endianness
40 if (endian != native && sys::IsBigEndianHost != (endian == big))
128 <uint8_t, big, unaligned> ubig8_t;
130 <uint16_t, big, unaligned> ubig16_t;
132 <uint32_t, big, unaligned> ubig32_t;
134 <uint64_t, big, unaligned> ubig64_t;
137 <int8_t, big, unaligned> big8_t;
139 <int16_t, big, unaligned> big16_t;
141 <int32_t, big, unaligned> big32_t;
143 <int64_t, big, unaligne
[all...]
/freebsd-9.3-release/contrib/llvm/lib/Object/
H A DELFObjectFile.cpp41 return new ELFObjectFile<ELFType<support::big, 4, false> >(Object, ec);
45 return new ELFObjectFile<ELFType<support::big, 2, false> >(Object, ec);
51 return new ELFObjectFile<ELFType<support::big, 8, true> >(Object, ec);
55 return new ELFObjectFile<ELFType<support::big, 2, true> >(Object, ec);
/freebsd-9.3-release/contrib/sendmail/libsm/
H A Dt-shm.c205 int big = -1; local
217 big = atoi(optarg);
235 else if (big > 0)
236 r = shmbig(true, big);
/freebsd-9.3-release/usr.bin/locate/code/
H A Dlocate.code.c114 #define BGINDEX(x) (big[(u_char)*x][(u_char)*(x + 1)])
116 bg_t big[UCHAR_MAX + 1][UCHAR_MAX + 1]; variable
159 big[i][j] = (bg_t)-1;
162 big[(u_char)*cp][(u_char)*(cp + 1)] = (bg_t)i;
/freebsd-9.3-release/share/i18n/esdb/UTF/
H A DMakefile10 UTF-16BE-var= utf16,big,force
20 UTF-32BE-var= utf32,big,force
/freebsd-9.3-release/usr.bin/locate/locate/
H A Dfastfind.c49 register int lines, chars, size, big, zwerg; local
60 lines = chars = big = zwerg = umlaut = 0;
81 big++;
92 (size + big - (2 * NBG)) / (chars / (float)100));
93 (void)printf("Bigram: %2.2f%%, ", (size - big) / (size / (float)100));
99 (void)printf("Bigram characters: %d, ", big);
205 if (c == SWITCH) { /* big step, an integer */
/freebsd-9.3-release/release/powerpc/
H A Dmake-memstick.sh37 makefs -B big ${tempfile} ${1}
/freebsd-9.3-release/contrib/bind9/lib/isc/include/isc/
H A Dstring.h230 isc_string_strcasestr(const char *big, const char *little);
/freebsd-9.3-release/lib/libc/stdlib/
H A Dmerge.c106 int big, iflag; local
132 i = big = 0;
153 if (!big) { /* here i = 0 */
156 big = 1;
171 big = 0;
/freebsd-9.3-release/contrib/gdtoa/
H A Dgethex.c48 int big, esign, havedig, irv, j, k, n, n0, nbits, up, zret; local
125 big = esign = 0;
143 big = 1;
155 if (big) {
/freebsd-9.3-release/cddl/contrib/opensolaris/tools/ctf/cvt/
H A Dctfmerge.c239 size_t big, *size; local
258 /* set big to the largest allowed page size */
259 big = size[sizes - 1];
260 if (big & (big - 1)) {
271 if (brk((void *)((((uintptr_t)sbrk(0) - 1) & ~(big - 1)) + big)) != 0)
279 mha.mha_pagesize = big;
/freebsd-9.3-release/contrib/bind9/lib/dns/include/dns/
H A Drrl.h151 #error DNS_RRL_LOG_BITS is too big
/freebsd-9.3-release/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldELF.cpp196 DyldELFObject<ELFType<support::big, 4, false> > *Obj =
197 new DyldELFObject<ELFType<support::big, 4, false> >(
199 return new ELFObjectImage<ELFType<support::big, 4, false> >(Buffer, Obj);
202 DyldELFObject<ELFType<support::big, 8, true> > *Obj =
203 new DyldELFObject<ELFType<support::big, 8, true> >(
205 return new ELFObjectImage<ELFType<support::big, 8, true> >(Buffer, Obj);
/freebsd-9.3-release/lib/libiconv_modules/UTF1632/
H A Dcitrus_utf1632.c353 MATCH(big, ei->preffered_endian = _ENDIAN_BIG);
/freebsd-9.3-release/contrib/gcc/config/arm/
H A Dlib1funcs.asm384 @ Unless the divisor is very big, shift it up in multiples of
394 @ For very big divisors, we must shift it a bit at a time, or
487 @ Unless the divisor is very big, shift it up in multiples of
497 @ For very big divisors, we must shift it a bit at a time, or
552 @ Unless the divisor is very big, shift it up in multiples of
567 @ For very big divisors, we must shift it a bit at a time, or
H A Dieee754-df.S44 @ For FPA, float words are always big-endian.
508 @ The value is too big. Scale it down a bit...
/freebsd-9.3-release/contrib/gcclibs/libcpp/
H A Dlex.c1608 /* Return a buffer that's big enough, but don't waste one that's
1609 way too big. */
/freebsd-9.3-release/contrib/llvm/include/llvm/Object/
H A DELF.h416 typedef ELFFile<ELFType<support::big, 2, false> > ELF32BEFile;
417 typedef ELFFile<ELFType<support::big, 2, true> > ELF64BEFile;
H A DELFObjectFile.h207 typedef ELFObjectFile<ELFType<support::big, 2, false> > ELF32BEObjectFile;
208 typedef ELFObjectFile<ELFType<support::big, 2, true> > ELF64BEObjectFile;
/freebsd-9.3-release/contrib/binutils/bfd/
H A Decoff.c242 int big, little;
252 big = MIPS_MAGIC_BIG;
257 big = MIPS_MAGIC_BIG2;
262 big = MIPS_MAGIC_BIG3;
267 return bfd_big_endian (abfd) ? big : little;
600 is when linking big-endian and little-endian MIPS object files
2380 /* Allocate buff big enough to hold a section header,
241 int big, little; local
/freebsd-9.3-release/contrib/sendmail/src/
H A Dconf.c3373 ** know how big the message will be, so just check for
4117 ** followed by a legal input character, is too big. One that
4125 ** the number is too big, and we will return a range error.
4165 ** big -- the big (full) string.
4169 ** A pointer to the first instance of little in big.
4170 ** big if little is the null string.
4171 ** NULL if little is not contained in big.
4177 strstr(big, little)
4178 char *big;
[all...]
/freebsd-9.3-release/usr.sbin/ppp/
H A Dcommand.c417 strstrword(char *big, const char *little) argument
419 /* Get the first occurance of the word ``little'' in ``big'' */
423 pos = big;
427 if ((pos != big && isinword(pos[-1])) || isinword(pos[len]))
429 else if (pos != big && pos[-1] == '\\')
1873 log_Printf(LogWARN, "MRRU %ld: too big - max %d\n", long_val, MAX_MRU);
1928 log_Printf(LogWARN, "MRU %ld: too big - max %d\n", long_val, MAX_MRU);
1984 log_Printf(LogWARN, "MTU %ld: too big - max %d\n", long_val, MAX_MTU);
/freebsd-9.3-release/contrib/nvi/build/
H A Dconfigure1960 not big endian
1984 /* Are we little or big endian? From Harbison&Steele. */

Completed in 384 milliseconds

12