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

1 2 3

  /external/chromium_org/third_party/openssl/openssl/crypto/asn1/
a_d2i_fp.c 149 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)
  /external/openssl/crypto/asn1/
a_d2i_fp.c 149 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)
  /external/chromium_org/media/base/android/
media_codec_bridge_unittest.cc 129 bool eos = false; local
136 &eos,
186 bool eos = false; local
187 while (!eos) {
197 &eos,
216 if (!eos)
  /external/chromium_org/sandbox/win/src/
crosscall_client.h 173 const wchar_t *eos = wcs; local
174 while (*eos++);
175 return static_cast<size_t>(eos - wcs - 1);
  /external/jmonkeyengine/engine/src/jogg/com/jme3/audio/plugins/
UncachedOggStream.java 49 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*/){
CachedOggStream.java 56 private boolean eos = false; field in class:CachedOggStream
72 while (!eos){
111 if (eos)
119 eos = true;
  /external/libvorbis/examples/
decoder_example.c 80 int eos=0; local
209 while(!eos){
210 while(!eos){
281 if(ogg_page_eos(&og))eos=1;
284 if(!eos){
288 if(bytes==0)eos=1;
encoder_example.c 55 int eos=0,ret; local
171 while(!eos){
180 while(!eos){
224 while(!eos){
233 if(ogg_page_eos(&og))eos=1;
  /external/libvorbis/test/
write_read.c 43 int eos = 0, ret; local
78 while (!eos){
108 while (!eos) {
116 eos = 1;
148 int eos = 0; local
237 while(!eos) {
238 while (!eos) {
272 if (ogg_page_eos (&og)) eos = 1;
276 if (!eos) {
280 if (bytes == 0) eos = 1
    [all...]
  /external/linux-tools-perf/util/
cgroup.c 146 const char *p, *e, *eos = str + strlen(str); local
157 e = p ? p : eos;
  /external/elfutils/libdwfl/
core-file.c 333 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;
  /frameworks/av/media/libstagefright/rtsp/
ARTPSession.cpp 141 int32_t eos; local
142 if (msg->findInt32("eos", &eos) && eos) {
  /frameworks/wilhelm/tests/mimeUri/
slesTestGetPositionUri.cpp 39 bool eos = false; variable
60 eos = true;
296 while (!eos) {
300 fprintf(stdout, "EOS signaled, stopping playback\n");
  /libcore/luni/src/main/java/java/util/jar/
JarInputStream.java 38 private boolean eos = false; field in class:JarInputStream
145 if (verStream != null && !eos) {
147 eos = true;
198 eos = false;
  /libcore/luni/src/main/java/java/util/zip/
GZIPInputStream.java 69 protected boolean eos = false; field in class:GZIPInputStream
147 eos = true;
156 if (eos) {
165 eos = eof; // update eos after every read(), even when it throws
172 if (eos) {
  /external/chromium_org/content/common/gpu/media/
android_video_decode_accelerator.cc 220 bool eos = false; local
228 NoWaitTimeOut(), &buf_index, &offset, &size, &timestamp, &eos, NULL);
289 if (eos) {
476 // - flush() can fail after EOS (b/8125974); and
  /external/libvorbis/lib/
psytune.c 232 int eos=0; local
304 while(!eos){
517 eos=1;
  /frameworks/wilhelm/src/android/
android_AudioSfDecoder.cpp 418 bool eos; local
419 CacheStatus_t status = getCacheRemaining(&eos);
421 if (eos || status == kStatusHigh
449 bool eos; local
456 && (getCacheRemaining(&eos) == kStatusLow)
457 && !eos) {
672 CacheStatus_t AudioSfDecoder::getCacheRemaining(bool *eos) {
680 *eos = (finalStatus != OK);
685 //SL_LOGV("AudioSfDecoder::getCacheRemaining: approx %.2f secs remaining (eos=%d)",
686 // dataRemainingUs / 1E6, *eos);
    [all...]
  /frameworks/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");
  /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');
  /external/chromium_org/third_party/jinja2/
lexer.py 312 eos = property(lambda x: not x, doc="Are we at the end of the stream?") variable in class:TokenStream
  /external/chromium_org/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');
  /external/icu4c/common/
messagepattern.cpp 782 UBool eos=index==msg.length(); local
783 if(eos || msg.charAt(index)==u_rightCurlyBrace) {
784 if(eos==inMessageFormatPattern(nestingLevel)) {
    [all...]
  /external/libpcap/
pcap-dlpi.c 978 char *eos; local
996 unit = strtol(cp, &eos, 10);
997 if (*eos != '\0') {
    [all...]
  /external/lzma/CPP/7zip/Bundles/LzmaCon/
LzmaAlone.cpp 81 { L"EOS", NSwitchType::kSimple, false },
110 " -eos: write End Of Stream marker\n"
388 bool eos = parser[NKey::kEOS].ThereIs || stdInMode; local
431 props[7].boolVal = eos ? VARIANT_TRUE : VARIANT_FALSE;
448 if (eos || stdInMode)

Completed in 752 milliseconds

1 2 3