HomeSort by relevance Sort by last modified time
    Searched refs:numBytes (Results 76 - 100 of 164) sorted by null

1 2 34 5 6 7

  /hardware/qcom/media/mm-video-legacy/vidc/vdec/inc/
mp4_utils.h 126 unsigned long int numBytes;
  /hardware/qcom/media/mm-video-v4l2/vidc/vdec/inc/
mp4_utils.h 126 unsigned long int numBytes;
  /hardware/ti/omap3/omx/ti_omx_config_parser/inc/
ti_m4v_config_parser.h 64 uint32 numBytes;
  /cts/libs/testserver/src/android/webkit/cts/
CtsTestServer.java 101 private static final String NUM_BYTES_PARAMETER = "numBytes";
374 * @param numBytes of the content that the CTS server should send back
377 public String getTestDownloadUrl(String downloadId, int numBytes) {
382 .appendQueryParameter(NUM_BYTES_PARAMETER, Integer.toString(numBytes))
729 int numBytes = uri.getQueryParameter(NUM_BYTES_PARAMETER) != null
733 response.setHeader("Content-Length", Integer.toString(numBytes));
734 response.setEntity(createFileEntity(downloadId, numBytes));
738 private static FileEntity createFileEntity(String downloadId, int numBytes) throws IOException {
749 for (int i = 0; i < numBytes / data.length; i++) {
752 stream.write(data, 0, numBytes % data.length)
    [all...]
  /dalvik/vm/compiler/codegen/x86/libenc/
enc_wrapper.cpp 154 unsigned numBytes = DecoderBase::decode(stream_start, &decInst);
156 return numBytes;
173 unsigned numBytes = DecoderBase::decode(stream, &decInst);
174 return numBytes;
184 unsigned numBytes = DecoderBase::decode(stream, &decInst);
364 unsigned numBytes = DecoderBase::decode(stream, &decInst);
555 unsigned numBytes = DecoderBase::decode(stream, &decInst);
557 return (stream + numBytes);
  /external/chromium_org/third_party/tlslite/tlslite/utils/
OpenSSL_RSAKey.py 63 byteLength = numBytes(self.n)
76 byteLength = numBytes(self.n)
  /external/clang/lib/CodeGen/
CGRecordLayoutBuilder.cpp 172 llvm::Type *getByteArrayType(CharUnits NumBytes);
175 void AppendBytes(CharUnits numBytes);
734 CharUnits NumBytes = AlignedNonVirtualTypeSize - AlignedNextFieldOffset;
735 FieldTypes.push_back(getByteArrayType(NumBytes));
890 llvm::Type *CGRecordLayoutBuilder::getByteArrayType(CharUnits numBytes) {
891 assert(!numBytes.isZero() && "Empty byte arrays aren't allowed.");
894 if (numBytes > CharUnits::One())
895 Ty = llvm::ArrayType::get(Ty, numBytes.getQuantity());
900 void CGRecordLayoutBuilder::AppendBytes(CharUnits numBytes) {
901 if (numBytes.isZero()
    [all...]
  /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/
DrmManagerClient.cpp 162 sp<DecryptHandle> &decryptHandle, void* buffer, ssize_t numBytes, off64_t offset) {
163 return mDrmManagerClientImpl->pread(mUniqueId, decryptHandle, buffer, numBytes, offset);
DrmManagerClientImpl.cpp 317 void* buffer, ssize_t numBytes, off64_t offset) {
319 if ((NULL != decryptHandle.get()) && (NULL != buffer) && (0 < numBytes)) {
321 uniqueId, decryptHandle.get(), buffer, numBytes, offset);
  /frameworks/av/drm/libdrmframework/include/
IDrmManagerService.h 163 void* buffer, ssize_t numBytes,off64_t offset) = 0;
250 void* buffer, ssize_t numBytes, off64_t offset);
  /frameworks/av/drm/libdrmframework/plugins/common/include/
DrmEngineBase.h 104 void* buffer, ssize_t numBytes, off64_t offset);
515 * @param[in] numBytes Number of bytes to read.
521 void* buffer, ssize_t numBytes, off64_t offset) = 0;
  /frameworks/base/core/java/android/speech/tts/
BlockingAudioTrack.java 185 long getAudioLengthMs(int numBytes) {
186 final int unconsumedFrames = numBytes / mBytesPerFrame;
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/videoproc/
BackDropperFilter.java 616 int numBytes = mMaskFormat.getSize();
617 byte[] initialBgMean = new byte[numBytes];
618 byte[] initialBgVariance = new byte[numBytes];
619 byte[] initialMaskVerify = new byte[numBytes];
620 for (int i = 0; i < numBytes; i++) {
629 mBgMean[i].setData(initialBgMean, 0, numBytes);
632 mBgVariance[i].setData(initialBgVariance, 0, numBytes);
635 mMaskVerify[i].setData(initialMaskVerify, 0, numBytes);
    [all...]
  /external/icu4c/i18n/
uspoof_impl.cpp 666 void *SpoofData::reserveSpace(int32_t numBytes, UErrorCode &status) {
676 numBytes = (numBytes + 15) & ~15; // Round up to a multiple of 16
678 fMemLimit += numBytes;
681 uprv_memset((char *)fRawData + returnOffset, 0, numBytes);
  /dalvik/vm/alloc/
MarkSweep.cpp 859 size_t numBytes;
870 ctx->numBytes += dvmHeapSourceFreeList(numPtrs, ptrs);
915 size_t *numObjects, size_t *numBytes)
931 ctx.numObjects = ctx.numBytes = 0;
940 *numBytes = ctx.numBytes;
943 gDvm.allocProf.freeSize += ctx.numBytes;
  /external/lzma/C/
Ppmd7.c 230 UInt32 numBytes = U2B(I2U(indx));
232 return ((UInt32)(p->UnitsStart - p->Text) > numBytes) ? (p->UnitsStart -= numBytes) : (NULL);
243 UInt32 numBytes;
246 numBytes = U2B(I2U(indx));
247 if (numBytes <= (UInt32)(p->HiUnit - p->LoUnit))
250 p->LoUnit += numBytes;
  /bionic/libc/netbsd/resolv/
res_cache.c 519 _dnsPacket_checkBytes( DnsPacket* packet, int numBytes, const void* bytes )
523 if (p + numBytes > packet->end)
526 if (memcmp(p, bytes, numBytes) != 0)
529 packet->cursor = p + numBytes;
780 _dnsPacket_hashBytes( DnsPacket* packet, int numBytes, unsigned hash )
785 while (numBytes > 0 && p < end) {
923 _dnsPacket_isEqualBytes( DnsPacket* pack1, DnsPacket* pack2, int numBytes )
928 if ( p1 + numBytes > pack1->end || p2 + numBytes > pack2->end )
931 if ( memcmp(p1, p2, numBytes) != 0
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/windows/gdi/
wgl.c 404 int charWidth,charHeight,bmapWidth,bmapHeight,numBytes,res;
441 numBytes = (bmapWidth * bmapHeight) / 8;
442 bmap = malloc(numBytes);
  /external/mesa3d/src/mesa/drivers/windows/gdi/
wgl.c 404 int charWidth,charHeight,bmapWidth,bmapHeight,numBytes,res;
441 numBytes = (bmapWidth * bmapHeight) / 8;
442 bmap = malloc(numBytes);
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
DecTestBench.c 709 static u32 numBytes = 0;
710 numBytes += size;
711 DEBUG(("Allocated %d bytes, total %d\n", size, numBytes));
  /cts/tests/tests/drm/lib/
TestPlugin.cpp 179 void* buffer, ssize_t numBytes, off64_t offset) {
  /cts/tests/tests/provider/src/android/provider/cts/
MediaStore_Images_MediaTest.java 216 int numBytes = 1337;
217 FileUtils.createFile(new File(externalPath), numBytes);
232 values.put(Media.SIZE, numBytes);
263 assertEquals(numBytes, c.getInt(c.getColumnIndex(Media.SIZE)));
  /dalvik/hit/src/com/android/hit/
HprofParser.java 604 private void skipFully(long numBytes) throws IOException {
605 while (numBytes > 0) {
606 long skipped = mInput.skip(numBytes);
608 numBytes -= skipped;
  /external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/jar/
JarFileTest.java 416 * Performs as many read() calls as necessary to read {@code numBytes} from
419 private void readExactly(InputStream in, int numBytes) throws IOException {
421 while (numBytes > 0) {
422 int read = in.read(buffer, 0, Math.min(numBytes, 1024));
424 numBytes -= read;

Completed in 4561 milliseconds

1 2 34 5 6 7