Searched refs:maxBytes (Results 1 - 25 of 37) sorted by relevance

12

/macosx-10.10/IOKitUser-1050.1.21/kext.subproj/
H A Dmisc_util.c57 CFStringRef createCFStringForData(CFDataRef aData, CFIndex maxBytes) argument
74 for (i = 0; i < count && i < maxBytes; i++) {
79 if (maxBytes < count) {
H A Dmisc_util.h53 CFStringRef createCFStringForData(CFDataRef aData, CFIndex maxBytes);
/macosx-10.10/ICU-531.30/icuSources/i18n/
H A Dcollationweights.cpp99 minBytes[i] = maxBytes[i] = 0;
107 maxBytes[1] = Collation::TRAIL_WEIGHT_BYTE;
110 maxBytes[2] = Collation::PRIMARY_COMPRESSION_HIGH_BYTE - 1;
113 maxBytes[2] = 0xff;
116 maxBytes[3] = 0xff;
118 maxBytes[4] = 0xff;
126 maxBytes[1] = 0;
128 maxBytes[2] = 0;
130 maxBytes[3] = 0xff;
132 maxBytes[
[all...]
H A Dcollationweights.h85 return (int32_t)(maxBytes[idx] - minBytes[idx] + 1);
102 uint32_t maxBytes[5]; member in class:CollationWeights
/macosx-10.10/tcl-105/tk84/tk/generic/
H A DtkClipboard.c26 int offset, char *buffer, int maxBytes));
28 int offset, char *buffer, int maxBytes));
31 int maxBytes));
57 ClipboardHandler(clientData, offset, buffer, maxBytes)
62 int maxBytes; /* Maximum # of bytes to store at buffer. */
86 * Copy up to maxBytes or end of list, switching buffers as needed.
89 freeCount = maxBytes;
96 return maxBytes;
137 ClipboardAppHandler(clientData, offset, buffer, maxBytes)
142 int maxBytes; /* Maximu
[all...]
H A DtkSelect.c69 int offset, char *buffer, int maxBytes));
98 * proc(clientData, offset, buffer, maxBytes)
102 * int maxBytes;
111 * selection, and maxBytes gives the number of bytes
116 * return value equals maxBytes, this is a sign that there
1341 HandleTclCommand(clientData, offset, buffer, maxBytes)
1346 int maxBytes; /* Maximum # of bytes to store at buffer. */
1377 maxBytes -= extraBytes;
1398 sprintf(command, "%s %d %d", cmdInfoPtr->command, charOffset, maxBytes);
1410 count = (length > maxBytes)
[all...]
H A DtkSelect.h176 char *buffer, int maxBytes, Atom *typePtr));
H A DtkTextDisp.c373 CONST char *source, int maxBytes, int startX,
822 int maxBytes; /* Maximum number of bytes to
856 maxBytes = 0;
861 maxBytes += elidesize;
876 dlPtr->byteCount = maxBytes;
993 maxBytes = segPtr->size - byteOffset;
1000 maxBytes = (p + 1 - segPtr->body.chars) - byteOffset;
1008 if (elide && maxBytes) {
1010 /*breakByteOffset =*/ chunkPtr->breakIndex = chunkPtr->numBytes = maxBytes;
1023 byteOffset, maxX-tabSize, maxBytes, noCharsYe
817 int maxBytes; /* Maximum number of bytes to local
[all...]
H A DtkCanvText.c155 int maxBytes));
1382 * as given by offset and maxBytes.
1391 GetSelText(canvas, itemPtr, offset, buffer, maxBytes)
1397 int maxBytes; /* Maximum number of bytes to place at
1416 if (byteCount > maxBytes) {
1417 byteCount = maxBytes;
/macosx-10.10/tcl-105/tk/tk/generic/
H A DtkClipboard.c25 int offset, char *buffer, int maxBytes);
27 int offset, char *buffer, int maxBytes);
29 int offset, char *buffer, int maxBytes);
60 int maxBytes) /* Maximum # of bytes to store at buffer. */
84 * Copy up to maxBytes or end of list, switching buffers as needed.
87 freeCount = maxBytes;
94 return maxBytes;
139 int maxBytes) /* Maximum # of bytes to store at buffer. */
151 if (length > (size_t) maxBytes) {
152 length = maxBytes;
54 ClipboardHandler( ClientData clientData, int offset, char *buffer, int maxBytes) argument
132 ClipboardAppHandler( ClientData clientData, int offset, char *buffer, int maxBytes) argument
176 ClipboardWindowHandler( ClientData clientData, int offset, char *buffer, int maxBytes) argument
[all...]
H A DtkSelect.c67 int offset, char *buffer, int maxBytes);
99 * int maxBytes)
107 * maxBytes gives the number of bytes available at buffer. Proc should
110 * the terminating NULL character). If the return value equals maxBytes,
1338 int maxBytes) /* Maximum # of bytes to store at buffer. */
1369 maxBytes -= extraBytes;
1390 sprintf(command, "%s %d %d", cmdInfoPtr->command, charOffset, maxBytes);
1402 count = (length > maxBytes) ? maxBytes : length;
1412 if (length <= maxBytes) {
1320 HandleTclCommand( ClientData clientData, int offset, char *buffer, int maxBytes) argument
1459 TkSelDefaultSelection( TkSelectionInfo *infoPtr, Atom target, char *buffer, int maxBytes, Atom *typePtr) argument
[all...]
H A DtkSelect.h163 Atom target, char *buffer, int maxBytes,
H A DtkTextIndex.c1677 int byteOffset, maxBytes, count = 0, elide = 0;
1688 seg2Ptr = TkTextIndexToSeg(indexPtr2, &maxBytes);
1774 if (byteLen > (maxBytes - byteOffset)) {
1775 byteLen = maxBytes - byteOffset;
1804 if (byteLen > (maxBytes - byteOffset)) {
1805 byteLen = maxBytes - byteOffset;
1658 int byteOffset, maxBytes, count = 0, elide = 0; local
H A DtkTextDisp.c558 int maxBytes, int rangeStart, int rangeLength,
1094 int maxBytes; /* Maximum number of bytes to include in this
1139 maxBytes = 0;
1151 maxBytes += segPtr->size;
1207 dlPtr->byteCount = maxBytes;
1410 maxBytes = segPtr->size - byteOffset;
1423 maxBytes = (p + 1 - segPtr->body.chars) - byteOffset;
1444 if (elide /*&& maxBytes*/) {
1451 chunkPtr->breakIndex = chunkPtr->numBytes = maxBytes;
1468 byteOffset, maxX-tabSize, maxBytes, noCharsYe
1089 int maxBytes; /* Maximum number of bytes to include in this local
7024 TkTextCharLayoutProc( TkText *textPtr, TkTextIndex *indexPtr, TkTextSegment *segPtr, int byteOffset, int maxX, int maxBytes, int noCharsYet, TkWrapMode wrapMode, register TkTextDispChunk *chunkPtr) argument
8056 MeasureChars( Tk_Font tkfont, CONST char *source, int maxBytes, int rangeStart, int rangeLength, int startX, int maxX, int flags, int *nextXPtr) argument
[all...]
H A DtkCanvText.c153 int maxBytes);
1373 * maxBytes.
1388 int maxBytes) /* Maximum number of bytes to place at buffer,
1407 if (byteCount > maxBytes) {
1408 byteCount = maxBytes;
1367 GetSelText( Tk_Canvas canvas, Tk_Item *itemPtr, int offset, char *buffer, int maxBytes) argument
/macosx-10.10/AppleUSBIrDA-145.2.4/IrDA/Stack/
H A DIrDscInfo.cpp117 ULong TIrDscInfo::AddDevInfoToBuffer(UByte* buffer, ULong maxBytes) argument
119 #pragma unused(maxBytes)
H A DIrDscInfo.h79 ULong AddDevInfoToBuffer(UByte* buffer, ULong maxBytes);
H A DIrQOS.h192 ULong AddInfoToBuffer(UByte* buffer, ULong maxBytes);
H A DIrQOS.cpp608 ULong TIrQOS::AddInfoToBuffer(UByte* buffer, ULong maxBytes) argument
613 XTRACE(kLogAddInfo, 0, maxBytes);
617 require(maxBytes >= (kQOSNumberOfIdentifiers * 3 + 1), Bogus); // Add the extra byte for the baud rate
/macosx-10.10/BerkeleyDB-21/db/java/src/com/sleepycat/util/keyrange/
H A DKeyRange.java274 public static byte[] getByteArray(DatabaseEntry entry, int maxBytes) { argument
275 return getByteArrayInternal(entry, maxBytes);
279 int maxBytes) {
283 int size = Math.min(entry.getSize(), maxBytes);
278 getByteArrayInternal(DatabaseEntry entry, int maxBytes) argument
/macosx-10.10/IOFireWireFamily-456/IOFireWireLib.CFPlugInProj/
H A DIOFireWireLibCommand.h65 virtual IOReturn SetMaxPacket( IOByteCount maxBytes ) ;
100 static IOReturn SSetMaxPacket ( IOFireWireLibCommandRef self, IOByteCount maxBytes ) ;
/macosx-10.10/Security-57031.1.35/Security/libsecurity_cryptkit/ckutils/giantDvt/
H A DgiantDvt.c46 printf(" x=maxBytes (default = %d)\n", MAX_SIZE_DEF);
106 static giant genGiant(unsigned maxBytes, unsigned char *buf) argument
108 int size = fillData(maxBytes, buf, 0);
/macosx-10.10/IOFireWireFamily-456/IOFireWireFamily.kmodproj/
H A DIOFWCommand.h393 @param maxBytes Maximum packet size in bytes. If the maxsize is 4 then quadlet transfers will be used.
395 IOReturn setMaxPacket(UInt32 maxBytes) argument
399 fMaxPack = maxBytes;
/macosx-10.10/Security-57031.1.35/Security/include/security_cryptkit/
H A Delliptic.c1411 unsigned maxBytes = 4 * minBytes; local
1413 if((maxBytes - minBytes) < MIN_EXTRA_BYTES) {
1414 maxBytes = minBytes + MIN_EXTRA_BYTES;
1416 return BYTES_TO_GIANT_DIGITS(maxBytes);
/macosx-10.10/Security-57031.1.35/Security/libsecurity_cryptkit/lib/
H A Delliptic.c1411 unsigned maxBytes = 4 * minBytes; local
1413 if((maxBytes - minBytes) < MIN_EXTRA_BYTES) {
1414 maxBytes = minBytes + MIN_EXTRA_BYTES;
1416 return BYTES_TO_GIANT_DIGITS(maxBytes);

Completed in 417 milliseconds

12