Searched refs:byteSize (Results 1 - 24 of 24) sorted by relevance

/macosx-10.10/BerkeleyDB-21/db/java/src/com/sleepycat/bind/serial/
H A DSerialBase.java46 * @param byteSize the initial byte size of the output buffer, or zero to
49 public void setSerialBufferSize(int byteSize) { argument
50 outputBufferSize = byteSize;
85 int byteSize = getSerialBufferSize();
86 if (byteSize != 0) {
87 return new FastOutputStream(byteSize);
/macosx-10.10/BerkeleyDB-21/db/java/src/com/sleepycat/bind/tuple/
H A DTupleBase.java48 * @param byteSize the initial byte size of the output buffer, or zero to
51 public void setTupleBufferSize(int byteSize) { argument
52 outputBufferSize = byteSize;
88 int byteSize = getTupleBufferSize();
89 if (byteSize != 0) {
90 return new TupleOutput(new byte[byteSize]);
/macosx-10.10/llvmCore-3425.0.34/lib/MC/MCDisassembler/
H A DEDInst.h100 /// @arg byteSize - The size of the consumed instruction, in bytes
105 uint64_t byteSize,
110 /// byteSize - returns the number of bytes consumed by the machine code
112 uint64_t byteSize();
H A DEDInst.cpp27 uint64_t byteSize,
33 ByteSize(byteSize),
55 uint64_t EDInst::byteSize() { function in class:EDInst
26 EDInst(llvm::MCInst *inst, uint64_t byteSize, EDDisassembler &disassembler, const llvm::EDInstInfo *info) argument
H A DEDDisassembler.cpp228 uint64_t byteSize; local
231 S = Disassembler->getInstruction(*inst, byteSize, memoryObject, address,
247 EDInst* sdInst = new EDInst(inst, byteSize, *this, thisInstInfo);
H A DEDMain.cpp82 address += inst->byteSize();
93 return ((EDInst*)inst)->byteSize();
/macosx-10.10/tcl-105/tcl_ext/tkimg/tkimg/xpm/
H A Dxpm.c70 int *widthPtr, int *heightPtr, int *numColors, int *byteSize);
142 int numColors, byteSize; local
148 return ReadXPMFileHeader(&handle, widthPtr, heightPtr, &numColors, &byteSize);
178 int numColors, byteSize; local
184 return ReadXPMFileHeader(&handle, widthPtr, heightPtr, &numColors, &byteSize);
220 int fileWidth = 0, fileHeight = 0, numColors = 0, byteSize = 0; local
249 type = ReadXPMFileHeader(handle, &fileWidth, &fileHeight, &numColors, &byteSize);
259 if ((byteSize < 1) || (byteSize > 4)) {
296 colorDefn = p + byteSize
[all...]
/macosx-10.10/ICU-531.30/icuSources/common/
H A Ducol_data.h76 uint32_t byteSize; member in struct:__anon829
H A Ducol_swp.cpp649 header.byteSize=udata_readInt32(ds, inHeader->byteSize);
652 (uint32_t)(length-headerSize)<(header.byteSize=udata_readInt32(ds, inHeader->byteSize)))
663 uprv_memcpy(outBytes, inBytes, header.byteSize);
668 /* read more of the InverseUCATableHeader (the byteSize field was read above) */
686 return headerSize+header.byteSize;
/macosx-10.10/IOBDStorageFamily-14/
H A DIOBDBlockStorageDriver.cpp109 IOBDBlockStorageDriver::instantiateMediaObject(UInt64 base,UInt64 byteSize, argument
115 return super::instantiateMediaObject(base,byteSize,blockSize,mediaName);
119 base,byteSize,blockSize,mediaName);
H A DIOBDBlockStorageDriver.h115 virtual IOMedia * instantiateMediaObject(UInt64 base,UInt64 byteSize,
/macosx-10.10/IODVDStorageFamily-35/
H A DIODVDBlockStorageDriver.h116 virtual IOMedia * instantiateMediaObject(UInt64 base,UInt64 byteSize,
H A DIODVDBlockStorageDriver.cpp177 IODVDBlockStorageDriver::instantiateMediaObject(UInt64 base,UInt64 byteSize, argument
183 return super::instantiateMediaObject(base,byteSize,blockSize,mediaName);
187 base,byteSize,blockSize,mediaName);
/macosx-10.10/JavaScriptCore-7600.1.17/runtime/
H A DJSGenericTypedArrayViewInlines.h440 visitor.copyLater(thisObject, TypedArrayVectorCopyToken, thisObject->m_vector, thisObject->byteSize());
445 visitor.reportExtraMemoryUsage(thisObject, thisObject->byteSize());
470 void* newVector = visitor.allocateNewSpace(thisObject->byteSize());
471 memcpy(newVector, oldVector, thisObject->byteSize());
473 visitor.didCopy(oldVector, thisObject->byteSize());
501 size_t size = thisObject->byteSize();
H A DJSGenericTypedArrayView.h103 size_t byteSize() const { return sizeOf(m_length, sizeof(typename Adaptor::Type)); } function in class:JSC::JSGenericTypedArrayView
/macosx-10.10/IOCDStorageFamily-51/
H A DIOCDBlockStorageDriver.cpp501 IOCDBlockStorageDriver::instantiateMediaObject(UInt64 base,UInt64 byteSize, argument
507 byteSize /= blockSize;
508 byteSize *= kBlockSizeCD;
512 media = super::instantiateMediaObject(base,byteSize,blockSize,mediaName);
H A DIOCDBlockStorageDriver.h79 virtual IOMedia * instantiateMediaObject(UInt64 base,UInt64 byteSize,
/macosx-10.10/WTF-7600.1.24/wtf/
H A DRefCountedArray.h129 size_t byteSize() const { return size() * sizeof(T); } function in class:WTF::RefCountedArray
/macosx-10.10/IOHIDFamily-606.1.7/IOHIDFamily/
H A DIOHIDElementPrivate.cpp1734 UInt32 byteSize = (UInt32)getByteSize(); local
1738 bcopy((const void *)_elementValue->value, (void *)_dataValue->getBytesNoCopy(), byteSize);
1740 _dataValue = OSData::withBytes((const void *)_elementValue->value, byteSize);
1744 UInt8 * bytes[byteSize];
1745 _dataValue = OSData::withBytes(bytes, byteSize);
1749 bzero((void *)_dataValue->getBytesNoCopy(), byteSize);
1804 IOByteCount byteSize; local
1807 byteSize = bitCount >> 3;
1808 byteSize += (bitCount % 8) ? 1 : 0;
1810 return byteSize;
[all...]
/macosx-10.10/BerkeleyDB-21/db/test/scr024/src/com/sleepycat/bind/tuple/test/
H A DTupleBindingTest.java99 Object val, int byteSize) {
106 assertEquals(byteSize, buffer.getSize());
98 primitiveBindingTest(Class primitiveCls, Class compareCls, Object val, int byteSize) argument
/macosx-10.10/llvmCore-3425.0.34/tools/llvm-mc/
H A DDisassembler.cpp245 ByteArray.erase (ByteArray.begin(), ByteArray.begin() + inst->byteSize());
/macosx-10.10/dyld-353.2.1/launch-cache/
H A DObjCModernAbstraction.hpp192 uint32_t byteSize() const { function in class:objc_method_list_t
317 uint32_t byteSize() const { function in class:objc_ivar_list_t
381 uint32_t byteSize() const { function in class:objc_property_list_t
473 uint32_t byteSize() const { function in class:objc_protocol_list_t
/macosx-10.10/IOStorageFamily-182.1.1/
H A DIOBlockStorageDriver.h1317 * @param byteSize
1326 virtual IOMedia * instantiateMediaObject(UInt64 base,UInt64 byteSize,
H A DIOBlockStorageDriver.cpp1562 IOBlockStorageDriver::instantiateMediaObject(UInt64 base,UInt64 byteSize, argument
1578 byteSize, /* byte size */

Completed in 224 milliseconds