Home | History | Annotate | Download | only in coregrind

Lines Matching refs:nmax

331 Int VG_(strncmp) ( const HChar* s1, const HChar* s2, SizeT nmax )
335 if (n >= nmax) return 0;
346 Int VG_(strncasecmp) ( const HChar* s1, const HChar* s2, SizeT nmax )
352 if (n >= nmax) return 0;
967 # define NMAX 5552
968 /* NMAX is the largest n such that
1042 /* do length NMAX blocks -- requires just one modulo operation */
1043 while (len >= NMAX) {
1044 len -= NMAX;
1045 n = NMAX / 16; /* NMAX is divisible by 16 */
1054 /* do remaining bytes (less than NMAX, still just one modulo) */
1079 # undef NMAX