Home | History | Annotate | Download | only in coregrind

Lines Matching refs:BASE

895 /* Returns the base-2 logarithm of x.  Returns -1 if x is not a power
918 void VG_(ssort)( void* base, SizeT nmemb, SizeT size,
921 bm_qsort(base,nmemb,size,compar);
988 # define BASE 65521UL /* largest prime smaller than 65536 */
991 255n(n+1)/2 + (n+1)(BASE-1) <= 2^32-1 */
1003 if (a >= (BASE << 16)) a -= (BASE << 16); \
1004 if (a >= (BASE << 15)) a -= (BASE << 15); \
1005 if (a >= (BASE << 14)) a -= (BASE << 14); \
1006 if (a >= (BASE << 13)) a -= (BASE << 13); \
1007 if (a >= (BASE << 12)) a -= (BASE << 12); \
1008 if (a >= (BASE << 11)) a -= (BASE << 11); \
1009 if (a >= (BASE << 10)) a -= (BASE << 10); \
1010 if (a >= (BASE << 9)) a -= (BASE << 9); \
1011 if (a >= (BASE << 8)) a -= (BASE << 8); \
1012 if (a >= (BASE << 7)) a -= (BASE << 7); \
1013 if (a >= (BASE << 6)) a -= (BASE << 6); \
1014 if (a >= (BASE << 5)) a -= (BASE << 5); \
1015 if (a >= (BASE << 4)) a -= (BASE << 4); \
1016 if (a >= (BASE << 3)) a -= (BASE << 3); \
1017 if (a >= (BASE << 2)) a -= (BASE << 2); \
1018 if (a >= (BASE << 1)) a -= (BASE << 1); \
1019 if (a >= BASE) a -= BASE; \
1023 if (a >= (BASE << 4)) a -= (BASE << 4); \
1024 if (a >= (BASE << 3)) a -= (BASE << 3); \
1025 if (a >= (BASE << 2)) a -= (BASE << 2); \
1026 if (a >= (BASE << 1)) a -= (BASE << 1); \
1027 if (a >= BASE) a -= BASE; \
1040 if (adler >= BASE)
1041 adler -= BASE;
1043 if (sum2 >= BASE)
1044 sum2 -= BASE;
1058 if (adler >= BASE)
1059 adler -= BASE;
1060 MOD4(sum2); /* only added so many BASE's */
1102 # undef BASE