Searched refs:nbytes (Results 1 - 5 of 5) sorted by relevance

/frameworks/wilhelm/tests/sandbox/
H A Dplaybq.c70 static SLuint32 squeeze(void *buffer, SLuint32 nbytes) argument
74 swab(buffer, buffer, nbytes);
78 nbytes / sizeof(int16_t));
79 nbytes /= 2;
82 nbytes / sizeof(int32_t));
83 nbytes = nbytes * 3 / 4;
85 return nbytes;
103 SLuint32 nbytes = count * sfframesize; local
104 nbytes
524 SLuint32 nbytes = count * sfframesize; local
[all...]
H A Dplaybq.cpp70 static SLuint32 squeeze(void *buffer, SLuint32 nbytes) argument
74 swab(buffer, buffer, nbytes);
78 nbytes / sizeof(int16_t));
79 nbytes /= 2;
82 nbytes / sizeof(int32_t));
83 nbytes = nbytes * 3 / 4;
85 return nbytes;
103 SLuint32 nbytes = count * sfframesize; local
104 nbytes
524 SLuint32 nbytes = count * sfframesize; local
[all...]
/frameworks/av/cmds/stagefright/
H A DSimplePlayer.cpp628 ssize_t nbytes = state->mAudioTrack->write( local
631 CHECK_EQ(nbytes, (ssize_t)copy);
635 uint32_t numFramesWritten = nbytes / state->mAudioTrack->frameSize();
643 info->mOffset += nbytes;
644 info->mSize -= nbytes;
/frameworks/av/media/libstagefright/rtsp/
H A DARTPConnection.cpp384 ssize_t nbytes; local
386 nbytes = recvfrom(
393 } while (nbytes < 0 && errno == EINTR);
395 if (nbytes <= 0) {
399 buffer->setRange(0, nbytes);
/frameworks/base/core/java/android/util/jar/
H A DStrictJarVerifier.java125 public void write(byte[] buf, int off, int nbytes) { argument
126 digest.update(buf, off, nbytes);

Completed in 116 milliseconds