HomeSort by relevance Sort by last modified time
    Searched full:numbytes (Results 176 - 200 of 448) sorted by null

1 2 3 4 5 6 78 91011>>

  /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/media/libstagefright/codecs/mp3dec/src/
pvmp3_seek_synch.cpp 179 int32 numBytes = fxp_mul32_Q28(mp3_bitrate[version][(temp<<16)>>28] << 20,
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/services/audioflinger/
AudioStreamOut.cpp 202 ssize_t AudioStreamOut::write(const void *buffer, size_t numBytes)
205 ssize_t bytesWritten = stream->write(stream, buffer, numBytes);
  /external/google-tv-pairing-protocol/java/src/com/google/polo/wire/protobuf/
ProtobufWireAdapter.java 176 * @param numBytes the number of bytes to read
180 private byte[] readBytesBlocking(int numBytes) throws IOException {
181 byte[] buf = new byte[numBytes];
187 while (bytesRead < numBytes) {
188 int inc = mInputStream.read(buf, bytesRead, numBytes - bytesRead);
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
UPropertyAliases.java 100 int numBytes=nextOffset-offset;
101 bytesTries=new byte[numBytes];
107 numBytes=nextOffset-offset;
108 StringBuilder sb=new StringBuilder(numBytes);
109 for(int i=0; i<numBytes; ++i) {
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
UPropertyAliases.java 99 int numBytes=nextOffset-offset;
100 bytesTries=new byte[numBytes];
106 numBytes=nextOffset-offset;
107 StringBuilder sb=new StringBuilder(numBytes);
108 for(int i=0; i<numBytes; ++i) {
  /external/mesa3d/src/gallium/state_trackers/egl/x11/
glxinit.c 142 int numbytes; local
166 numbytes = reply.size;
168 buf = (char *) Xmalloc(numbytes);
170 _XRead(dpy, buf, numbytes);
171 length -= numbytes;
  /frameworks/av/drm/libdrmframework/plugins/forward-lock/FwdLockEngine/include/
FwdLockEngine.h 442 * @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,
  /cts/libs/testserver/src/android/webkit/cts/
CtsTestServer.java 100 private static final String NUM_BYTES_PARAMETER = "numBytes";
440 * @param numBytes of the content that the CTS server should send back
443 public String getTestDownloadUrl(String downloadId, int numBytes) {
448 .appendQueryParameter(NUM_BYTES_PARAMETER, Integer.toString(numBytes))
815 int numBytes = uri.getQueryParameter(NUM_BYTES_PARAMETER) != nul
    [all...]
  /external/icu/icu4c/source/i18n/
collationiterator.cpp 760 int32_t numBytes = 74;
761 if(value < numBytes) {
767 value -= numBytes;
768 firstByte += numBytes;
769 numBytes = 40;
770 if(value < numBytes * 254) {
777 value -= numBytes * 254;
778 firstByte += numBytes;
779 numBytes = 16;
780 if(value < numBytes * 254 * 254)
    [all...]
  /external/libgdx/backends/gdx-backend-lwjgl/src/com/badlogic/gdx/backends/lwjgl/
LwjglGL20.java 46 private void ensureBufferCapacity (int numBytes) {
47 if (buffer == null || buffer.capacity() < numBytes) {
48 buffer = com.badlogic.gdx.utils.BufferUtils.newByteBuffer(numBytes);
413 int numBytes = intBuffer.get(0);
414 byte[] bytes = new byte[numBytes];
435 int numBytes = intBuffer.get(0);
436 byte[] bytes = new byte[numBytes];
  /external/libgdx/backends/gdx-backend-lwjgl3/src/com/badlogic/gdx/backends/lwjgl3/
Lwjgl3GL20.java 42 private void ensureBufferCapacity (int numBytes) {
43 if (buffer == null || buffer.capacity() < numBytes) {
44 buffer = com.badlogic.gdx.utils.BufferUtils.newByteBuffer(numBytes);
407 int numBytes = intBuffer.get(0);
408 byte[] bytes = new byte[numBytes];
429 int numBytes = intBuffer.get(0);
430 byte[] bytes = new byte[numBytes];
  /external/lzma/C/
Ppmd7.c 232 UInt32 numBytes = U2B(I2U(indx));
234 return ((UInt32)(p->UnitsStart - p->Text) > numBytes) ? (p->UnitsStart -= numBytes) : (NULL);
245 UInt32 numBytes;
248 numBytes = U2B(I2U(indx));
249 if (numBytes <= (UInt32)(p->HiUnit - p->LoUnit))
252 p->LoUnit += numBytes;
  /libcore/luni/src/main/java/org/apache/harmony/security/provider/crypto/
SHA1PRNG_SecureRandomImpl.java 237 * numBytes - number of bytes to return; should be >= 0.
241 * InvalidParameterException - if numBytes < 0
243 protected synchronized byte[] engineGenerateSeed(int numBytes) {
247 if (numBytes < 0) {
248 throw new NegativeArraySizeException(Integer.toString(numBytes));
250 if (numBytes == 0) {
259 myBytes = new byte[numBytes];
  /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...]
  /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);
  /art/tools/ahat/src/
SiteHandler.java 98 DocString.format("%,14d", info.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 225 int numBytes = 1337;
226 FileUtils.createFile(new File(externalPath), numBytes);
241 values.put(Media.SIZE, numBytes);
272 assertEquals(numBytes, c.getInt(c.getColumnIndex(Media.SIZE)));
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRStringStream.m 56 + newANTLRStringStream:(char *)myData Count:(NSInteger)numBytes;
58 return [[ANTLRStringStream alloc] initWithData:myData Count:numBytes];
113 - (id) initWithData:(char *)myData Count:(NSInteger)numBytes
117 n = numBytes;
  /external/deqp/executor/
xeCommLink.hpp 51 typedef void (*LogDataFunc) (void* userPtr, const deUint8* bytes, size_t numBytes);
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);
xeTestResultParser.hpp 70 ParseResult parse (const deUint8* bytes, int numBytes);
  /external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/jni-headers/
jdwpTransport.h 113 void *(*alloc)(jint numBytes); /* Call this for all allocations */
  /external/libgdx/extensions/gdx-bullet/jni/jni-headers/
jdwpTransport.h 113 void *(*alloc)(jint numBytes); /* Call this for all allocations */

Completed in 784 milliseconds

1 2 3 4 5 6 78 91011>>