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

12

/freebsd-10.0-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-10.0-release/tools/regression/lib/msun/
H A Dtest-fmaxmin.c65 testall_r(long double big, long double small) argument
69 long double expected_max = isnan(big) ? small : big;
70 long double expected_min = isnan(small) ? big : small;
73 TEST(fmaxf, float, big, small, expected_max);
74 TEST(fmaxf, float, small, big, expected_max);
75 TEST(fmax, double, big, small, expected_max);
76 TEST(fmax, double, small, big, expected_max);
77 TEST(fmaxl, long double, big, small, expected_max);
78 TEST(fmaxl, long double, small, big, expected_ma
95 testall(int testnum, long double big, long double small) argument
[all...]
/freebsd-10.0-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-10.0-release/contrib/llvm/lib/Object/
H A DELFObjectFile.cpp42 return new ELFObjectFile<ELFType<support::big, 4, false> >(Object, ec);
46 return new ELFObjectFile<ELFType<support::big, 2, false> >(Object, ec);
52 return new ELFObjectFile<ELFType<support::big, 8, true> >(Object, ec);
56 return new ELFObjectFile<ELFType<support::big, 2, true> >(Object, ec);
/freebsd-10.0-release/contrib/llvm/tools/llvm-objdump/
H A DELFDump.cpp87 if (const ELFObjectFile<ELFType<support::big, 4, false> > *ELFObj =
88 dyn_cast<ELFObjectFile<ELFType<support::big, 4, false> > >(Obj))
97 if (const ELFObjectFile<ELFType<support::big, 8, true> > *ELFObj =
98 dyn_cast<ELFObjectFile<ELFType<support::big, 8, true> > >(Obj))
/freebsd-10.0-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-10.0-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-10.0-release/share/i18n/esdb/UTF/
H A DMakefile10 UTF-16BE-var= utf16,big,force
20 UTF-32BE-var= utf32,big,force
/freebsd-10.0-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-10.0-release/sys/kern/
H A Dsubr_capability.c291 cap_rights_contains(const cap_rights_t *big, const cap_rights_t *little) argument
295 assert(CAPVER(big) == CAP_RIGHTS_VERSION_00);
297 assert(CAPVER(big) == CAPVER(little));
299 n = CAPARSIZE(big);
303 if ((big->cr_rights[i] & little->cr_rights[i]) !=
/freebsd-10.0-release/release/powerpc/
H A Dmake-memstick.sh37 makefs -B big ${tempfile} ${1}
/freebsd-10.0-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-10.0-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-10.0-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-10.0-release/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldELF.cpp177 DyldELFObject<ELFType<support::big, 4, false> > *Obj =
178 new DyldELFObject<ELFType<support::big, 4, false> >(
180 return new ELFObjectImage<ELFType<support::big, 4, false> >(Buffer, Obj);
183 DyldELFObject<ELFType<support::big, 8, true> > *Obj =
184 new DyldELFObject<ELFType<support::big, 8, true> >(
186 return new ELFObjectImage<ELFType<support::big, 8, true> >(Buffer, Obj);
/freebsd-10.0-release/sys/sys/
H A Dcapability.h337 bool cap_rights_contains(const cap_rights_t *big, const cap_rights_t *little);
/freebsd-10.0-release/lib/libiconv_modules/UTF1632/
H A Dcitrus_utf1632.c353 MATCH(big, ei->preffered_endian = _ENDIAN_BIG);
/freebsd-10.0-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
/freebsd-10.0-release/contrib/gcclibs/libcpp/
H A Dlex.c1581 /* Return a buffer that's big enough, but don't waste one that's
1582 way too big. */
/freebsd-10.0-release/contrib/llvm/lib/Support/Unix/
H A DPath.inc194 // many temporary files so this shouldn't be a big issue for LLVM.
/freebsd-10.0-release/contrib/llvm/tools/llvm-readobj/
H A DELFDumper.cpp76 typedef ELFType<support::big, 4, false> Big32ELF;
78 typedef ELFType<support::big, 8, true > Big64ELF;
/freebsd-10.0-release/crypto/openssl/crypto/rc4/asm/
H A Drc4-ia64.pl185 # big software-pipelined loop. It MUST be greater-or-equal
583 // big loop.
/freebsd-10.0-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-10.0-release/contrib/llvm/include/llvm/Object/
H A DELF.h343 // by a 32 bit big endian number.
380 // by a 32 bit big endian number.
2956 if (const ELFObjectFile<ELFType<support::big, 4, false> > *ELFObj =
2957 dyn_cast<ELFObjectFile<ELFType<support::big, 4, false> > >(Obj))
2966 if (const ELFObjectFile<ELFType<support::big, 8, true> > *ELFObj =
2967 dyn_cast<ELFObjectFile<ELFType<support::big, 8, true> > >(Obj))
/freebsd-10.0-release/contrib/sendmail/src/
H A Dconf.c3366 ** know how big the message will be, so just check for
4110 ** followed by a legal input character, is too big. One that
4118 ** the number is too big, and we will return a range error.
4158 ** big -- the big (full) string.
4162 ** A pointer to the first instance of little in big.
4163 ** big if little is the null string.
4164 ** NULL if little is not contained in big.
4170 strstr(big, little)
4171 char *big;
[all...]

Completed in 186 milliseconds

12