HomeSort by relevance Sort by last modified time
    Searched full:sos (Results 1 - 25 of 40) sorted by null

1 2

  /dalvik/libcore/luni/src/test/java/tests/api/java/io/
FilterOutputStreamTest.java 75 Support_OutputStream sos = new Support_OutputStream(); local
76 os = new FilterOutputStream(sos);
85 sos.setThrowsException(true);
93 os = new FilterOutputStream(sos);
111 Support_OutputStream sos = new Support_OutputStream(550); local
112 os = new FilterOutputStream(sos);
116 500, sos.size());
118 sos.setThrowsException(true);
125 sos.setThrowsException(false);
137 Support_OutputStream sos = new Support_OutputStream(testLength) local
168 Support_OutputStream sos = new Support_OutputStream(testLength); local
199 Support_OutputStream sos = new Support_OutputStream(testLength); local
234 Support_OutputStream sos = new Support_OutputStream(1); local
    [all...]
DataInputOutputStreamTest.java 38 private Support_OutputStream sos; field in class:DataInputOutputStreamTest
63 sos.setThrowsException(true);
70 sos.setThrowsException(false);
114 sos.setThrowsException(true);
121 sos.setThrowsException(false);
165 sos.setThrowsException(true);
172 sos.setThrowsException(false);
216 sos.setThrowsException(true);
223 sos.setThrowsException(false);
267 sos.setThrowsException(true)
    [all...]
BufferedOutputStreamTest.java 39 Support_OutputStream sos; field in class:BufferedOutputStreamTest
106 sos = new Support_OutputStream(true);
107 os = new BufferedOutputStream(sos, 10);
115 sos.setThrowsException(false);
148 sos = new Support_OutputStream(true);
149 os = new BufferedOutputStream(sos, 10);
157 sos.setThrowsException(false);
227 sos = new Support_OutputStream(true);
228 os = new BufferedOutputStream(sos, 1);
238 sos.setThrowsException(false);
    [all...]
DataOutputStreamTest.java 51 private Support_OutputStream sos; field in class:DataOutputStreamTest
86 os = new DataOutputStream(sos);
203 os = new DataOutputStream(sos);
231 os = new DataOutputStream(sos);
260 os = new DataOutputStream(sos);
278 sos = new Support_OutputStream(true);
288 sos.setThrowsException(false);
ByteArrayOutputStreamTest.java 311 Support_OutputStream sos = new Support_OutputStream(); local
314 bos.writeTo(sos);
316 sos.toString().equals(
319 sos.setThrowsException(true);
321 bos.writeTo(sos);
ObjectInputOutputStreamTest.java 38 private Support_OutputStream sos; field in class:ObjectInputOutputStreamTest
450 new ByteArrayInputStream(sos.toByteArray()));
454 sos = new Support_OutputStream(256);
455 os = new ObjectOutputStream(sos);
ObjectOutputStreamTest.java 606 protected Support_OutputStream sos; field in class:ObjectOutputStreamTest
658 Support_ASimpleOutputStream sos = new Support_ASimpleOutputStream(true); local
660 oos = new ObjectOutputStream(sos);
911 sos = new Support_OutputStream(200);
913 oos = new ObjectOutputStream(sos);
919 sos.setThrowsException(true);
926 sos.setThrowsException(false);
928 ois = new ObjectInputStream(new ByteArrayInputStream(sos.toByteArray()));
    [all...]
  /external/blktrace/
stats.h 32 __u64 sos; member in struct:minmax
41 mm->sos = 0;
48 mm->sos += value * value;
59 dst->sos += src->sos;
70 mm->sos = cpu_to_be64(mm->sos);
85 return ((mm->sos - ((mm->sum * mm->sum) / num)) / num);
93 (unsigned long long)mm->sum, (unsigned long long)mm->sos,
  /packages/apps/Settings/assets/html/pt_br/
tethering_usb_help.html 25 <li>Para mais informações, incluindo o uso de vínculo USB em outros SOs, veja <a href="http://www.android.com/tether#usb">http://www.android.com/tether#usb</a></li><br>
tethering_help.html 25 <li>Para mais informações, incluindo o uso de vínculo USB em outros SOs, veja <a href="http://www.android.com/tether#usb">http://www.android.com/tether#usb</a></li><br>
  /external/jpeg/
jdinput.c 24 boolean inheaders; /* TRUE until first SOS is reached */
40 /* Called once, when first SOS marker is reached */
123 /* cinfo->comps_in_scan and cinfo->cur_comp_info[] were set from SOS marker */
299 case JPEG_REACHED_SOS: /* Found SOS */
300 if (inputctl->inheaders) { /* 1st SOS */
307 } else { /* 2nd or later SOS marker */
jpegint.h 30 #define DSTATE_INHEADER 201 /* reading header markers, no SOS yet */
31 #define DSTATE_READY 202 /* found SOS, ready for start_decompress */
37 #define DSTATE_BUFPOST 208 /* looking for SOS/EOI in jpeg_finish_output */
191 /* Read markers until SOS or EOI.
jdapimin.c 217 * This routine will read as far as the first SOS marker (ie, actual start of
302 if (retcode == JPEG_REACHED_SOS) { /* Found SOS, prepare to decompress */
310 /* Can't advance past first SOS until start_decompress is called */
jerror.h 47 JMESSAGE(JERR_BAD_COMPONENT_ID, "Invalid component ID %d in SOS")
107 JMESSAGE(JERR_SOF_NO_SOS, "Invalid JPEG file structure: missing SOS marker")
110 JMESSAGE(JERR_SOS_NO_SOF, "Invalid JPEG file structure: SOS before SOF")
183 JMESSAGE(JWRN_NOT_SEQUENTIAL, "Invalid SOS parameters for sequential JPEG")
rdjpgcom.c 133 * NB: this routine must not be used after seeing SOS marker, since it will
314 * Parse the marker stream until SOS or EOI is seen;
317 * SOFn, other implementations might not, so we scan to SOS before stopping.
332 /* Scan miscellaneous markers until we reach SOS. */
jcmarker.c 309 /* Emit a SOS marker */
546 * This consists of DHT or DAC markers, optional DRI, and SOS.
547 * Compressed data will be written following the SOS.
wrjpgcom.c 182 * NB: this routine must not be used after seeing SOS marker, since it will
321 ERREXIT("SOS without prior SOFn");
jdapistd.c 265 /* Read markers looking for SOS or EOI */
jpeglib.h 127 /* for decompression, they are read from the SOS marker. */
384 /* *cur_comp_info[i] describes component that appears i'th in SOS */
498 int input_scan_number; /* Number of SOS markers seen so far */
534 * are given in SOF/SOS markers or defined to be reset by SOI.
602 /* *cur_comp_info[i] describes component that appears i'th in SOS */
    [all...]
jdmarker.c 302 /* Process a SOS marker */
362 /* Count another SOS marker */
945 * Read markers until SOS or EOI.
    [all...]
jdmaster.c 302 * and (first) SOS markers. We also have all the application parameter
  /external/icu4c/common/
ubidiln.c 784 * sos=start of sequence, eos=end of sequence
786 * The closed (inclusive) interval from sos to eos includes all the logical
790 * For each run, the new visual index=sos+eos-old visual index;
791 * we pre-add sos+eos into sumOfSosEos ->
    [all...]
  /dalvik/libcore/security/src/test/java/org/apache/harmony/security/tests/java/security/
DigestOutputStreamTest.java 558 Support_OutputStream sos = new Support_OutputStream(MY_MESSAGE_LEN); local
560 DigestOutputStream dos = new DigestOutputStream(sos, md);
  /external/icu4c/test/cintltst/
cnmdptst.c 833 "SLL", "SML", "SOS", "SQS", "SRG", "SSP", "STD", "STE", "SUN", "SUR", "SVC",
    [all...]
  /external/jhead/
jpgfile.c 125 // Parse the marker stream until SOS or EOI is seen;

Completed in 100 milliseconds

1 2