Searched refs:bufferSize (Results 51 - 75 of 132) sorted by relevance

123456

/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-core/libxml2-src/
H A Dtrio.h104 int trio_vsnprintf TRIO_PROTO((char *buffer, size_t bufferSize, TRIO_CONST char *format,
106 int trio_snprintfv TRIO_PROTO((char *buffer, size_t bufferSize, TRIO_CONST char *format,
110 int trio_vsnprintfcat TRIO_PROTO((char *buffer, size_t bufferSize, TRIO_CONST char *format,
/macosx-10.10.1/IOStorageFamily-182.1.1/
H A DIOGUIDPartitionScheme.cpp239 UInt32 bufferSize = 0; local
267 bufferSize = IORound(sizeof(disk_blk0), mediaBlockSize);
269 /* capacity */ bufferSize,
381 bufferSize = IORound(gptCount * gptSize, mediaBlockSize);
383 /* capacity */ bufferSize,
H A DIOFDiskPartitionScheme.cpp229 UInt32 bufferSize = 0; local
251 bufferSize = IORound(sizeof(disk_blk0), mediaBlockSize);
253 /* capacity */ bufferSize,
/macosx-10.10.1/AppleFileSystemDriver-17/
H A DAppleFileSystemDriver.cpp137 vm_size_t bufferSize = 0; local
150 bufferSize = IORound(sizeof(HFSMasterDirectoryBlock), mediaBlockSize);
151 buffer = IOBufferMemoryDescriptor::withCapacity(bufferSize, kIODirectionIn);
/macosx-10.10.1/IOKitUser-1050.1.21/network.subproj/
H A Denetstat.c285 CFIndex bufferSize = CFStringGetMaximumSizeForEncoding(CFStringGetLength(object), local
287 char * buffer = (char *) malloc(bufferSize);
294 /* bufferSize */ bufferSize,
/macosx-10.10.1/PowerManagement-494.1.2/AppleSmartBatteryManager/
H A DAppleSmartBattery.h133 void setManufacturerData(uint8_t *buffer, uint32_t bufferSize);
/macosx-10.10.1/WebKit2-7600.1.25/Shared/mac/
H A DChildProcessMac.mm132 int bufferSize = sizeof(buffer);
135 if (getpwuid_r(getuid(), &pwd, buffer, bufferSize, &result) || !result) {
/macosx-10.10.1/CPANInternal-159.1/Log-Log4perl-1.40/t/
H A D035JDBCAppender.t94 log4j.appender.DBAppndr.bufferSize=3
/macosx-10.10.1/tcl-105/tk/tk/generic/
H A DtkOption.c1086 int result, bufferSize;
1118 bufferSize = (int) Tcl_Seek(chan, (Tcl_WideInt) 0, SEEK_END);
1121 if (bufferSize < 0) {
1128 buffer = (char *) ckalloc((unsigned) bufferSize+1);
1129 bufferSize = Tcl_Read(chan, buffer, bufferSize);
1130 if (bufferSize < 0) {
1137 buffer[bufferSize] = 0;
1078 int result, bufferSize; local
/macosx-10.10.1/tcl-105/tk84/tk/generic/
H A DtkOption.c1111 int result, bufferSize;
1143 bufferSize = (int) Tcl_Seek(chan, (Tcl_WideInt) 0, SEEK_END);
1146 if (bufferSize < 0) {
1153 buffer = (char *) ckalloc((unsigned) bufferSize+1);
1154 bufferSize = Tcl_Read(chan, buffer, bufferSize);
1155 if (bufferSize < 0) {
1162 buffer[bufferSize] = 0;
1103 int result, bufferSize; local
/macosx-10.10.1/ICU-531.30/icuSources/test/cintltst/
H A Dcapitst.c647 int32_t bufferSize = U_COL_SAFECLONE_BUFFERSIZE; local
671 if (NULL != ucol_safeClone(someCollators[0], buffer[0], &bufferSize, NULL))
677 if (NULL != ucol_safeClone(someCollators[0], buffer[0], &bufferSize, &err) || err != U_MEMORY_ALLOCATION_ERROR)
686 log_err("FAIL: Cloned Collator failed to deal correctly with null bufferSize pointer\n");
692 bufferSize = 0;
693 if (NULL != ucol_safeClone(someCollators[0], buffer[0], &bufferSize, &err) ||
694 U_FAILURE(err) || bufferSize <= 0)
699 if (U_COL_SAFECLONE_BUFFERSIZE < bufferSize)
704 if (NULL == (col = ucol_safeClone(someCollators[0], buffer[0], &bufferSize, &err)) || U_FAILURE(err))
710 if (bufferSize >
[all...]
H A Dccapitst.c1693 int32_t bufferSize, maxBufferSize; local
1718 bufferSize = U_CNV_SAFECLONE_BUFFERSIZE;
1719 if (NULL != ucnv_safeClone(cnv, buffer[0], &bufferSize, NULL))
1725 if (NULL != ucnv_safeClone(cnv, buffer[0], &bufferSize, &err) || err != U_MEMORY_ALLOCATION_ERROR)
1734 log_err("FAIL: Cloned converter failed to deal correctly with null bufferSize pointer\n");
1740 bufferSize = 0;
1741 if (NULL != ucnv_safeClone(cnv, buffer[0], &bufferSize, &err) || U_FAILURE(err) || bufferSize <= 0)
1746 if (U_CNV_SAFECLONE_BUFFERSIZE < bufferSize)
1751 if (NULL == (cnv2 = ucnv_safeClone(cnv, buffer[0], &bufferSize,
[all...]
/macosx-10.10.1/IOKitUser-1050.1.21/
H A DIOCFSerialize.c1129 size_t bufferSize,
1165 if (bufferSize < sizeof(kOSSerializeBinarySignature)) return (NULL);
1186 if (!(ok = (bufferPos <= bufferSize))) break;
1223 if (bufferPos > bufferSize) break;
1239 if (bufferPos > bufferSize) break;
1252 if (bufferPos > bufferSize) break;
1361 size_t bufferSize,
1370 if (bufferSize < sizeof(kOSSerializeBinarySignature)) return (0);
1372 || (!strcmp(kOSSerializeBinarySignature, buffer))) return (IOCFUnserializeBinary(buffer, bufferSize, allocator, options, errorString));
1374 if (!bufferSize) retur
1128 IOCFUnserializeBinary(const char * buffer, size_t bufferSize, CFAllocatorRef allocator, CFOptionFlags options __unused, CFStringRef * errorString) argument
1360 IOCFUnserializeWithSize(const char * buffer, size_t bufferSize, CFAllocatorRef allocator, CFOptionFlags options, CFStringRef * errorString) argument
[all...]
/macosx-10.10.1/IOKitUser-1050.1.21/graphics.subproj/
H A DIOAccelSurfaceControl.c66 CFIndex bufferSize = CFStringGetMaximumSizeForEncoding( CFStringGetLength(cfStr), local
68 buffer = malloc( bufferSize);
69 if( buffer && CFStringGetCString( cfStr, buffer, bufferSize, kCFStringEncodingMacRoman))
/macosx-10.10.1/AppleUSBIrDA-145.2.4/IrDA/Stack/
H A DIrQOS.cpp335 IrDAErr TIrQOS::SetDataSize(ULong bufferSize) argument
340 switch(bufferSize) {
369 XTRACE(kLogSetData1, bufferSize >> 16, bufferSize);
H A DIrQOS.h179 IrDAErr SetDataSize(ULong bufferSize);
/macosx-10.10.1/ICU-531.30/icuSources/i18n/
H A Dusrchimp.h68 int32_t bufferSize; member in struct:PCEBuffer
/macosx-10.10.1/IOFWDVComponents-207.4.1/MacOS9Src/
H A DDVFamily.h69 <17> 9/24/98 RS Added bufferSize to DVIsochCompleteEventStruct structure.
263 unsigned long bufferSize; member in struct:DVCIsochCompleteEventStruct
/macosx-10.10.1/WTF-7600.1.24/wtf/
H A DCompression.h42 WTF_EXPORT_PRIVATE bool decompress(uint8_t* destination, size_t bufferSize, size_t* decompressedByteCount = 0);
/macosx-10.10.1/tcl-105/tcl_ext/snack/snack/unix/
H A DjkAudIO_osx.c96 UInt32 bufferSize; local
119 count = sizeof(bufferSize);
122 &count, &bufferSize);
141 A->deviceBufferSize = bufferSize;
317 UInt32 count, bufferSize;
327 count = sizeof(bufferSize);
330 &count, &bufferSize);
331 fprintf(stderr, "kAudioDevicePropertyBufferSize %d %d\n", err, bufferSize);
/macosx-10.10.1/WebKit2-7600.1.25/Shared/linux/SeccompFilters/
H A DSeccompBroker.cpp208 if (sendMessage(m_socket, encoder->buffer(), encoder->bufferSize()) < 0)
343 if (sendMessage(socket, encoder->buffer(), encoder->bufferSize(), fd) < 0)
/macosx-10.10.1/cddafs-253/FilesystemProber/
H A Dcddafs_util.cpp993 UInt8 bufferSize = 0; local
1009 bufferSize = MAXNAMLEN - prefixSize - suffixSize - 1;
1011 buffer = ( char * ) calloc ( 1, bufferSize );
1015 bufferSize );
1017 buffer[bufferSize - 1] = 0;
/macosx-10.10.1/xnu-2782.1.97/bsd/vfs/
H A Dvfs_attrlist.c845 user_addr_t attributeBuffer, size_t bufferSize, uint64_t options,
1076 ab.allocated = ulmin(bufferSize, fixedsize + varsize);
2535 user_addr_t attributeBuffer, size_t bufferSize, uint64_t options,
2560 uio_addiov(auio, attributeBuffer, bufferSize);
2592 bufferSize, options, segflg, proc_is64);
2722 uap->bufferSize, uap->options,
2736 struct attrlist *alp, user_addr_t attributeBuffer, size_t bufferSize,
2763 bufferSize, options, segflg, NULL);
2789 CAST_USER_ADDR_T(uap->attributeBuffer), uap->bufferSize,
2811 CAST_USER_ADDR_T(uap->attributeBuffer), uap->bufferSize,
844 getvolattrlist(vfs_context_t ctx, vnode_t vp, struct attrlist *alp, user_addr_t attributeBuffer, size_t bufferSize, uint64_t options, enum uio_seg segflg, int is_64bit) argument
2534 getattrlist_internal(vfs_context_t ctx, vnode_t vp, struct attrlist *alp, user_addr_t attributeBuffer, size_t bufferSize, uint64_t options, enum uio_seg segflg, char* alt_name) argument
2735 getattrlistat_internal(vfs_context_t ctx, user_addr_t path, struct attrlist *alp, user_addr_t attributeBuffer, size_t bufferSize, uint64_t options, enum uio_seg segflg, enum uio_seg pathsegflg, int fd) argument
[all...]
/macosx-10.10.1/xnu-2782.1.97/libkern/c++/
H A DOSUnserializeXML.y1211 OSUnserializeXML(const char *buffer, size_t bufferSize, OSString **errorString)
1213 if ((!buffer) || (!bufferSize)) return 0;
1216 if (buffer[bufferSize - 1] || strnlen(buffer, bufferSize) == bufferSize) return 0;
/macosx-10.10.1/ICU-531.30/icuSources/io/
H A Dustdio.c406 int32_t bufferSize; local
458 bufferSize = UFILE_UCHARBUFFER_SIZE;
464 f->fUCBuffer + bufferSize,

Completed in 479 milliseconds

123456