| /netbsd-src/external/bsd/ntp/dist/util/ |
| H A D | byteorder.c | 23 int big; in main() local 35 if (u.c[0] == 0x08) big = 1; in main() 36 else big = 0; in main() 38 if (u.c[0] == 0x04) big = 1; in main() 39 else big = 0; in main() 42 if (big == 1 && (u.c[i] == (sizeof(long) - i))) { in main() 44 } else if (big == 0 && (u.c[i] == (i+1))) { in main() 47 big = -1; in main() 52 if (big == 1) { in main() 54 } else if (big == 0) { in main()
|
| /netbsd-src/sys/arch/x86/x86/ |
| H A D | x86_autoconf.c | 115 struct btinfo_biosgeom *big; in matchbiosdisks() local 127 big = lookup_bootinfo(BTINFO_BIOSGEOM); in matchbiosdisks() 129 numbig = big ? big->num : 0; in matchbiosdisks() 147 x86_alldisks->dl_biosdisks[i].bi_dev = big->disk[i].dev; in matchbiosdisks() 148 x86_alldisks->dl_biosdisks[i].bi_sec = big->disk[i].sec; in matchbiosdisks() 149 x86_alldisks->dl_biosdisks[i].bi_head = big->disk[i].head; in matchbiosdisks() 150 x86_alldisks->dl_biosdisks[i].bi_cyl = big->disk[i].cyl; in matchbiosdisks() 151 x86_alldisks->dl_biosdisks[i].bi_lbasecs = big->disk[i].totsec; in matchbiosdisks() 152 x86_alldisks->dl_biosdisks[i].bi_flags = big in matchbiosdisks() 338 struct btinfo_biosgeom *big; findroot() local [all...] |
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/ |
| H A D | Endian.h | 27 enum endianness {big, little, native}; enumerator 45 return sys::IsBigEndianHost ? big : little; in system_endianness() 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 …]
|
| /netbsd-src/lib/libc/string/ |
| H A D | wcsstr.c | 41 wcswcs(const wchar_t *big, const wchar_t *little) in wcswcs() argument 43 wcsstr(const wchar_t *big, const wchar_t *little) in wcswcs() 50 _DIAGASSERT(big != NULL); in wcswcs() 54 return __UNCONST(big); in wcswcs() 55 if (wcslen(big) < wcslen(little)) in wcswcs() 58 p = big; in wcswcs()
|
| /netbsd-src/external/mpl/bind/dist/bin/tests/system/nsupdate/ns3/ |
| H A D | too-big.test.db.in | 13 too-big.test. IN SOA too-big.test. hostmaster.too-big.test. 1 3600 900 2419200 3600 14 too-big.test. IN NS too-big.test. 15 too-big.test. IN A 10.53.0.3
|
| /netbsd-src/external/mit/isl/dist/ |
| H A D | isl_int_sioimath.h | 144 inline int isl_sioimath_decode_big(isl_sioimath val, mp_int *big) in isl_sioimath_decode_big() argument 146 *big = isl_sioimath_get_big(val); in isl_sioimath_decode_big() 187 mpz_t big; member 250 mp_int big; in isl_sioimath_bigarg_src() local 254 if (isl_sioimath_decode_big(arg, &big)) in isl_sioimath_bigarg_src() 255 return big; in isl_sioimath_bigarg_src() 258 scratch->big.digits = scratch->digits; in isl_sioimath_bigarg_src() 259 scratch->big.alloc = ARRAY_SIZE(scratch->digits); in isl_sioimath_bigarg_src() 261 scratch->big.sign = MP_ZPOS; in isl_sioimath_bigarg_src() 264 scratch->big.sign = MP_NEG; in isl_sioimath_bigarg_src() [all …]
|
| H A D | 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; in isl_sioimath_print() local 210 big = isl_sioimath_get_big(i); in isl_sioimath_print() 211 len = mp_int_string_len(big, 10); in isl_sioimath_print() 213 mp_int_to_string(big, 10, buf, len); in isl_sioimath_print()
|
| /netbsd-src/common/lib/libc/arch/vax/gen/ |
| H A D | udiv.S | 49 jlss Leasy # big divisor: settle by comparison 51 jlss Lhard # big dividend: extended division 60 jgequ Lone # if dividend is as big or bigger, return 1 71 jlss La_easy # big divisor: settle by comparison 73 jlss La_hard # big dividend: extended division 84 jgequ La_one # if dividend is as big or bigger, return 1
|
| H A D | urem.S | 49 jlss Leasy # big divisor: settle by comparison 51 jlss Lhard # big dividend: need extended division 71 jlss La_easy # big divisor: settle by comparison 73 jlss La_hard # big dividend: need extended division
|
| /netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/bn/ |
| H A D | rsa_sup_mul.c | 476 uint64_t big = 0; in be64() local 478 big |= (host & 0xff00000000000000) >> 56; in be64() 479 big |= (host & 0x00ff000000000000) >> 40; in be64() 480 big |= (host & 0x0000ff0000000000) >> 24; in be64() 481 big |= (host & 0x000000ff00000000) >> 8; in be64() 482 big |= (host & 0x00000000ff000000) << 8; in be64() 483 big |= (host & 0x0000000000ff0000) << 24; in be64() 484 big |= (host & 0x000000000000ff00) << 40; in be64() 485 big |= (host & 0x00000000000000ff) << 56; in be64() 486 return big; in be64() [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/regex/internal/ |
| H A D | ir.d | 999 Payload* big; member 1018 big = cast(Payload*) enforceMalloc(Payload.sizeof + T.sizeof*size); in this() 1019 big.refcount = 1; in this() 1026 return isBig ? big.ptr[0 .. length] : small[0 .. length]; in inout() 1033 big.refcount++; in this() 1059 if (big is arr.big) return this; // self-assign in opAssign() 1064 big = arr.big; in opAssign() 1065 big.refcount++; in opAssign() 1080 big = arr.big; in opAssign() 1081 big.refcount++; in opAssign() [all …]
|
| /netbsd-src/external/bsd/file/dist/magic/magdir/ |
| H A D | coverage | 33 # big endian 36 >&2 byte x \b%c (big-endian) 45 # big endian 48 >&2 byte x \b%c (big-endian) 74 # big endian 76 >&7 byte x version %d (big-endian) 88 # big endian 90 >&7 byte x version %d (big-endian)
|
| H A D | aout | 32 # mips (for old 68020(!) SGI a.out), and netbsd (for old big-endian a.out). 38 0 belong 0407 a.out big-endian 32-bit executable 41 0 belong 0410 a.out big-endian 32-bit pure executable 44 0 belong 0413 a.out big-endian 32-bit demand paged executable
|
| /netbsd-src/sys/dev/scsipi/ |
| H A D | sd.c | 220 struct scsi_mode_parameter_header_10 big; member 1270 int page, int flags, int *big) in sd_mode_sense() argument 1275 *big = 1; in sd_mode_sense() 1280 *big = 0; in sd_mode_sense() 1289 int flags, int big) in sd_mode_select() argument 1292 if (big) { in sd_mode_select() 1527 int big, bsize; in sd_get_capacity() local 1532 sizeof(scsipi_sense.blk_desc), 0, flags | XS_CTL_SILENT, &big); in sd_get_capacity() 1534 if (big) { in sd_get_capacity() 1535 bdesc = (void *)(&scsipi_sense.header.big in sd_get_capacity() 1567 int big, byte2; sd_get_parms_page4() local 1652 int big, byte2; sd_get_parms_page5() local 1820 int big; sd_getcache() local 1885 int big; sd_setcache() local [all...] |
| H A D | cd.c | 2150 int page, int flags, int *big) in cd_mode_sense() argument 2154 *big = 1; in cd_mode_sense() 2159 *big = 0; in cd_mode_sense() 2168 int flags, int big) in cd_mode_select() argument 2171 if (big) { in cd_mode_select() 2194 struct scsi_mode_parameter_header_10 big; in cd_set_pa_immed() member 2200 int big, byte2; in cd_set_pa_immed() local 2206 AUDIO_PAGE, flags, &big)) != 0) { in cd_set_pa_immed() 2215 if (big) in cd_set_pa_immed() 2216 page = (void *)((u_long)&data.header.big in cd_set_pa_immed() 2241 struct scsi_mode_parameter_header_10 big; cd_setchan() member 2246 int big, byte2; cd_setchan() local 2286 struct scsi_mode_parameter_header_10 big; cd_getvol() member 2291 int big, byte2; cd_getvol() local 2329 struct scsi_mode_parameter_header_10 big; cd_setvol() member 2334 int big, byte2; cd_setvol() local 2401 struct scsi_mode_parameter_header_10 big; cd_setblksize() member 2406 int big, bsize; cd_setblksize() local [all...] |
| /netbsd-src/external/gpl3/binutils/dist/gas/ |
| H A D | configure.tgt | 34 # endian "big" or "little"; used on bi-endian systems 50 aarch64_be) cpu_type=aarch64 endian=big arch=aarch64;; 53 arc*eb) cpu_type=arc endian=big ;; 54 arm*be|arm*b) cpu_type=arm endian=big ;; 67 ip2k) cpu_type=ip2k endian=big ;; 68 iq2000) cpu_type=iq2000 endian=big ;; 74 m32r) cpu_type=m32r endian=big ;; 84 microblaze*) cpu_type=microblaze endian=big;; 86 mips*) cpu_type=mips endian=big ;; 87 mt) cpu_type=mt endian=big ;; [all …]
|
| /netbsd-src/external/gpl3/binutils.old/dist/gas/ |
| H A D | configure.tgt | 34 # endian "big" or "little"; used on bi-endian systems 50 aarch64_be) cpu_type=aarch64 endian=big arch=aarch64;; 53 arc*eb) cpu_type=arc endian=big ;; 54 arm*be|arm*b) cpu_type=arm endian=big ;; 67 ip2k) cpu_type=ip2k endian=big ;; 68 iq2000) cpu_type=iq2000 endian=big ;; 73 m32r) cpu_type=m32r endian=big ;; 83 microblaze*) cpu_type=microblaze endian=big;; 85 mips*) cpu_type=mips endian=big ;; 86 mt) cpu_type=mt endian=big ;; [all …]
|
| /netbsd-src/lib/libm/noieee_src/ |
| H A D | n_exp2.c | 349 int k, big; in exp2() local 376 big = k >= 3075 << 20; in exp2() 377 if (big) { in exp2() 389 if (big) { in exp2()
|
| H A D | n_atan2.c | 180 static const double zero=0, one=1, small=1.0E-9, big=1.0E18; in atan2() local 215 if((m=(k=logb(y))-logb(x)) > 60) t=big+big; in atan2() 231 { big + small ; /* raise inexact flag */ in atan2() 262 if (t <= big) t = - x / y; in atan2() 266 { big+small; /* raise inexact flag */ in atan2()
|
| /netbsd-src/external/bsd/mdocml/dist/ |
| H A D | test-strcasestr.c | 6 const char *big = "BigString"; in main() local 7 char *cp = strcasestr(big, "Gst"); in main() 8 return cp != big + 2; in main()
|
| /netbsd-src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/ |
| H A D | ls1021a.dtsi | 139 big-endian; 177 big-endian; 200 big-endian; 219 big-endian; 374 big-endian; 387 big-endian; 469 big-endian; 476 big-endian; 483 big-endian; 490 big-endian; [all …]
|
| /netbsd-src/crypto/external/bsd/heimdal/dist/cf/ |
| H A D | krb-bigendian.m4 | 5 dnl check if this computer is little or big-endian 12 AS_HELP_STRING([--enable-bigendian],[the target is big endian]), 31 not big endian 35 /* Are we little or big endian? From Harbison&Steele. */ 48 AC_DEFINE(WORDS_BIGENDIAN, 1, [define if target is big endian])dnl
|
| /netbsd-src/external/bsd/pcc/dist/pcc/ |
| H A D | configure.ac | 30 m68k) targmach=m68k endian=big ;; 56 powerpc) targmach=powerpc endian=big ;; 87 sparc64) targmach=sparc64 endian=big ;; 100 mipseb) targmach=mips endian=big ;; 112 powerpc*) targmach=powerpc endian=big ;; 114 mipseb) targmach=mips endian=big ;; 137 sparc64) targmach=sparc64 endian=big ;; 192 armeb) targmach=arm endian=big ;; 195 m68k*) targmach=m68k endian=big ;; 196 mipseb) targmach=mips endian=big ;; [all …]
|
| /netbsd-src/external/mpl/bind/dist/bin/tests/system/xfer/ns1/ |
| H A D | named1.conf.in | 71 zone "axfr-too-big" { 73 file "axfr-too-big.db"; 76 zone "ixfr-too-big" { 79 file "ixfr-too-big.db";
|
| /netbsd-src/external/mpl/bind/dist/bin/tests/system/xfer/ns6/ |
| H A D | named.conf.in | 86 zone "axfr-too-big" { 90 file "axfr-too-big.bk"; 93 zone "ixfr-too-big" { 97 file "ixfr-too-big.bk";
|