Home
last modified time | relevance | path

Searched refs:BASE (Results 1 – 7 of 7) sorted by relevance

/f-stack/freebsd/contrib/zlib/
H A Dadler32.c36 if (a >= BASE) a -= BASE; \
54 if (a >= BASE) a -= BASE; \
57 # define MOD(a) a %= BASE
78 if (adler >= BASE)
79 adler -= BASE;
81 if (sum2 >= BASE)
82 sum2 -= BASE;
164 if (sum1 >= BASE) sum1 -= BASE;
165 if (sum1 >= BASE) sum1 -= BASE;
166 if (sum2 >= ((unsigned long)BASE << 1)) sum2 -= ((unsigned long)BASE << 1);
[all …]
/f-stack/tools/libxo/xohtml/
H A Dxohtml.sh.in12 BASE=@XO_SHAREDIR@
32 BASE="$1";
48 BASE="${WEB}";
70 echo '<link rel="stylesheet" href="'$BASE'/xohtml.css">'
71 echo '<link rel="stylesheet" href="'$BASE'/external/jquery.qtip.css"/>'
72 echo '<script type="text/javascript" src="'$BASE'/external/jquery.js"></script>'
73 echo '<script type="text/javascript" src="'$BASE'/external/jquery.qtip.js"></script>'
74 echo '<script type="text/javascript" src="'$BASE'/xohtml.js"></script>'
/f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_ids_to_path/
H A Dzfs_ids_to_path_001_pos.ksh73 typeset BASE=$TESTPOOL/$TESTFS
81 typeset mntpnt=$(get_prop mountpoint $BASE)
90 typeset ds_id=$(zdb $BASE | grep "^Dataset" | sed 's/.* ID \([0-9]*\).*/\1/')
91 test_one $ds_id $BASE $TESTFILE1
92 test_one $ds_id $BASE $TESTFILE2
93 test_one $ds_id $BASE $TESTFILE3
94 test_one $ds_id $BASE $TESTFILE4
/f-stack/freebsd/contrib/device-tree/Bindings/net/
H A Dti,dp83869.yaml18 with integrated PMD sublayers that supports 10BASE-Te, 100BASE-TX and
19 1000BASE-T Ethernet protocols. The DP83869 also supports 1000BASE-X and
20 100BASE-FX Fiber protocols.
23 the DP83869HM can run 1000BASE-X-to-1000BASE-T and 100BASE-FX-to-100BASE-TX
H A Dti,dp83867.yaml18 transceiver with integrated PMD sublayers to support 10BASE-Te, 100BASE-TX
19 and 1000BASE-T Ethernet protocols.
/f-stack/freebsd/arm64/arm64/
H A Didentcpu.c427 MRS_FIELD_VALUE_NONE_IMPL(ID_AA64ISAR0, CRC32, NONE, BASE),
432 MRS_FIELD_VALUE_NONE_IMPL(ID_AA64ISAR0, SHA2, NONE, BASE),
438 MRS_FIELD_VALUE_NONE_IMPL(ID_AA64ISAR0, SHA1, NONE, BASE),
443 MRS_FIELD_VALUE_NONE_IMPL(ID_AA64ISAR0, AES, NONE, BASE),
/f-stack/freebsd/contrib/zlib/doc/
H A Drfc1950.txt527 #define BASE 65521 /* largest prime smaller than 65536 */
551 s1 = (s1 + buf[n]) % BASE;
552 s2 = (s2 + s1) % BASE;