Searched refs:NMAX (Results 1 - 12 of 12) sorted by relevance

/macosx-10.10.1/rsync-45/rsync/zlib/
H A Dadler32.c12 #define NMAX 5552 macro
13 /* NMAX is the largest n such that 255n(n+1)/2 + (n+1)(BASE-1) <= 2^32-1 */
96 /* do length NMAX blocks -- requires just one modulo operation */
97 while (len >= NMAX) {
98 len -= NMAX;
99 n = NMAX / 16; /* NMAX is divisible by 16 */
108 /* do remaining bytes (less than NMAX, still just one modulo) */
/macosx-10.10.1/sudo-73/src/zlib/
H A Dadler32.c15 #define NMAX 5552 macro
16 /* NMAX is the largest n such that 255n(n+1)/2 + (n+1)(BASE-1) <= 2^32-1 */
104 /* do length NMAX blocks -- requires just one modulo operation */
105 while (len >= NMAX) {
106 len -= NMAX;
107 n = NMAX / 16; /* NMAX is divisible by 16 */
116 /* do remaining bytes (less than NMAX, still just one modulo) */
/macosx-10.10.1/xnu-2782.1.97/libkern/zlib/
H A Dadler32.c45 #define NMAX 5552 macro
46 /* NMAX is the largest n such that 255n(n+1)/2 + (n+1)(BASE-1) <= 2^32-1 */
130 /* do length NMAX blocks -- requires just one modulo operation */
131 while (len >= NMAX) {
132 len -= NMAX;
133 n = NMAX / 16; /* NMAX is divisible by 16 */
142 /* do remaining bytes (less than NMAX, still just one modulo) */
/macosx-10.10.1/zlib-55/zlib/
H A Dadler32.c20 #define NMAX 5552 macro
21 /* NMAX is the largest n such that 255n(n+1)/2 + (n+1)(BASE-1) <= 2^32-1 */
106 /* do length NMAX blocks -- requires just one modulo operation */
107 while (len >= NMAX) {
108 len -= NMAX;
109 n = NMAX / 16; /* NMAX is divisible by 16 */
118 /* do remaining bytes (less than NMAX, still just one modulo) */
/macosx-10.10.1/xnu-2782.1.97/libkern/
H A Dmkext.c34 #define NMAX 5552 // the largest n such that 255n(n+1)/2 + (n+1)(BASE-1) <= 2^32-1 macro
51 k = len < NMAX ? len : NMAX;
/macosx-10.10.1/remote_cmds-47/rlogind.tproj/
H A Drlogind.c120 #define NMAX 30 macro
121 char lusername[NMAX+1], rusername[NMAX+1];
/macosx-10.10.1/tcl-105/tcl_ext/snack/snack/generic/
H A DjkSoundProc.c67 while (n <= NMAX) {
74 for (n = NMIN; n <= NMAX; n*=2) {
163 static float xfft[NMAX];
164 static float ffts[NMAX];
165 static float hamwin[NMAX];
330 for (i = 0; i < NMAX/2; i++) {
778 for (i = 0; i < NMAX/2; i++) {
1047 if (winlen > NMAX) {
1050 sprintf(str, "%d", NMAX);
H A DjkSound.h597 # define NMAX 65536 macro
600 # define NMAX 8192 macro
H A DjkCanvSect.c278 sectPtr->si.hamwin = (float *) ckalloc(NMAX * sizeof(float));
280 sectPtr->xfft = (float *) ckalloc(NMAX * sizeof(float));
281 sectPtr->ffts = (double *) ckalloc(NMAX / 2 * sizeof(double));
H A DjkCanvSpeg.c89 float xfft[NMAX];
319 spegPtr->si.hamwin = (float *) ckalloc(NMAX * sizeof(float));
1081 short v[NMAX + 1];
1465 short v[NMAX + 1];
/macosx-10.10.1/ksh-23/ksh/src/cmd/INIT/
H A Dratz.c1116 #define NMAX 5552 macro
1117 /* NMAX is the largest n such that 255n(n+1)/2 + (n+1)(BASE-1) <= 2^32-1 */
1200 /* do length NMAX blocks -- requires just one modulo operation */
1201 while (len >= NMAX) {
1202 len -= NMAX;
1203 n = NMAX / 16; /* NMAX is divisible by 16 */
1212 /* do remaining bytes (less than NMAX, still just one modulo) */
/macosx-10.10.1/ppp-786.1.1/Helpers/pppdump/
H A Dzlib.c4601 #define NMAX 5552 macro
4602 /* NMAX is the largest n such that 255n(n+1)/2 + (n+1)(BASE-1) <= 2^32-1 */
4623 k = len < NMAX ? len : NMAX;

Completed in 276 milliseconds