Lines Matching refs:max
38 int loop, len, max, seg, mark, print;
54 max = keylen - 2;
55 max += 2; /* two base64'd length chars on the front */
56 max += 5; /* @checksum/M */
57 max += 3 * 2; /* maximum number of segment dividers (".../M")
60 max += 1; /* NUL on end */
65 max = keylen * 4;
66 max += 5; /* @checksum/M */
67 max += 3 * 2; /* maximum number of segment dividers (".../M")
70 max += 1; /* NUL on end */
73 max += 1; /* 2nd NUL on end */
75 _debug("max: %d", max);
77 key = kmalloc(max, cachefiles_gfp);
107 ASSERT(len < max);
139 ASSERT(len < max);