Searched refs:numBytes (Results 1 - 25 of 55) sorted by relevance

123

/frameworks/av/media/libstagefright/codecs/mp3dec/src/
H A Dpvmp3_get_main_data_size.cpp121 int32 numBytes = fxp_mul32_Q28(mp3_bitrate[info->version_x][info->bitrate_index] << 20, local
125 numBytes >>= (20 - info->version_x);
132 pVars->predicted_frame_size = numBytes;
135 numBytes -= 17;
139 numBytes -= 32;
144 numBytes >>= 1;
145 pVars->predicted_frame_size = numBytes;
149 numBytes -= 9;
153 numBytes -= 17;
159 numBytes
[all...]
H A Dpvmp3_seek_synch.cpp179 int32 numBytes = fxp_mul32_Q28(mp3_bitrate[version][(temp<<16)>>28] << 20, local
182 numBytes >>= (20 - version);
186 numBytes >>= 1;
190 numBytes++;
193 if (numBytes > (int32)pVars->inputStream.inputBufferCurrentLength)
196 pExt->CurrentFrameLength = numBytes + 3;
199 else if (numBytes == (int32)pVars->inputStream.inputBufferCurrentLength)
208 int32 offset = pVars->inputStream.usedBits + ((numBytes) << 3);
/frameworks/av/drm/libdrmframework/plugins/forward-lock/internal-format/common/
H A DFwdLockGlue.h28 * @param[in] numBytes The number of random bytes to generate.
32 int FwdLockGlue_GetRandomNumber(void *pBuffer, size_t numBytes);
H A DFwdLockGlue.c126 int FwdLockGlue_GetRandomNumber(void *pBuffer, size_t numBytes) { argument
132 numBytesRead = read(fileDesc, pBuffer, numBytes);
135 return numBytesRead >= 0 && (size_t)numBytesRead == numBytes;
/frameworks/av/drm/libdrmframework/plugins/forward-lock/internal-format/converter/
H A DFwdLockConv.h40 size_t numBytes; member in struct:FwdLockConv_ConvertData_Output
73 * @param[in] numBytes The number of bytes to read.
78 typedef ssize_t FwdLockConv_ReadFunc_t(int fileDesc, void *pBuffer, size_t numBytes);
85 * @param[in] numBytes The number of bytes to write.
90 typedef ssize_t FwdLockConv_WriteFunc_t(int fileDesc, const void *pBuffer, size_t numBytes);
178 * @param[in] numBytes The number of bytes to convert.
194 size_t numBytes,
H A DFwdLockConv.c579 pOutput->fromConvertData.numBytes = pSession->dataOffset;
836 if (pOutput->fromConvertData.numBytes == pSession->outputBufferSize) {
853 ((unsigned char *)pOutput->fromConvertData.pBuffer)[pOutput->fromConvertData.numBytes++] = ch;
1170 size_t numBytes,
1180 pOutput->fromConvertData.numBytes = 0;
1183 for (i = 0; i < numBytes; ++i) {
1280 output.fromConvertData.numBytes > 0) {
1283 output.fromConvertData.numBytes);
1284 if (numBytesWritten != (ssize_t)output.fromConvertData.numBytes) {
1168 FwdLockConv_ConvertData(int sessionId, const void *pBuffer, size_t numBytes, FwdLockConv_Output_t *pOutput) argument
/frameworks/rs/
H A DrsStream.cpp30 void IStream::loadByteArray(void *dest, size_t numBytes) { argument
31 memcpy(dest, mData + mPos, numBytes);
32 mPos += numBytes;
65 void OStream::addByteArray(const void *src, size_t numBytes) { argument
67 while (mPos + numBytes >= mLength) {
70 memcpy(mData + mPos, src, numBytes);
71 mPos += numBytes;
H A DrsStream.h60 void loadByteArray(void *dest, size_t numBytes);
133 void addByteArray(const void *src, size_t numBytes);
/frameworks/av/media/libstagefright/
H A DVBRISeeker.cpp109 uint32_t numBytes; local
111 case 1: numBytes = buffer[i]; break;
112 case 2: numBytes = U16_AT(buffer + 2 * i); break;
113 case 3: numBytes = U24_AT(buffer + 3 * i); break;
117 numBytes = U32_AT(buffer + 4 * i); break;
121 numBytes *= scale;
123 seeker->mSegments.push(numBytes);
125 ALOGV("entry #%zu: %u offset %#016llx", i, numBytes, (long long)offset);
126 offset += numBytes;
H A DHTTPBase.cpp45 size_t numBytes, int64_t delayUs) {
50 entry.mNumBytes = numBytes;
52 mTotalTransferBytes += numBytes;
44 addBandwidthMeasurement( size_t numBytes, int64_t delayUs) argument
/frameworks/av/drm/libdrmframework/plugins/forward-lock/internal-format/decoder/
H A DFwdLockFile.h43 * @param[in] numBytes The number of bytes to read.
48 ssize_t FwdLockFile_read(int fileDesc, void *pBuffer, size_t numBytes);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
H A DIccServiceTable.java57 int numBytes = mServiceTable.length;
59 .append(numBytes * 8).append("]={ ");
62 for (int i = 0; i < numBytes; i++) {
H A DRuimRecords.java299 int numBytes;
300 for (numBytes = 0; numBytes < spnData.length; numBytes++) {
301 if ((spnData[numBytes] & 0xFF) == 0xFF) break;
304 if (numBytes == 0) {
312 setServiceProviderName(new String(spnData, 0, numBytes, "ISO-8859-1"));
317 GsmAlphabet.gsm7BitPackedToString(spnData, 0, (numBytes*8)/7));
320 String spn = new String(spnData, 0, numBytes, "US-ASCII");
332 GsmAlphabet.gsm7BitPackedToString(spnData, 0, (numBytes *
[all...]
/frameworks/av/services/audioflinger/
H A DSpdifStreamOut.cpp122 ssize_t SpdifStreamOut::write(const void* buffer, size_t numBytes) argument
125 return mSpdifEncoder.write(buffer, numBytes);
H A DAudioStreamOut.cpp202 ssize_t AudioStreamOut::write(const void *buffer, size_t numBytes) argument
205 ssize_t bytesWritten = stream->write(stream, buffer, numBytes);
/frameworks/base/services/core/java/com/android/server/am/
H A DNativeCrashListener.java180 static int readExactly(FileDescriptor fd, byte[] buffer, int offset, int numBytes) argument
183 while (numBytes > 0) {
184 int n = Os.read(fd, buffer, offset + totalRead, numBytes);
187 Slog.w(TAG, "Needed " + numBytes + " but saw " + n);
191 numBytes -= n;
/frameworks/av/drm/libdrmframework/plugins/forward-lock/FwdLockEngine/include/
H A DFwdLockEngine.h442 * @param numBytes Number of bytes to read.
450 int numBytes);
482 * @param numBytes Number of bytes to read.
491 ssize_t numBytes,
497 ssize_t numBytes,
/frameworks/base/core/java/com/android/internal/backup/
H A DIBackupTransport.aidl239 int sendBackupData(int numBytes);
H A DLocalTransport.java362 public int sendBackupData(final int numBytes) { argument
368 mFullBackupSize += numBytes;
373 if (numBytes > mFullBackupBuffer.length) {
374 mFullBackupBuffer = new byte[numBytes];
388 int bytesLeft = numBytes;
405 Log.v(TAG, " stored " + numBytes + " of data");
/frameworks/av/media/libstagefright/include/
H A DHTTPBase.h64 virtual void addBandwidthMeasurement(size_t numBytes, int64_t delayUs);
/frameworks/av/drm/libdrmframework/plugins/forward-lock/FwdLockEngine/src/
H A DFwdLockEngine.cpp422 if (convSession->output.fromConvertData.numBytes > 0) {
423 convResult->data = new char[convSession->output.fromConvertData.numBytes];
426 convResult->length = convSession->output.fromConvertData.numBytes;
630 int numBytes) {
636 numBytes > -1) {
639 size = FwdLockFile_read(session->fileDesc, buffer, numBytes);
676 ssize_t numBytes,
682 ssize_t numBytes,
692 (numBytes > -1) &&
699 bytesRead = onRead(uniqueId, decryptHandle, buffer, numBytes);
627 onRead(int , DecryptHandle* decryptHandle, void* buffer, int numBytes) argument
673 onPread(int uniqueId, DecryptHandle* decryptHandle, void* buffer, ssize_t numBytes, off64_t offset) argument
[all...]
/frameworks/base/core/java/android/app/backup/
H A DBackupTransport.java452 * Tells the transport to read {@code numBytes} bytes of data from the socket file
456 * @param numBytes The number of bytes of tarball data available to be read from the
463 public int sendBackupData(int numBytes) { argument
677 public int sendBackupData(int numBytes) throws RemoteException { argument
678 return BackupTransport.this.sendBackupData(numBytes);
/frameworks/base/core/java/com/android/internal/os/
H A DLoggingPrintStream.java133 int numBytes = Math.min(encodedBytes.remaining(), end - start);
134 encodedBytes.put(bytes, start, numBytes);
135 start += numBytes;
/frameworks/av/drm/libdrmframework/include/
H A DNoOpDrmManagerClientImpl.h68 void* buffer, ssize_t numBytes, off64_t offset);
/frameworks/av/drm/libdrmframework/plugins/passthru/include/
H A DDrmPassthruPlugIn.h93 void* buffer, ssize_t numBytes, off64_t offset);

Completed in 382 milliseconds

123