Searched refs:eos (Results 1 - 24 of 24) sorted by relevance

/external/jmonkeyengine/engine/src/jogg/com/jme3/audio/plugins/
H A DUncachedOggStream.java49 private boolean eos = false; field in class:UncachedOggStream
66 // while (pageCache.size() < 25 && !eos){
81 eos = true;
96 if (eos){
100 // if (!eos){
106 // } while ( !eos && (System.nanoTime() - timeStart) < fiveMillis );
109 if (pageCache.size() == 0 /*&& !eos*/){
H A DCachedOggStream.java56 private boolean eos = false; field in class:CachedOggStream
72 while (!eos){
111 if (eos)
119 eos = true;
/external/openssl/crypto/asn1/
H A Da_d2i_fp.c149 int eos=0; local
210 eos++;
211 if (eos < 0)
218 else if (eos && (c.slen == 0) && (c.tag == V_ASN1_EOC))
220 /* eos value, so go back and read another header */
221 eos--;
222 if (eos <= 0)
266 if (eos <= 0)
H A Da_bytes.c273 c->eos=ASN1_const_check_infinite_end(&c->p,
275 if (c->eos) break;
H A Dasn1_lib.c287 if ((c->inf == (1|V_ASN1_CONSTRUCTED)) && (!c->eos))
339 c->eos=0;
H A Dasn1.h178 int eos; /* end of sequence read for indefinite encoding */ member in struct:asn1_ctx_st
193 int eos; /* end of sequence read for indefinite encoding */ member in struct:asn1_const_ctx_st
H A Dasn1_mac.h126 (c.eos=ASN1_const_check_infinite_end(&c.p,c.slen)))
/external/elfutils/libdwfl/
H A Dcore-file.c333 const void *eos = memchr (contents, '\0', size); local
334 if (unlikely (eos == NULL) || unlikely (eos == contents))
336 size = eos + 1 - contents;
378 const void *eos = memchr (into, '\0', nread); local
379 if (unlikely (eos == NULL) || unlikely (eos == into))
385 nread = eos + 1 - into;
/external/linux-tools-perf/util/
H A Dcgroup.c146 const char *p, *e, *eos = str + strlen(str); local
157 e = p ? p : eos;
/external/qemu/android/protocol/
H A Dcore-connection.c45 * eos - String size.
48 _zero_terminate(char* buf, size_t buf_size, size_t eos) argument
50 if (eos < buf_size) {
51 buf[eos] = '\0';
/external/srec/srec/Recognizer/include/
H A DSR_Recognizer.h465 * @param eos End of speech (seconds)
473 const double eos,
875 * @param eos End of speech (seconds)
883 const double eos,
H A DSR_RecognizerImpl.h292 * Reason for eos detected
525 const double eos,
/external/srec/srec/Recognizer/src/
H A DRecognizer.c361 const double eos,
369 return self->logWaveformData(self, waveformFilename, transcription, bos, eos, isInvocab);
357 SR_RecognizerLogWaveformData(SR_Recognizer* self, const LCHAR* waveformFilename, const LCHAR* transcription, const double bos, const double eos, ESR_BOOL isInvocab) argument
H A DRecognizerImpl.c1927 /* set the eos signal indicated by the end pointed data */
2985 EOSrc eos; /* eos means end of speech */ local
2986 int eos_by_level; /* eos means end of speech */
2994 eos = SPEECH_ENDED_BY_LEVEL_TIMEOUT;
2998 eos = CA_IsEndOfUtteranceByResults(impl->recognizer);
3004 if (eos == VALID_SPEECH_CONTINUING && enableGetWaveform && impl->waveformBuffer->overflow_count > 0)
3009 eos = SPEECH_TOO_LONG;
3012 if (eos != VALID_SPEECH_CONTINUING)
3014 switch (eos)
3491 SR_RecognizerLogWaveformDataImpl(SR_Recognizer* self, const LCHAR* waveformFilename, const LCHAR* transcription, const double bos, const double eos, ESR_BOOL isInvocab) argument
[all...]
/external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
H A DGZIPInputStreamTest.java50 return eos;
/external/srec/srec/test/SRecTest/src/
H A DSRecTest.c2625 int srec_test_log_reco_from_file_data ( SR_Grammar *active_grammar, ApplicationData *data, LCHAR *waveform, LCHAR *bos, LCHAR *eos, LCHAR *transcription ) argument
2670 esr_status = SR_RecognizerLogWaveformData ( data->recognizer, waveform, data->transcription, atof ( bos ), atof ( eos ), got_results );
2699 LCHAR eos [MAX_LINE_LENGTH]; local
2707 eos, NULL, &transcription );
2711 recognize_status = srec_test_log_reco_from_file_data ( active_grammar, data, waveform, bos, eos, transcription );
2715 if(LSTRCMP(bos,"0") || LSTRCMP(eos,"0")) {
2793 LCHAR eos [MAX_LINE_LENGTH]; local
2801 eos, NULL, &transcription );
2805 recognize_status = srec_test_log_reco_from_file_data ( active_grammar, data, waveform, bos, eos, transcription );
2809 if(LSTRCMP(bos,"0") || LSTRCMP(eos,"
[all...]
/external/chromium/third_party/libjingle/source/talk/base/
H A Dhttpclient.cc57 char* eos = NULL; local
58 *val = strtoul(str.c_str(), &eos, 10);
59 return (*eos == '\0');
/external/libpcap/
H A Dpcap-dlpi.c978 char *eos; local
996 unit = strtol(cp, &eos, 10);
997 if (*eos != '\0') {
/external/icu4c/common/
H A Dmessagepattern.cpp770 UBool eos=index==msg.length(); local
771 if(eos || msg.charAt(index)==u_rightCurlyBrace) {
772 if(eos==inMessageFormatPattern(nestingLevel)) {
/external/openssl/include/openssl/
H A Dasn1.h178 int eos; /* end of sequence read for indefinite encoding */ member in struct:asn1_ctx_st
193 int eos; /* end of sequence read for indefinite encoding */ member in struct:asn1_const_ctx_st
H A Dasn1_mac.h126 (c.eos=ASN1_const_check_infinite_end(&c.p,c.slen)))
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/tree/
H A Dwizard.rb154 @scanner.eos? and return EOF
/external/srec/srec/test/SRecTestAudio/src/
H A DSRecTestAudio.c2298 int srec_test_log_reco_from_file_data ( SR_Grammar *active_grammar, ApplicationData *data, LCHAR *waveform, LCHAR *bos, LCHAR *eos, LCHAR *transcription ) argument
2331 esr_status = SR_RecognizerLogWaveformData ( data->recognizer, waveform, data->transcription, atof ( bos ), atof ( eos ), got_results );
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.metadata_2.0.0.v20100601.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 745 milliseconds