max 1103 py_ext/ming_wrap.c if (!min && !max) {
max 1107 py_ext/ming_wrap.c name, (min == max ? "" : "at least "), (int)min);
max 1118 py_ext/ming_wrap.c name, (min == max ? "" : "at least "), (int)min, (int)l);
max 1120 py_ext/ming_wrap.c } else if (l > max) {
max 1122 py_ext/ming_wrap.c name, (min == max ? "" : "at most "), (int)max, (int)l);
max 1129 py_ext/ming_wrap.c for (; l < max; ++l) {
max 2623 py_ext/ming_wrap.c if ((min <= x && x <= max)) {
max 23 src/actioncompiler/compile.h #ifndef max
max 139 src/blocks/cxform.c nBits = max(nBits, SWFOutput_numSBits(cXform->rAdd));
max 140 src/blocks/cxform.c nBits = max(nBits, SWFOutput_numSBits(cXform->gAdd));
max 141 src/blocks/cxform.c nBits = max(nBits, SWFOutput_numSBits(cXform->bAdd));
max 144 src/blocks/cxform.c nBits = max(nBits, SWFOutput_numSBits(cXform->aAdd));
max 149 src/blocks/cxform.c nBits = max(nBits, SWFOutput_numSBits(cXform->rMult));
max 150 src/blocks/cxform.c nBits = max(nBits, SWFOutput_numSBits(cXform->gMult));
max 151 src/blocks/cxform.c nBits = max(nBits, SWFOutput_numSBits(cXform->bMult));
max 154 src/blocks/cxform.c nBits = max(nBits, SWFOutput_numSBits(cXform->aMult));
max 410 src/blocks/input.c input->offset = max(0, input->offset + offset);
max 414 src/blocks/input.c input->offset = max(0, input->length - offset);
max 722 src/blocks/input.c input->offset = max(0, input->offset + offset);
max 726 src/blocks/input.c input->offset = max(0, input->length - offset);
max 51 src/blocks/libswf.h #ifndef max
max 160 src/blocks/matrix.c bits += 5 + 2*max(SWFOutput_numSBits((int)matrix->scaleX),
max 166 src/blocks/matrix.c bits += 5 + 2*max(SWFOutput_numSBits((int)matrix->rotate0),
max 172 src/blocks/matrix.c bits += 2*max(SWFOutput_numSBits(matrix->translateX),
max 197 src/blocks/matrix.c nBits = max(SWFOutput_numSBits(xScale), SWFOutput_numSBits(yScale));
max 217 src/blocks/matrix.c nBits = max(SWFOutput_numSBits(rot0), SWFOutput_numSBits(rot1));
max 229 src/blocks/matrix.c nBits = max(SWFOutput_numSBits(matrix->translateX),
max 30 src/blocks/rect.c return 5 + 4*max(max(SWFOutput_numSBits(rect->minX),
max 32 src/blocks/rect.c max(SWFOutput_numSBits(rect->minY),
max 40 src/blocks/rect.c int nBits = max(max(SWFOutput_numSBits(rect->minX),
max 42 src/blocks/rect.c max(SWFOutput_numSBits(rect->minY),
max 74 src/blocks/rect.c rect->maxX = max(minX, maxX);
max 76 src/blocks/rect.c rect->maxY = max(minY, maxY);
max 579 src/blocks/shape.c int nBits = max(SWFOutput_numSBits(x), SWFOutput_numSBits(y));
max 650 src/blocks/shape.c nBits = max(SWFOutput_numSBits(dx), SWFOutput_numSBits(dy));
max 668 src/blocks/shape.c int nBits = max(max(SWFOutput_numSBits(controlx),
max 670 src/blocks/shape.c max(SWFOutput_numSBits(anchorx),
max 686 src/blocks/text.c textRecord->nAdvanceBits = max(textRecord->nAdvanceBits,
max 710 src/blocks/text.c text->nAdvanceBits = max(text->nAdvanceBits, textRecord->nAdvanceBits);
max 715 src/blocks/text.c nGlyphBits = max(nGlyphBits, SWFOutput_numBits(fontGlyphs-1));
max 65 src/libming.h #ifndef max
max 43 util/gif2mask.c colorMap[i] = max(c.Blue, c.Red, c.Green);