Searched refs:numBytes (Results 1 - 25 of 52) 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.c578 pOutput->fromConvertData.numBytes = pSession->dataOffset;
835 if (pOutput->fromConvertData.numBytes == pSession->outputBufferSize) {
852 ((unsigned char *)pOutput->fromConvertData.pBuffer)[pOutput->fromConvertData.numBytes++] = ch;
1169 size_t numBytes,
1179 pOutput->fromConvertData.numBytes = 0;
1182 for (i = 0; i < numBytes; ++i) {
1279 output.fromConvertData.numBytes > 0) {
1282 output.fromConvertData.numBytes);
1283 if (numBytesWritten != (ssize_t)output.fromConvertData.numBytes) {
1167 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 0x%016llx", i, numBytes, offset);
126 offset += numBytes;
H A DHTTPBase.cpp44 size_t numBytes, int64_t delayUs) {
49 entry.mNumBytes = numBytes;
51 mTotalTransferBytes += numBytes;
43 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.java298 int numBytes;
299 for (numBytes = 0; numBytes < spnData.length; numBytes++) {
300 if ((spnData[numBytes] & 0xFF) == 0xFF) break;
303 if (numBytes == 0) {
311 setServiceProviderName(new String(spnData, 0, numBytes, "ISO-8859-1"));
316 GsmAlphabet.gsm7BitPackedToString(spnData, 0, (numBytes*8)/7));
319 String spn = new String(spnData, 0, numBytes, "US-ASCII");
331 GsmAlphabet.gsm7BitPackedToString(spnData, 0, (numBytes *
[all...]
/frameworks/base/core/java/android/speech/srec/
H A DWaveHeader.java31 * <li> numBytes - size of audio data after this header, in bytes.
71 * @param numBytes size of audio data after this header, in bytes.
73 public WaveHeader(short format, short numChannels, int sampleRate, short bitsPerSample, int numBytes) { argument
78 mNumBytes = numBytes;
167 * @param numBytes size of audio data after this header, in bytes.
170 public WaveHeader setNumBytes(int numBytes) { argument
171 mNumBytes = numBytes;
184 int numBytes = readInt(in) - 36;
272 "WaveHeader format=%d numChannels=%d sampleRate=%d bitsPerSample=%d numBytes=%d",
/frameworks/base/core/java/com/android/internal/backup/
H A DIBackupTransport.aidl241 int sendBackupData(int numBytes);
H A DLocalTransport.java351 public int sendBackupData(int numBytes) { argument
357 if (numBytes > mFullBackupBuffer.length) {
358 mFullBackupBuffer = new byte[numBytes];
360 while (numBytes > 0) {
362 int nRead = mSocketInputStream.read(mFullBackupBuffer, 0, numBytes);
369 numBytes -= nRead;
/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/android/app/backup/
H A DBackupTransport.java396 * Tells the transport to read {@code numBytes} bytes of data from the socket file
400 * @param numBytes The number of bytes of tarball data available to be read from the
407 public int sendBackupData(int numBytes) { argument
591 public int sendBackupData(int numBytes) throws RemoteException { argument
592 return BackupTransport.this.sendBackupData(numBytes);
/frameworks/av/media/libstagefright/include/
H A DHTTPBase.h60 virtual void addBandwidthMeasurement(size_t numBytes, int64_t delayUs);
/frameworks/av/drm/libdrmframework/plugins/forward-lock/FwdLockEngine/src/
H A DFwdLockEngine.cpp417 if (convSession->output.fromConvertData.numBytes > 0) {
418 convResult->data = new char[convSession->output.fromConvertData.numBytes];
421 convResult->length = convSession->output.fromConvertData.numBytes;
620 int numBytes) {
626 numBytes > -1) {
629 size = FwdLockFile_read(session->fileDesc, buffer, numBytes);
666 ssize_t numBytes,
672 ssize_t numBytes,
682 (numBytes > -1) &&
689 bytesRead = onRead(uniqueId, decryptHandle, buffer, numBytes);
617 onRead(int uniqueId, DecryptHandle* decryptHandle, void* buffer, int numBytes) argument
663 onPread(int uniqueId, DecryptHandle* decryptHandle, void* buffer, ssize_t numBytes, off64_t offset) argument
[all...]
/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 DDrmManagerService.h119 void* buffer, ssize_t numBytes, off64_t offset);
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 375 milliseconds

123