Searched refs:__CFMax (Results 1 - 6 of 6) sorted by path

/macosx-10.9.5/CF-855.17/
H A DCFCharacterSet.c727 planeRange.location = __CFMax(firstChar, 0);
755 planeRange.location = __CFMax(firstChar, 0);
2098 __CFCSetPutRangeLength(theSet, __CFMax(length, theRange.length));
H A DCFData.c739 scan_haystack -= __CFMax(badCharacterShift[*scan_haystack], goodSubstringShift[scan_needle - needle]);
755 scan_haystack += __CFMax(badCharacterShift[*scan_haystack], goodSubstringShift[scan_needle - needle]);
H A DCFInternal.h256 #define __CFMax(A,B) ({__typeof__(A) __a = (A); __typeof__(B) __b = (B); __a < __b ? __b : __a; }) macro
259 #define __CFMax(A,B) ((A) > (B) ? (A) : (B)) macro
H A DCFSocket.c2028 maxnrfds = __CFMax(rfds, wfds);
H A DCFStorage.c132 CFIndex start = __CFMax(a.location, b.location);
H A DCFString.c634 #define GROWFACTOR(c) (((c) >= (ULONG_MAX / 3UL)) ? __CFMax(LONG_MAX - 4095, (c)) : (((unsigned long)c * 3 + 1) / 2))
649 newCapacity = __CFMax(desiredCapacity, reqCapacity); /* !!! So, fixed is not really fixed, but "tight" */

Completed in 323 milliseconds