Searched refs:BASE (Results 1 - 25 of 48) sorted by relevance

12

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/curl/curl-7.36.0/tests/unit/
H A Dunit1303.c43 /* BASE is just a define to make us fool around with decently large number so
45 #define BASE 1000000 macro
79 {BASE + 4, 0, 10000, 8000, FALSE, 6000, "6 seconds should be left"},
80 {BASE + 4, 990000, 10000, 8000, FALSE, 5010, "5010 ms should be left"},
81 {BASE + 10, 0, 10000, 8000, FALSE, -1, "timeout is -1, expired"},
82 {BASE + 12, 0, 10000, 8000, FALSE, -2000, "-2000, overdue 2 seconds"},
85 {BASE + 4, 0, 10000, 8000, TRUE, 4000, "4 seconds should be left"},
86 {BASE + 4, 990000, 10000, 8000, TRUE, 3010, "3010 ms should be left"},
87 {BASE + 8, 0, 10000, 8000, TRUE, -1, "timeout is -1, expired"},
88 {BASE
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/zlib/
H A Dadler32.c11 #define BASE 65521UL /* largest prime smaller than 65536 */ macro
13 /* NMAX is the largest n such that 255n(n+1)/2 + (n+1)(BASE-1) <= 2^32-1 */
25 if (a >= (BASE << 16)) a -= (BASE << 16); \
26 if (a >= (BASE << 15)) a -= (BASE << 15); \
27 if (a >= (BASE << 14)) a -= (BASE << 14); \
28 if (a >= (BASE << 13)) a -= (BASE << 1
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/zlib-1.2.3/
H A Dadler32.c11 #define BASE 65521UL /* largest prime smaller than 65536 */ macro
13 /* NMAX is the largest n such that 255n(n+1)/2 + (n+1)(BASE-1) <= 2^32-1 */
25 if (a >= (BASE << 16)) a -= (BASE << 16); \
26 if (a >= (BASE << 15)) a -= (BASE << 15); \
27 if (a >= (BASE << 14)) a -= (BASE << 14); \
28 if (a >= (BASE << 13)) a -= (BASE << 1
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/zlib-1.2.3/
H A Dadler32.c11 #define BASE 65521UL /* largest prime smaller than 65536 */ macro
13 /* NMAX is the largest n such that 255n(n+1)/2 + (n+1)(BASE-1) <= 2^32-1 */
25 if (a >= (BASE << 16)) a -= (BASE << 16); \
26 if (a >= (BASE << 15)) a -= (BASE << 15); \
27 if (a >= (BASE << 14)) a -= (BASE << 14); \
28 if (a >= (BASE << 13)) a -= (BASE << 1
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/zlib-1.2.8/
H A Dadler32.c14 #define BASE 65521 /* largest prime smaller than 65536 */ macro
16 /* NMAX is the largest n such that 255n(n+1)/2 + (n+1)(BASE-1) <= 2^32-1 */
27 /* note that this assumes BASE is 65521, where 65536 % 65521 == 15
38 if (a >= BASE) a -= BASE; \
56 if (a >= BASE) a -= BASE; \
59 # define MOD(a) a %= BASE
60 # define MOD28(a) a %= BASE
61 # define MOD63(a) a %= BASE
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/zlib-1.2.7/
H A Dadler32.c14 #define BASE 65521 /* largest prime smaller than 65536 */ macro
16 /* NMAX is the largest n such that 255n(n+1)/2 + (n+1)(BASE-1) <= 2^32-1 */
27 /* note that this assumes BASE is 65521, where 65536 % 65521 == 15
38 if (a >= BASE) a -= BASE; \
56 if (a >= BASE) a -= BASE; \
59 # define MOD(a) a %= BASE
60 # define MOD28(a) a %= BASE
61 # define MOD63(a) a %= BASE
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/libcryptoxx-5.6.0/
H A Dadler32.cpp10 const unsigned long BASE = 65521; local
24 if (s1 >= BASE)
25 s1 -= BASE;
26 s2 %= BASE;
43 if (s1 >= BASE)
44 s1 -= BASE;
46 s2 %= BASE;
49 assert(s1 < BASE);
50 assert(s2 < BASE);
H A Diterhash.cpp12 template <class T, class BASE> void IteratedHashBase<T, BASE>::Update(const byte *input, size_t len)
72 template <class T, class BASE> byte * IteratedHashBase<T, BASE>::CreateUpdateSpace(size_t &size)
80 template <class T, class BASE> size_t IteratedHashBase<T, BASE>::HashMultipleBlocks(const T *input, size_t length)
102 template <class T, class BASE> void IteratedHashBase<T, BASE>::PadLastBlock(unsigned int lastBlockSize, byte padFirst)
119 template <class T, class BASE> void IteratedHashBase<T, BASE>
[all...]
H A Dstrciphr.h37 template <class POLICY_INTERFACE, class BASE = Empty>
38 class CRYPTOPP_NO_VTABLE AbstractPolicyHolder : public BASE
49 template <class POLICY, class BASE, class POLICY_INTERFACE = CPP_TYPENAME BASE::PolicyInterface>
50 class ConcretePolicyHolder : public BASE, protected POLICY
83 template <typename WT, unsigned int W, unsigned int X = 1, class BASE = AdditiveCipherAbstractPolicy>
84 struct CRYPTOPP_NO_VTABLE AdditiveCipherConcretePolicy : public BASE
133 template <class BASE = AbstractPolicyHolder<AdditiveCipherAbstractPolicy, SymmetricCipher> >
134 class CRYPTOPP_NO_VTABLE AdditiveCipherTemplate : public BASE, public RandomNumberGenerator
148 typedef typename BASE
[all...]
H A Dseckey.h130 template <class BASE, class INFO = BASE>
131 class CRYPTOPP_NO_VTABLE SimpleKeyingInterfaceImpl : public BASE
142 template <class INFO, class BASE = BlockCipher>
143 class CRYPTOPP_NO_VTABLE BlockCipherImpl : public AlgorithmImpl<SimpleKeyingInterfaceImpl<TwoBases<BASE, INFO> > >
150 template <CipherDir DIR, class BASE>
151 class BlockCipherFinal : public ClonableImpl<BlockCipherFinal<DIR, BASE>, BASE>
166 template <class BASE, class INFO = BASE>
[all...]
H A Dstrciphr.cpp134 template <class BASE>
135 void AdditiveCipherTemplate<BASE>::Seek(lword position)
152 template <class BASE>
153 void CFB_CipherTemplate<BASE>::UncheckedSetKey(const byte *key, unsigned int length, const NameValuePairs &params)
168 template <class BASE>
169 void CFB_CipherTemplate<BASE>::Resynchronize(const byte *iv, int length)
176 template <class BASE>
177 void CFB_CipherTemplate<BASE>::ProcessData(byte *outString, const byte *inString, size_t length)
232 template <class BASE>
233 void CFB_EncryptionTemplate<BASE>
[all...]
H A Dalgparam.h82 template <class T, class BASE>
95 if (typeid(T) != typeid(BASE))
96 pObject->BASE::GetVoidValue(m_name, valueType, pValue);
111 if (!m_found && typeid(T) != typeid(BASE))
112 m_found = pObject->BASE::GetVoidValue(m_name, valueType, pValue);
118 GetValueHelperClass<T,BASE> & operator()(const char *name, const R & (T::*pm)() const)
131 GetValueHelperClass<T,BASE> &Assignable()
154 template <class BASE, class T>
155 GetValueHelperClass<T, BASE> GetValueHelper(const T *pObject, const char *name, const std::type_info &valueType, void *pValue, const NameValuePairs *searchFirst=NULL, BASE *dumm
[all...]
H A Demsa2.h23 template <class BASE>
24 class EMSA2HashIdLookup : public BASE
H A Dsafer.h43 template <class BASE, class INFO, bool STR>
44 class CRYPTOPP_NO_VTABLE SAFER_Impl : public BlockCipherImpl<INFO, BASE>
H A Dsimple.h15 template <class DERIVED, class BASE>
16 class CRYPTOPP_NO_VTABLE ClonableImpl : public BASE
23 template <class BASE, class ALGORITHM_INFO=BASE>
24 class CRYPTOPP_NO_VTABLE AlgorithmImpl : public BASE
H A Delgamal.h77 template <class BASE, class SCHEME_OPTIONS, class KEY>
78 class ElGamalObjectImpl : public DL_ObjectImplBase<BASE, SCHEME_OPTIONS, KEY>, public ElGamalBase
H A Diterhash.h20 template <class T, class BASE>
21 class CRYPTOPP_NO_VTABLE IteratedHashBase : public BASE
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/linux/
H A Dzutil.h53 #define BASE 65521L /* largest prime smaller than 65536 */ macro
55 /* NMAX is the largest n such that 255n(n+1)/2 + (n+1)(BASE-1) <= 2^32-1 */
100 s1 %= BASE;
101 s2 %= BASE;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavutil/
H A Dadler32.c27 #define BASE 65521L /* largest prime smaller than 65536 */ macro
52 s1 %= BASE;
53 s2 %= BASE;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavutil/
H A Dadler32.c38 #define BASE 65521L /* largest prime smaller than 65536 */ macro
93 s1 %= BASE;
94 s2 %= BASE;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/media/common/tuners/
H A Dtuner-xc2028-types.h12 /* BASE firmware should be loaded before any other firmware */
13 #define BASE (1<<0) macro
14 #define BASE_TYPES (BASE|F8MHZ|MTS|FM|INPUT1|INPUT2|INIT1)
16 /* F8MHZ marks BASE firmwares for 8 MHz Bandwidth */
43 /* There's a FM | BASE firmware + FM specific firmware (std=0) */
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/xz/
H A DMakefile.am72 BASE=`basename $$FILE .1` && \
75 > "$$dest/pdf-a4/$$BASE-a4.pdf" && \
78 > "$$dest/pdf-letter/$$BASE-letter.pdf" && \
81 > "$$dest/txt/$$BASE.txt"; \
/netgear-R7000-V1.0.7.12_1.2.5/src/tools/misc/xz/
H A DMakefile.am72 BASE=`basename $$FILE .1` && \
75 > "$$dest/pdf-a4/$$BASE-a4.pdf" && \
78 > "$$dest/pdf-letter/$$BASE-letter.pdf" && \
81 > "$$dest/txt/$$BASE.txt"; \
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/tiff/
H A Dtif_packbits.c68 enum { BASE, LITERAL, RUN, LITERAL_RUN } state; enumerator in enum:__anon771
73 state = BASE;
107 case BASE: /* initial state, set run/literal */
138 state = BASE;
169 BASE : LITERAL);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/xfs/
H A Dxfs_da_btree.h202 #define XFS_DA_LOGOFF(BASE, ADDR) ((char *)(ADDR) - (char *)(BASE))
203 #define XFS_DA_LOGRANGE(BASE, ADDR, SIZE) \
204 (uint)(XFS_DA_LOGOFF(BASE, ADDR)), \
205 (uint)(XFS_DA_LOGOFF(BASE, ADDR)+(SIZE)-1)

Completed in 221 milliseconds

12