HomeSort by relevance Sort by last modified time
    Searched defs:aos (Results 1 - 8 of 8) sorted by null

  /external/apache-commons-compress/src/test/java/org/apache/commons/compress/archivers/examples/
ParameterizedExpanderTest.java 77 try (ArchiveOutputStream aos = new ArchiveStreamFactory()
79 aos.putArchiveEntry(aos.createArchiveEntry(dir, "a"));
80 aos.closeArchiveEntry();
81 aos.putArchiveEntry(aos.createArchiveEntry(dir, "a/b"));
82 aos.closeArchiveEntry();
83 aos.putArchiveEntry(aos.createArchiveEntry(dir, "a/b/c"));
84 aos.closeArchiveEntry()
    [all...]
ExpanderTest.java 160 try (SevenZOutputFile aos = new SevenZOutputFile(archive)) {
161 aos.putArchiveEntry(aos.createArchiveEntry(dir, "a"));
162 aos.closeArchiveEntry();
163 aos.putArchiveEntry(aos.createArchiveEntry(dir, "a/b"));
164 aos.closeArchiveEntry();
165 aos.putArchiveEntry(aos.createArchiveEntry(dir, "a/b/c"));
166 aos.closeArchiveEntry()
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
ConstructedOctetStream.java 57 ASN1OctetStringParser aos = (ASN1OctetStringParser)_parser.readObject(); local
59 if (aos == null)
65 _currentStream = aos.getOctetStream();
  /external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/asn1/
ConstructedOctetStream.java 58 ASN1OctetStringParser aos = (ASN1OctetStringParser)_parser.readObject(); local
60 if (aos == null)
66 _currentStream = aos.getOctetStream();
  /external/apache-commons-compress/src/test/java/org/apache/commons/compress/archivers/
ArTestCase.java 132 final ArchiveOutputStream aos = new ArchiveStreamFactory().createArchiveOutputStream("ar", os); local
141 aos.putArchiveEntry(entry);
142 IOUtils.copy(ais, aos);
143 aos.closeArchiveEntry();
152 aos.close();
195 ArArchiveOutputStream aos = null; local
200 aos = new ArArchiveOutputStream(new FileOutputStream(archive));
203 aos.putArchiveEntry(in);
204 aos.closeArchiveEntry();
205 aos.close()
237 ArArchiveOutputStream aos = null; local
277 ArArchiveOutputStream aos = null; local
327 ArArchiveOutputStream aos = null; local
    [all...]
  /external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
StreamHandlerTest.java 300 ByteArrayOutputStream aos = new MockOutputStream(); local
301 StreamHandler h = new StreamHandler(aos, new MockFormatter());
311 assertTrue(aos.toString().endsWith("MockFormatter_Tail"));
320 ByteArrayOutputStream aos = new MockExceptionOutputStream(); local
321 StreamHandler h = new StreamHandler(aos, new MockFormatter());
333 ByteArrayOutputStream aos = new MockOutputStream(); local
334 StreamHandler h = new StreamHandler(aos, new MockFormatter());
342 assertEquals("MockFormatter_HeadMockFormatter_Tail", aos.toString()
358 ByteArrayOutputStream aos = new MockOutputStream(); local
359 StreamHandler h = new StreamHandler(aos, new MockFormatter())
475 ByteArrayOutputStream aos = new ByteArrayOutputStream(); local
509 ByteArrayOutputStream aos = new ByteArrayOutputStream(); local
571 ByteArrayOutputStream aos = new ByteArrayOutputStream(); local
583 ByteArrayOutputStream aos = new ByteArrayOutputStream(); local
600 ByteArrayOutputStream aos = new ByteArrayOutputStream(); local
616 ByteArrayOutputStream aos = new ByteArrayOutputStream(); local
635 ByteArrayOutputStream aos = new ByteArrayOutputStream(); local
693 ByteArrayOutputStream aos = new ByteArrayOutputStream(); local
720 ByteArrayOutputStream aos = new ByteArrayOutputStream(); local
750 ByteArrayOutputStream aos = new ByteArrayOutputStream(); local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_llvm.c 675 LLVMValueRef stride, buffer_overflowed, aos, index_valid; local
697 aos = lp_build_fetch_rgba_aos(gallivm,
706 aos = LLVMBuildBitCast(builder, aos, aosi_t, "");
707 aos = LLVMBuildAnd(builder, aos, index_valid, "");
708 aos = LLVMBuildBitCast(builder, aos, aosf_t, "");
714 vs_type, aos, index);
756 * Unlike fetch_instanced, use SoA fetch instead of multiple AoS fetches
957 LLVMValueRef aos[LP_MAX_VECTOR_WIDTH \/ 32]; local
1024 LLVMValueRef aos[LP_MAX_VECTOR_LENGTH]; local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_common_context.h 297 struct radeon_aos aos[RADEON_MAX_AOS_ARRAYS]; member in struct:radeon_tcl_info

Completed in 159 milliseconds