HomeSort by relevance Sort by last modified time
    Searched full:numbytes (Results 101 - 125 of 448) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRStringStream.h 61 + newANTLRStringStream:(char *)myData Count:(NSInteger)numBytes;
71 - (id) initWithData:(char *)myData Count:(NSInteger)numBytes;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRStringStream.h 50 + newANTLRStringStream:(char *)myData Count:(NSInteger)numBytes;
60 - (id) initWithData:(char *)myData Count:(NSInteger)numBytes;
  /external/deqp/executor/
xeContainerFormatParser.hpp 61 void feed (const deUint8* bytes, size_t numBytes);
78 void getData (deUint8* dst, int numBytes, int offset);
xeCallQueue.hpp 75 void read (deUint8* bytes, size_t numBytes);
76 const deUint8* getDataBlock (size_t numBytes); //!< \note Valid only during call.
93 void write (const deUint8* bytes, size_t numBytes);
  /external/deqp/framework/platform/android/
tcuAndroidExecService.hpp 57 virtual int readTestLog (deUint8* dst, int numBytes);
58 virtual int readInfoLog (deUint8* dst, int numBytes);
  /external/libgdx/gdx/src/com/badlogic/gdx/utils/compression/lz/
InWindow.java 28 int numBytes = _bufferOffset + _streamPos - offset;
31 for (int i = 0; i < numBytes; i++)
  /external/lzma/CS/7zip/Compress/LZ/
LzInWindow.cs 31 UInt32 numBytes = (UInt32)(_bufferOffset) + _streamPos - offset;
34 for (UInt32 i = 0; i < numBytes; i++)
  /external/lzma/Java/SevenZip/Compression/LZ/
InWindow.java 31 int numBytes = _bufferOffset + _streamPos - offset;
34 for (int i = 0; i < numBytes; i++)
  /external/mockftpserver/branches/1.x_Branch/src/main/java/org/mockftpserver/core/session/
Session.java 63 * @param numBytes - the number of bytes from data to send
65 public void sendData(byte[] data, int numBytes);
  /frameworks/av/drm/common/
DrmEngineBase.cpp 168 int uniqueId, DecryptHandle* decryptHandle, void* buffer, ssize_t numBytes, off64_t offset) {
169 return onPread(uniqueId, decryptHandle, buffer, numBytes, offset);
  /frameworks/av/drm/libdrmframework/plugins/forward-lock/internal-format/decoder/
FwdLockFile.h 43 * @param[in] numBytes The number of bytes to read.
48 ssize_t FwdLockFile_read(int fileDesc, void *pBuffer, size_t numBytes);
  /frameworks/av/services/audioflinger/
SpdifStreamOut.cpp 122 ssize_t SpdifStreamOut::write(const void* buffer, size_t numBytes)
125 return mSpdifEncoder.write(buffer, numBytes);
  /frameworks/rs/
rsStream.h 60 void loadByteArray(void *dest, size_t numBytes);
133 void addByteArray(const void *src, size_t numBytes);
  /hardware/bsp/intel/peripheral/libupm/src/lpd8806/
lpd8806.cxx 63 uint16_t numBytes = 0;
69 numBytes = totalBytes;
  /packages/apps/Camera2/src/com/android/camera/processing/imagebackend/
TaskCompressImageToJpeg.java 118 int numBytes;
234 numBytes = compressedData.limit();
282 numBytes = compressJpegFromYUV420Image(
288 if (numBytes > jpgBufferSize) {
301 numBytes = compressJpegFromYUV420Image(
306 if (numBytes < 0) {
310 compressedData.limit(numBytes);
323 writeOut = new byte[numBytes];
  /system/media/audio_utils/include/audio_utils/spdif/
FrameScanner.h 103 virtual uint16_t convertBytesToLengthCode(uint16_t numBytes) const { return numBytes * 8; }
  /external/llvm/include/llvm/Support/
Memory.h 56 /// \p NumBytes bytes of virtual memory is made.
78 static MemoryBlock allocateMappedMemory(size_t NumBytes,
114 /// attempt to allocate \p NumBytes bytes of virtual memory is made.
122 static MemoryBlock AllocateRWX(size_t NumBytes,
  /external/tpm2/
CryptoEngine.h 23 typedef UINT16 NUMBYTES; // When a size is a number of bytes
59 const NUMBYTES digestSize;
60 const NUMBYTES blockSize;
61 const NUMBYTES derSize;
  /frameworks/av/media/libstagefright/include/
HTTPBase.h 64 virtual void addBandwidthMeasurement(size_t numBytes, int64_t delayUs);
  /system/media/audio_utils/spdif/
AC3FrameScanner.h 50 virtual uint16_t convertBytesToLengthCode(uint16_t numBytes) const;
  /cts/tests/tests/security/src/android/security/cts/
PackageSignatureTest.java 136 int numBytes = 0;
137 while ((numBytes = input.read(buffer)) != -1) {
138 output.write(buffer, 0, numBytes);
  /external/chromium-trace/catapult/third_party/gsutil/gslib/commands/
cat.py 67 -numbytes (e.g., -r -5)
71 through the end of the object, and -numbytes means to return the
72 last numbytes of the object. For example:
  /external/deqp/modules/internal/
ditAstcTests.cpp 88 inline size_t getNumBlocksFromBytes (size_t numBytes)
90 TCU_CHECK(numBytes % astc::BLOCK_SIZE_BYTES == 0);
91 return (numBytes / astc::BLOCK_SIZE_BYTES);
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
RuntimeDyldMachOX86_64.h 158 unsigned NumBytes = 1 << Size;
167 SignExtend64(readBytesUnaligned(LocalAddress, NumBytes), NumBytes * 8);
  /external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/core/session/
StubSession.groovy 100 public byte[] readData(int numBytes) {
115 public void sendData(byte[] data, int numBytes) {
117 sentData << new String(data, 0, numBytes)

Completed in 567 milliseconds

1 2 3 45 6 7 8 91011>>