Home
last modified time | relevance | path

Searched refs:sizeInBytes (Results 1 – 12 of 12) sorted by relevance

/external/webrtc/webrtc/modules/audio_device/android/java/src/org/webrtc/voiceengine/
DWebRtcAudioTrack.java81 final int sizeInBytes = byteBuffer.capacity(); in run() local
87 nativeGetPlayoutData(sizeInBytes, nativeAudioTrack); in run()
91 assertTrue(sizeInBytes <= byteBuffer.remaining()); in run()
94 bytesWritten = writeOnLollipop(audioTrack, byteBuffer, sizeInBytes); in run()
96 bytesWritten = writePreLollipop(audioTrack, byteBuffer, sizeInBytes); in run()
98 if (bytesWritten != sizeInBytes) { in run()
124 private int writeOnLollipop(AudioTrack audioTrack, ByteBuffer byteBuffer, int sizeInBytes) { in writeOnLollipop() argument
125 return audioTrack.write(byteBuffer, sizeInBytes, AudioTrack.WRITE_BLOCKING); in writeOnLollipop()
128 private int writePreLollipop(AudioTrack audioTrack, ByteBuffer byteBuffer, int sizeInBytes) { in writePreLollipop() argument
129 return audioTrack.write(byteBuffer.array(), byteBuffer.arrayOffset(), sizeInBytes); in writePreLollipop()
/external/pdfium/xfa/src/fxbarcode/qrcode/
DBC_QRCoderBitVector.cpp56 int32_t CBC_QRCoderBitVector::sizeInBytes() { in sizeInBytes() function in CBC_QRCoderBitVector
111 int32_t sizeInBytes = (m_sizeInBits + 7) >> 3; in XOR() local
112 for (int32_t i = 0; i < sizeInBytes; ++i) { in XOR()
DBC_QRCoderEncoder.cpp371 int32_t numInputBytes = dataBits.sizeInBytes(); in EncodeWithSpecifyVersion()
391 numInputBytes = headerAndDataBits.sizeInBytes(); in EncodeWithSpecifyVersion()
453 int32_t numInputBytes = dataBits.sizeInBytes(); in EncodeWithAutoVersion()
465 numInputBytes = headerAndDataBits.sizeInBytes(); in EncodeWithAutoVersion()
530 int32_t numInputBytes = dataBits.sizeInBytes(); in Encode()
537 int32_t numLetters = mode == CBC_QRCoderMode::sBYTE ? dataBits.sizeInBytes() in Encode()
593 int32_t numPaddingBytes = numDataBytes - bits->sizeInBytes(); in TerminateBits()
860 if (bits->sizeInBytes() != numDataBytes) { in InterleaveWithECBytes()
912 if (numTotalBytes != result->sizeInBytes()) { in InterleaveWithECBytes()
DBC_QRCoderBitVector.h22 int32_t sizeInBytes();
/external/skia/src/gpu/
DGrBatchFlushState.h96 void putBackVertexSpace(size_t sizeInBytes) { fVertexPool.putBack(sizeInBytes); } in putBackVertexSpace() argument
/external/skia/src/gpu/batches/
DGrDrawPathBatch.h148 static int Align32(int sizeInBytes) { return (sizeInBytes + 3) & ~3; } in Align32()
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/LinearMath/
DbtScalar.h390 …SIMD_FORCE_INLINE void* operator new(size_t sizeInBytes) { return btAlignedAlloc(sizeInBytes,16)…
394 …SIMD_FORCE_INLINE void* operator new[](size_t sizeInBytes) { return btAlignedAlloc(sizeInBytes,1…
/external/lzma/CPP/7zip/Archive/7z/
D7zEncode.cpp122 const UInt32 sizeInBytes = _options.Password.Len() * 2; in CreateMixerCoder() local
123 CByteBuffer buffer(sizeInBytes); in CreateMixerCoder()
130 RINOK(cryptoSetPassword->CryptoSetPassword((const Byte *)buffer, sizeInBytes)); in CreateMixerCoder()
/external/libvncserver/libvncserver/
Dscale.c317 ptr->sizeInBytes = ptr->paddedWidthInBytes * ptr->height; in rfbScaledScreenAllocate()
320 ptr->frameBuffer = malloc(ptr->sizeInBytes); in rfbScaledScreenAllocate()
/external/lzma/C/
DLzFind.c167 size_t sizeInBytes = (size_t)num * sizeof(CLzRef); in AllocRefs() local
168 if (sizeInBytes / sizeof(CLzRef) != num) in AllocRefs()
170 return (CLzRef *)alloc->Alloc(alloc, sizeInBytes); in AllocRefs()
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/
Disac.c220 int16_t WebRtcIsac_AssignSize(int* sizeInBytes) { in WebRtcIsac_AssignSize() argument
221 *sizeInBytes = sizeof(ISACMainStruct) * 2 / sizeof(int16_t); in WebRtcIsac_AssignSize()
/external/libvncserver/rfb/
Drfb.h246 int sizeInBytes; member