Searched refs:bufferLength (Results 1 - 25 of 40) sorted by relevance

12

/macosx-10.10.1/IOCDStorageFamily-51/
H A DIOCDMediaBSDClient.cpp40 uint32_t bufferLength; member in struct:__anon1385
53 uint32_t bufferLength; member in struct:__anon1386
72 uint16_t bufferLength; member in struct:__anon1387
91 uint16_t bufferLength; member in struct:__anon1389
99 uint16_t bufferLength; member in struct:__anon1391
107 uint16_t bufferLength; member in struct:__anon1392
120 uint16_t bufferLength; member in struct:__anon1393
133 uint16_t bufferLength; member in struct:__anon1394
238 /* length */ request->bufferLength,
255 request->bufferLength
[all...]
H A DIOCDMediaBSDClient.h64 uint32_t bufferLength; /* actual length on return */ member in struct:__anon1395
102 uint16_t bufferLength; /* actual length on return */ member in struct:__anon1398
114 uint16_t bufferLength; /* actual length on return */ member in struct:__anon1400
131 uint16_t bufferLength; /* actual length on return */ member in struct:__anon1401
/macosx-10.10.1/IOKitUser-1050.1.21/kext.subproj/
H A Dmisc_util.c30 CFIndex bufferLength = 0; local
36 bufferLength = sizeof('\0') +
40 result = (char *)malloc(bufferLength * sizeof(char));
44 if (!CFStringGetCString(aString, result, bufferLength,
H A DOSKextVersion.c394 uint32_t bufferLength)
407 if (!buffer || bufferLength < kOSKextVersionMaxLength) {
411 bzero(buffer, bufferLength * sizeof(char));
414 strlcpy(buffer, "(invalid)", bufferLength);
418 strlcpy(buffer, "(missing)", bufferLength);
424 strlcpy(buffer, "(invalid)", bufferLength);
444 strlcpy(buffer, "(invalid)", bufferLength);
448 cpos = snprintf(buffer, bufferLength, "%u", (uint32_t)vers_major);
454 cpos += snprintf(buffer+cpos, bufferLength - cpos, "%u", (uint32_t)vers_minor);
461 cpos += snprintf(buffer+cpos, bufferLength
391 OSKextVersionGetString( OSKextVersion aVersion, char * buffer, uint32_t bufferLength) argument
[all...]
/macosx-10.10.1/IOBDStorageFamily-14/
H A DIOBDMediaBSDClient.h63 uint16_t bufferLength; member in struct:__anon1379
79 uint16_t bufferLength; member in struct:__anon1380
94 uint16_t bufferLength; member in struct:__anon1381
102 uint16_t bufferLength; /* actual length on return */ member in struct:__anon1382
115 uint16_t bufferLength; /* actual length on return */ member in struct:__anon1383
H A DIOBDMediaBSDClient.cpp43 uint16_t bufferLength; member in struct:__anon1369
59 uint16_t bufferLength; member in struct:__anon1370
75 uint16_t bufferLength; member in struct:__anon1371
91 uint16_t bufferLength; member in struct:__anon1372
106 uint16_t bufferLength; member in struct:__anon1373
121 uint16_t bufferLength; member in struct:__anon1374
129 uint16_t bufferLength; member in struct:__anon1375
137 uint16_t bufferLength; member in struct:__anon1376
150 uint16_t bufferLength; member in struct:__anon1377
163 uint16_t bufferLength; member in struct:__anon1378
[all...]
/macosx-10.10.1/IODVDStorageFamily-35/
H A DIODVDMediaBSDClient.h64 uint16_t bufferLength; member in struct:__anon1424
84 uint16_t bufferLength; member in struct:__anon1425
103 uint16_t bufferLength; member in struct:__anon1426
115 uint16_t bufferLength; /* actual length on return */ member in struct:__anon1427
132 uint16_t bufferLength; /* actual length on return */ member in struct:__anon1428
H A DIODVDMediaBSDClient.cpp41 uint16_t bufferLength; member in struct:__anon1414
57 uint16_t bufferLength; member in struct:__anon1415
73 uint16_t bufferLength; member in struct:__anon1416
89 uint16_t bufferLength; member in struct:__anon1417
104 uint16_t bufferLength; member in struct:__anon1418
119 uint16_t bufferLength; member in struct:__anon1419
127 uint16_t bufferLength; member in struct:__anon1420
135 uint16_t bufferLength; member in struct:__anon1421
148 uint16_t bufferLength; member in struct:__anon1422
161 uint16_t bufferLength; member in struct:__anon1423
[all...]
/macosx-10.10.1/WTF-7600.1.24/wtf/
H A DDecimalNumber.cpp102 unsigned DecimalNumber::toStringDecimal(LChar* buffer, unsigned bufferLength) const
104 ASSERT_UNUSED(bufferLength, bufferLength >= bufferLengthForStringDecimal());
158 unsigned DecimalNumber::toStringExponential(LChar* buffer, unsigned bufferLength) const
160 ASSERT_UNUSED(bufferLength, bufferLength >= bufferLengthForStringExponential());
H A DDecimalNumber.h87 WTF_EXPORT_PRIVATE unsigned toStringDecimal(LChar* buffer, unsigned bufferLength) const;
88 WTF_EXPORT_PRIVATE unsigned toStringExponential(LChar* buffer, unsigned bufferLength) const;
H A DStringExtras.h105 inline char* strnstr(const char* buffer, const char* target, size_t bufferLength) argument
110 for (const char* start = buffer; *start && start + targetLength <= buffer + bufferLength; start++) {
/macosx-10.10.1/xnu-2782.1.97/libkern/
H A DOSKextVersion.c396 uint32_t bufferLength)
409 if (!buffer || bufferLength < kOSKextVersionMaxLength) {
413 bzero(buffer, bufferLength * sizeof(char));
416 strlcpy(buffer, "(invalid)", bufferLength);
420 strlcpy(buffer, "(missing)", bufferLength);
426 strlcpy(buffer, "(invalid)", bufferLength);
446 strlcpy(buffer, "(invalid)", bufferLength);
450 cpos = snprintf(buffer, bufferLength, "%u", (uint32_t)vers_major);
456 cpos += snprintf(buffer+cpos, bufferLength - cpos, "%u", (uint32_t)vers_minor);
463 cpos += snprintf(buffer+cpos, bufferLength
393 OSKextVersionGetString( OSKextVersion aVersion, char * buffer, uint32_t bufferLength) argument
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/include/security_utilities/
H A Dbufferfifo.h50 BufferFifo(size_t es = 4096) : bufferLength(es) { }
68 const size_t bufferLength; member in class:Security::BufferFifo
H A Dbufferfifo.cpp73 Buffer *current = new Buffer(max(bufferLength, size));
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_utilities/lib/
H A Dbufferfifo.h50 BufferFifo(size_t es = 4096) : bufferLength(es) { }
68 const size_t bufferLength; member in class:Security::BufferFifo
H A Dbufferfifo.cpp73 Buffer *current = new Buffer(max(bufferLength, size));
/macosx-10.10.1/cddafs-253/
H A DAppleCDDAFileSystemUtilities.cpp158 vm_size_t bufferLength = 0; local
173 bufferLength = theData->getLength ( );
174 buffer = ( QTOCDataFormat10Ptr ) IOMalloc ( bufferLength );
180 bcopy ( theData->getBytesNoCopy ( ), buffer, bufferLength );
/macosx-10.10.1/IOKitUser-1050.1.21/network.subproj/
H A DIOUserEthernetController.h83 CFIndex bufferLength);
89 CFIndex bufferLength);
/macosx-10.10.1/WebKit2-7600.1.25/Shared/API/c/
H A DWKString.cpp55 size_t WKStringGetCharacters(WKStringRef stringRef, WKChar* buffer, size_t bufferLength) argument
58 return (toImpl(stringRef)->getCharacters(static_cast<UChar*>(buffer), bufferLength));
H A DWKString.h54 WK_EXPORT size_t WKStringGetCharacters(WKStringRef string, WKChar* buffer, size_t bufferLength);
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/sha1/
H A Dsha256.c209 sc->bufferLength = 0;
228 sc->bufferLength = 0;
366 if (sc->bufferLength) {
367 bufferBytesLeft = 64L - sc->bufferLength;
373 memcpy (&sc->buffer.bytes[sc->bufferLength], dataPtr, bytesToCopy);
377 sc->bufferLength += bytesToCopy;
381 if (sc->bufferLength == 64L) {
384 sc->bufferLength = 0L;
399 memcpy (&sc->buffer.bytes[sc->bufferLength], dataPtr, len);
403 sc->bufferLength
[all...]
H A Dsha256.h59 uint32_t bufferLength; member in struct:_SHA256Context
/macosx-10.10.1/ICU-531.30/icuSources/common/
H A Dunames.cpp215 #define WRITE_CHAR(buffer, bufferLength, bufferPos, c) { \
216 if((bufferLength)>0) { \
218 --(bufferLength); \
240 char *buffer, uint16_t bufferLength) {
279 WRITE_CHAR(buffer, bufferLength, bufferPos, c);
294 WRITE_CHAR(buffer, bufferLength, bufferPos, c);
311 WRITE_CHAR(buffer, bufferLength, bufferPos, c);
318 if(bufferLength>0) {
448 static uint16_t getExtName(uint32_t code, char *buffer, uint16_t bufferLength) { argument
455 WRITE_CHAR(buffer, bufferLength, lengt
238 expandName(UCharNames *names, const uint8_t *name, uint16_t nameLength, UCharNameChoice nameChoice, char *buffer, uint16_t bufferLength) argument
567 expandGroupName(UCharNames *names, const uint16_t *group, uint16_t lineNumber, UCharNameChoice nameChoice, char *buffer, uint16_t bufferLength) argument
578 getName(UCharNames *names, uint32_t code, UCharNameChoice nameChoice, char *buffer, uint16_t bufferLength) argument
773 writeFactorSuffix(const uint16_t *factors, uint16_t count, const char *s, uint32_t code, uint16_t indexes[8], const char *elementBases[8], const char *elements[8], char *buffer, uint16_t bufferLength) argument
852 getAlgName(AlgorithmicRange *range, uint32_t code, UCharNameChoice nameChoice, char *buffer, uint16_t bufferLength) argument
1450 u_charName(UChar32 code, UCharNameChoice nameChoice, char *buffer, int32_t bufferLength, UErrorCode *pErrorCode) argument
[all...]
/macosx-10.10.1/WebKit2-7600.1.25/Shared/
H A DAPIString.h70 size_t getCharacters(UChar* buffer, size_t bufferLength) const
72 unsigned unsignedBufferLength = std::min<size_t>(bufferLength, std::numeric_limits<unsigned>::max());
/macosx-10.10.1/ppp-786.1.1/Helpers/sbslauncher/
H A Dnetwork_detection_helper.m30 CFIndex responseCode = 0, bufferLength = 0;
54 bufferLength = CFStringGetLength(errorstr) + 1;
55 buffer = (char*)malloc(bufferLength*sizeof(char));
56 CFStringGetCString(errorstr, buffer, (bufferLength), CFStringGetSystemEncoding());

Completed in 240 milliseconds

12