HomeSort by relevance Sort by last modified time
    Searched refs:eos (Results 1 - 25 of 43) sorted by null

1 2

  /external/openssl/crypto/asn1/
a_d2i_fp.c 149 int eos=0; local
208 eos++;
211 else if (eos && (c.slen == 0) && (c.tag == V_ASN1_EOC))
213 /* eos value, so go back and read another header */
214 eos--;
215 if (eos <= 0)
246 if (eos <= 0)
a_bytes.c 273 c->eos=ASN1_const_check_infinite_end(&c->p,
275 if (c->eos) break;
asn1_lib.c 287 if ((c->inf == (1|V_ASN1_CONSTRUCTED)) && (!c->eos))
339 c->eos=0;
  /libcore/luni/src/main/java/java/util/jar/
JarInputStream.java 38 private boolean eos = false; field in class:JarInputStream
152 if (verStream != null && !eos) {
154 eos = true;
205 eos = false;
  /libcore/luni/src/main/java/java/util/zip/
GZIPInputStream.java 69 protected boolean eos = false; field in class:GZIPInputStream
147 eos = true;
160 if (eos) {
169 eos = eof; // update eos after every read(), even when it throws
176 if (eos) {
  /system/media/wilhelm/src/android/
android_AudioSfDecoder.cpp 416 bool eos; local
417 CacheStatus_t status = getCacheRemaining(&eos);
419 if (eos || status == kStatusHigh
447 bool eos; local
454 && (getCacheRemaining(&eos) == kStatusLow)
455 && !eos) {
668 CacheStatus_t AudioSfDecoder::getCacheRemaining(bool *eos) {
676 *eos = (finalStatus != OK);
681 //SL_LOGV("AudioSfDecoder::getCacheRemaining: approx %.2f secs remaining (eos=%d)",
682 // dataRemainingUs / 1E6, *eos);
    [all...]
android_AudioSfDecoder.h 135 CacheStatus_t getCacheRemaining(bool *eos);
  /frameworks/base/media/libstagefright/matroska/
MatroskaExtractor.cpp 92 bool eos() const;
221 bool BlockIterator::eos() const { function in class:android::BlockIterator
222 return mCluster == NULL || mCluster->EOS();
272 CHECK(!nextCluster->EOS());
303 } while (!eos() && block()->GetTrackNumber() != mTrackNum);
316 while (!eos() && block()->GetTrackNumber() != mTrackNum);
319 while (!eos() && !mBlockEntry->GetBlock()->IsKey()) {
326 CHECK(!eos());
365 if (mBlockIter.eos()) {
774 while (!iter.eos() && i < 20)
    [all...]
  /external/qemu/android/protocol/
core-connection.c 45 * eos - String size.
48 _zero_terminate(char* buf, size_t buf_size, size_t eos)
50 if (eos < buf_size) {
51 buf[eos] = '\0';
  /frameworks/base/media/libstagefright/rtsp/
ARTPSession.cpp 141 int32_t eos; local
142 if (msg->findInt32("eos", &eos) && eos) {
  /system/media/wilhelm/tests/mimeUri/
slesTestGetPositionUri.cpp 39 bool eos = false; variable
60 eos = true;
296 while (!eos) {
300 fprintf(stdout, "EOS signaled, stopping playback\n");
  /frameworks/media/libvideoeditor/lvpp/
PreviewPlayerBase.cpp 518 bool PreviewPlayerBase::getCachedDuration_l(int64_t *durationUs, bool *eos) {
525 *eos = (finalStatus != OK);
570 bool eos = (finalStatus != OK); local
572 if (eos) {
577 LOGV("cache has reached EOS, prepare is done.");
596 if ((mFlags & PLAYING) && !eos
604 } else if (eos || cachedDataRemaining > kHighWaterMarkBytes) {
622 bool eos; local
623 if (getCachedDuration_l(&cachedDurationUs, &eos)) {
624 LOGV("cachedDurationUs = %.2f secs, eos=%d"
    [all...]
PreviewPlayerBase.h 256 bool getCachedDuration_l(int64_t *durationUs, bool *eos);
  /frameworks/base/media/libstagefright/
AwesomePlayer.cpp 604 bool AwesomePlayer::getCachedDuration_l(int64_t *durationUs, bool *eos) {
611 *eos = (finalStatus != OK);
616 *eos = (finalStatus != OK);
661 bool eos = (finalStatus != OK); local
663 if (eos) {
668 LOGV("cache has reached EOS, prepare is done.");
687 if ((mFlags & PLAYING) && !eos
696 } else if (eos || cachedDataRemaining > kHighWaterMarkBytes) {
717 bool eos = (finalStatus != OK); local
719 if (eos) {
738 bool eos; local
    [all...]
  /system/media/wilhelm/tests/examples/
slesTestDecodeToBuffQueue.cpp 83 bool eos = false; variable
121 eos = true;
189 fprintf(stdout, "Error writing to output file, signaling EOS\n");
511 while (!eos) {
515 fprintf(stdout, "EOS signaled\n");
slesTestDecodeAac.cpp 105 bool eos = false; variable
189 fprintf(stdout, "EOS was processed\n");
197 printf("Received EOS completion after EOS\n");
199 printf("Received ADTS completion after EOS\n");
201 fprintf(stderr, "Received acknowledgement after EOS with unexpected context %p\n",
205 // signal EOS to the decoder rather than just starving it
206 printf("Enqueue EOS: encoded frames=%u, decoded frames=%u\n", encodedFrames, decodedFrames);
207 printf("You should now see %u ADTS completion%s followed by 1 EOS completion\n",
212 // EOS message has no parameters, so the total size of the message is the size of the ke
    [all...]
  /system/media/wilhelm/tests/sandbox/
xaplay.c 167 static const XAAndroidBufferItem eos = {XA_ANDROID_ITEMKEY_EOS, 0}; local
178 items = &eos;
179 itemSize = sizeof(eos);
  /external/srec/srec/Recognizer/include/
SR_Recognizer.h 465 * @param eos End of speech (seconds)
473 const double eos,
    [all...]
SR_RecognizerImpl.h 292 * Reason for eos detected
525 const double eos,
  /external/srec/srec/Recognizer/src/
Recognizer.c 361 const double eos,
369 return self->logWaveformData(self, waveformFilename, transcription, bos, eos, isInvocab);
  /external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
GZIPInputStreamTest.java 50 return eos;
  /frameworks/base/media/libstagefright/include/
AwesomePlayer.h 275 bool getCachedDuration_l(int64_t *durationUs, bool *eos);
  /external/srec/srec/test/SRecTest/src/
SRecTest.c 2699 LCHAR eos [MAX_LINE_LENGTH]; local
2793 LCHAR eos [MAX_LINE_LENGTH]; local
    [all...]
  /external/v8/test/mjsunit/
string-indexof-2.js 41 + " dolores eos, qui ratione voluptatem sequi nesciunt, neque porro"
  /external/chromium/third_party/libjingle/source/talk/base/
httpclient.cc 57 char* eos = NULL; local
58 *val = strtoul(str.c_str(), &eos, 10);
59 return (*eos == '\0');

Completed in 4223 milliseconds

1 2