Searched refs:nbytes (Results 1 - 5 of 5) sorted by last modified time

/frameworks/wilhelm/tests/sandbox/
H A Dplaybq.cpp72 static SLuint32 squeeze(void *buffer, SLuint32 nbytes) argument
76 swab(buffer, buffer, nbytes);
80 nbytes / sizeof(int16_t));
81 nbytes /= 2;
84 nbytes / sizeof(int32_t));
85 nbytes = nbytes * 3 / 4;
87 return nbytes;
105 SLuint32 nbytes = count * sfframesize; local
106 nbytes
526 SLuint32 nbytes = count * sfframesize; local
[all...]
/frameworks/native/include/ui/
H A DFenceTime.h118 static void* operator new(size_t nbytes) noexcept;
/frameworks/base/core/java/android/util/jar/
H A DStrictJarVerifier.java121 public void write(byte[] buf, int off, int nbytes) { argument
122 digest.update(buf, off, 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/av/cmds/stagefright/
H A DSimplePlayer.cpp631 ssize_t nbytes = state->mAudioTrack->write( local
634 CHECK_EQ(nbytes, (ssize_t)copy);
638 uint32_t numFramesWritten = nbytes / state->mAudioTrack->frameSize();
646 info->mOffset += nbytes;
647 info->mSize -= nbytes;

Completed in 841 milliseconds