HomeSort by relevance Sort by last modified time
    Searched refs:numBytes (Results 176 - 200 of 457) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/icu/icu4c/source/i18n/
collationiterator.cpp 762 int32_t numBytes = 74;
763 if(value < numBytes) {
769 value -= numBytes;
770 firstByte += numBytes;
771 numBytes = 40;
772 if(value < numBytes * 254) {
779 value -= numBytes * 254;
780 firstByte += numBytes;
781 numBytes = 16;
782 if(value < numBytes * 254 * 254)
    [all...]
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
CollationIterator.java     [all...]
  /frameworks/av/drm/libdrmframework/plugins/forward-lock/internal-format/converter/
FwdLockConv.c 579 pOutput->fromConvertData.numBytes = pSession->dataOffset;
836 if (pOutput->fromConvertData.numBytes == pSession->outputBufferSize) {
    [all...]
  /frameworks/base/core/java/com/android/internal/backup/
LocalTransport.java 500 public int sendBackupData(final int numBytes) {
506 mFullBackupSize += numBytes;
511 if (numBytes > mFullBackupBuffer.length) {
512 mFullBackupBuffer = new byte[numBytes];
526 int bytesLeft = numBytes;
543 Log.v(TAG, " stored " + numBytes + " of data");
    [all...]
  /development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/core/
VoicemailProviderHelpers.java 324 int numBytes;
325 while ((numBytes = in.read(data)) > 0) {
326 out.write(data, 0, numBytes);
  /frameworks/av/media/libaaudio/src/legacy/
AudioStreamRecord.cpp 391 int32_t numBytes;
393 aaudio_result_t result = AAudioConvert_framesToBytes(numFrames, bytesPerDeviceFrame, &numBytes);
432 bytesActuallyRead = mAudioRecord->read(buffer, numBytes, blocking);
  /cts/tests/tests/drm/lib/
TestPlugin.h 93 void* buffer, ssize_t numBytes, off64_t offset);
  /cts/tests/tests/provider/src/android/provider/cts/
MediaStore_Video_MediaTest.java 78 int numBytes = 1337;
80 FileUtils.createFile(videoFile, numBytes);
100 values.put(Media.SIZE, numBytes);
136 assertEquals(numBytes, c.getInt(c.getColumnIndex(Media.SIZE)));
  /device/google/contexthub/firmware/os/inc/
bl.h 64 void (*blSha2processBytes)(struct Sha2state *state, const void *bytes, uint32_t numBytes);
  /external/deqp/executor/
xeTcpIpLink.cpp 136 void TcpIpLinkState::onTestLogData (const deUint8* bytes, size_t numBytes) const
147 callback(userPtr, bytes, numBytes);
150 void TcpIpLinkState::onInfoLogData (const deUint8* bytes, size_t numBytes) const
161 callback(userPtr, bytes, numBytes);
  /external/libmojo/mojo/public/java/system/src/org/chromium/mojo/system/
Core.java 297 long numBytes);
  /external/lzma/C/
7zArcIn.c 282 UInt32 numBytes = (numItems + 7) >> 3;
283 if (numBytes > sd->Size)
286 SKIP_DATA(sd, numBytes);
312 UInt32 numBytes = (numItems + 7) >> 3;
315 if (numBytes == 0)
319 if (numBytes > sd->Size)
321 MY_ALLOC_AND_CPY(*v, numBytes, sd->Data, alloc);
322 SKIP_DATA(sd, numBytes);
325 MY_ALLOC(Byte, *v, numBytes, alloc);
327 memset(v2, 0xFF, (size_t)numBytes);
    [all...]
  /external/lzma/CS/7zip/Compress/LZ/
LzInWindow.cs 31 UInt32 numBytes = (UInt32)(_bufferOffset) + _streamPos - offset;
34 for (UInt32 i = 0; i < numBytes; i++)
  /frameworks/av/drm/common/include/
IDrmEngine.h 422 * @param[in] numBytes Number of bytes to read.
428 void* buffer, ssize_t numBytes, off64_t offset) = 0;
  /frameworks/av/drm/libdrmframework/include/
NoOpDrmManagerClientImpl.h 68 void* buffer, ssize_t numBytes, off64_t offset);
  /frameworks/av/drm/libdrmframework/plugins/passthru/include/
DrmPassthruPlugIn.h 93 void* buffer, ssize_t numBytes, off64_t offset);
  /frameworks/av/include/drm/
DrmManagerClient.h 179 * @param[in] numBytes Number of bytes to read.
185 void* buffer, ssize_t numBytes, off64_t offset);
  /frameworks/av/media/libstagefright/rtsp/
AMPEG4AudioAssembler.cpp 237 size_t numBytes = (totalNumBits + 7) / 8;
239 *asc = new ABuffer(numBytes);
246 while (numBytes > 0) {
248 --numBytes;
  /hardware/intel/common/wrs_omxil_core/core/src/
intel_m4v_config_parser.h 53 uint32 numBytes;
  /hardware/qcom/media/msm8974/mm-video-legacy/vidc/vdec/inc/
mp4_utils.h 126 unsigned long int numBytes;
  /hardware/qcom/media/msm8974/mm-video-v4l2/vidc/vdec/inc/
mp4_utils.h 126 unsigned long int numBytes;
  /hardware/qcom/media/msm8996/mm-video-v4l2/vidc/vdec/inc/
mp4_utils.h 126 unsigned long int numBytes;
  /hardware/qcom/media/msm8998/mm-video-v4l2/vidc/vdec/inc/
mp4_utils.h 126 unsigned long int numBytes;
  /art/tools/ahat/src/main/com/android/ahat/heapdump/
Sort.java 218 return SIZE_BY_SIZE.compare(b.numBytes, a.numBytes);
  /cts/libs/testserver/src/android/webkit/cts/
CtsTestServer.java 100 private static final String NUM_BYTES_PARAMETER = "numBytes";
441 * @param numBytes of the content that the CTS server should send back
444 public String getTestDownloadUrl(String downloadId, int numBytes) {
449 .appendQueryParameter(NUM_BYTES_PARAMETER, Integer.toString(numBytes))
816 int numBytes = uri.getQueryParameter(NUM_BYTES_PARAMETER) != nul
    [all...]

Completed in 459 milliseconds

1 2 3 4 5 6 78 91011>>