HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 176 - 200 of 5853) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/fio/
fifo.h 29 unsigned int out; /* data is extracted from off. (out % size) */ member in struct:fifo
39 return fifo->in - fifo->out;
44 return fifo->size - fifo->in + fifo->out;
  /external/guava/guava-testlib/src/com/google/common/testing/
Platform.java 30 * Methods factored out so that they can be emulated differently in GWT.
44 ObjectOutputStream out = new ObjectOutputStream(bytes); local
45 out.writeObject(object);
  /external/guava/guava-tests/test/com/google/common/io/
LittleEndianDataInputStreamTest.java 44 DataOutputStream out = new DataOutputStream(baos); local
46 initializeData(out);
51 private void initializeData(DataOutputStream out) throws IOException {
52 /* Write out various test values NORMALLY */
53 out.write(new byte[] { -100, 100 });
54 out.writeBoolean(true);
55 out.writeBoolean(false);
56 out.writeByte(100);
57 out.writeByte(-100);
58 out.writeByte((byte) 200)
129 DataOutputStream out = new DataOutputStream(baos); local
    [all...]
  /external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/
StringDescription.java 9 private final Appendable out; field in class:StringDescription
15 public StringDescription(Appendable out) {
16 this.out = out;
41 out.append(str);
50 out.append(c);
61 return out.toString();
  /external/icu/icu4c/source/samples/case/
case.cpp 21 U_CFUNC int c_main(UFILE *out);
23 void printUnicodeString(UFILE *out, const UnicodeString &s) {
25 u_fprintf(out, "\"%S\"", other.getTerminatedBuffer());
31 UFILE *out; local
33 out = u_finit(stdout, NULL, NULL);
34 if(!out) {
38 ucnv_setFromUCallBack(u_fgetConverter(out), UCNV_FROM_U_CALLBACK_ESCAPE,
41 u_fprintf(out, "Warning- couldn't set the substitute callback - err %s\n", u_errorName(status));
46 u_fprintf(out,"ICU Case Mapping Sample Program\n\n");
47 u_fprintf(out, "C++ Case Mapping\n\n")
    [all...]
  /external/icu/icu4c/source/test/intltest/
tstnrapi.cpp 82 UnicodeString out, out2; local
88 copy.getText(out);
90 if( out!=out2 ||
140 Normalizer::normalize(s, UNORM_NONE, 0, out, status);
141 if(out!=s) {
  /external/icu/icu4c/source/tools/gentest/
genres32.c 56 FILE *out; local
63 out = fopen(file, "w");
66 if(out == NULL) {
78 "testtable32 {", out
88 fprintf(out, "%s{\"\\U%08x\"}\n", key, i);
91 fprintf(out, "%s:int{%d}\n", key, i);
99 "}", out
102 fclose(out);
  /external/icu/icu4j/perf-tests/
converterperf.pl 71 my $OUT; # see out()
116 $OUT = '';
121 out("<P><TABLE $TABLEATTR WIDTH=\"100%\">");
124 out("<TR><TD>");
127 out("</TD></TR>");
132 out("<TR><TD>");
135 out("</TD></TR>");
139 out("</TABLE></P>");
152 print HTML $OUT;
165 sub out { subroutine
    [all...]
dateformatperf.pl 51 my $OUT; # see out()
103 $OUT = '';
108 out("<P><TABLE $TABLEATTR WIDTH=\"100%\">");
111 out("<TR><TD>");
114 out("</TD></TR>");
119 out("<TR><TD>");
122 out("</TD></TR>");
126 out("</TABLE></P>");
139 print HTML $OUT;
152 sub out { subroutine
    [all...]
decimalformatperf.pl 47 my $OUT; # see out()
98 $OUT = '';
103 out("<P><TABLE $TABLEATTR WIDTH=\"100%\">");
106 out("<TR><TD>");
109 out("</TD></TR>");
114 out("<TR><TD>");
117 out("</TD></TR>");
121 out("</TABLE></P>");
134 print HTML $OUT;
147 sub out { subroutine
    [all...]
normperf.pl 107 my $OUT; # see out()
152 $OUT = '';
157 out("<P><TABLE $TABLEATTR WIDTH=\"100%\">");
160 out("<TR><TD>");
163 out("</TD></TR>");
168 out("<TR><TD>");
171 out("</TD></TR>");
175 out("</TABLE></P>");
188 print HTML $OUT;
201 sub out { subroutine
    [all...]
ucharacterperf.pl 55 my $OUT; # see out()
100 $OUT = '';
105 out("<P><TABLE $TABLEATTR WIDTH=\"100%\">");
108 out("<TR><TD>");
111 out("</TD></TR>");
116 out("<TR><TD>");
119 out("</TD></TR>");
123 out("</TABLE></P>");
136 print HTML $OUT;
149 sub out { subroutine
    [all...]
unicodesetperf.pl 45 my $OUT; # see out()
90 $OUT = '';
95 out("<P><TABLE $TABLEATTR WIDTH=\"100%\">");
98 out("<TR><TD>");
101 out("</TD></TR>");
106 out("<TR><TD>");
109 out("</TD></TR>");
113 out("</TABLE></P>");
126 print HTML $OUT;
139 sub out { subroutine
    [all...]
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/translit/
SourceSet.java 82 out = new PrintWriter(
85 out.print('\uFEFF'); // BOM
86 System.out.println();
87 System.out.println("Writing " + filename);
91 out.close();
94 static PrintWriter out; field in class:SourceSet
101 System.out.println(t.getID() + ": " +
103 out.println("# MINIMAL FILTER GENERATED FOR: " + t.getID() + (forward ? "" : " REVERSE"));
104 out.println(":: "
109 out.println("# Unicode: " + sourceSet.toPattern(false))
    [all...]
  /external/jacoco/org.jacoco.report.test/src/org/jacoco/report/
ZipMultiReportOutputTest.java 52 OutputStream out = zipOutput.createFile("a.txt"); local
53 out.write(content1);
54 out.close();
67 OutputStream out = zipOutput.createFile("b.txt"); local
68 out.write(content1, 5, 3);
69 out.close();
81 OutputStream out = zipOutput.createFile("b.txt"); local
82 out.write(40);
83 out.flush();
84 out.close()
97 OutputStream out = zipOutput.createFile("dir\/index.html"); local
121 OutputStream out = zipOutput.createFile("dir\/index.html"); local
141 OutputStream out = zipOutput.createFile("index.html"); local
148 OutputStream out = zipOutput.createFile("index.html"); local
155 OutputStream out = zipOutput.createFile("index.html"); local
162 OutputStream out = zipOutput.createFile("index.html"); local
    [all...]
  /external/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.members/streambuf.pub.put/
sputc.pass.cpp 53 char out[3] = {0}; local
54 t.setp(out, out+sizeof(out));
57 assert(out[0] == 'A');
60 assert(out[0] == 'A');
61 assert(out[1] == 'B');
  /external/libldac/src/
func_fixp_ldac.c 37 INT64 out; local
40 out = ((INT64)in + ((INT64)1 << (shift-1))) >> shift;
43 out = (INT64)in << (-shift);
46 return check_sature_ldac(out);
  /external/libopus/silk/
NSQ.h 25 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
37 opus_int32 out; local
41 out = silk_RSHIFT( order, 1 );
42 out = silk_SMLAWB( out, buf32[ 0 ], coef16[ 0 ] );
43 out = silk_SMLAWB( out, buf32[ -1 ], coef16[ 1 ] );
44 out = silk_SMLAWB( out, buf32[ -2 ], coef16[ 2 ] );
45 out = silk_SMLAWB( out, buf32[ -3 ], coef16[ 3 ] )
69 opus_int32 out; local
    [all...]
  /external/libvncserver/libvncserver/
zrleoutstream.h 36 zrleBuffer out; member in struct:__anon25952
  /external/llvm/
llvm-device-build.mk 55 define transform-device-td-to-out
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/
SimpleOutputStream.java 18 private FinishableOutputStream out; field in class:SimpleOutputStream
34 SimpleOutputStream(FinishableOutputStream out,
36 if (out == null)
39 this.out = out;
71 // Write out the filtered data.
73 out.write(filterBuf, pos, filtered);
98 out.write(filterBuf, pos, unfiltered);
113 // If it fails, don't call out.finish().
117 out.finish()
    [all...]
UncompressedLZMA2OutputStream.java 16 private FinishableOutputStream out; field in class:UncompressedLZMA2OutputStream
34 UncompressedLZMA2OutputStream(FinishableOutputStream out) {
35 if (out == null)
38 this.out = out;
39 outData = new DataOutputStream(out);
92 out.write(0x00);
110 out.flush();
122 out.finish();
133 if (out != null)
    [all...]
  /external/mesa3d/src/gallium/drivers/vc4/
vc4_cl.c 20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
69 struct vc4_cl_out *out; local
71 out = cl_start(&job->bo_handles);
72 cl_u32(&out, bo->handle);
73 cl_end(&job->bo_handles, out);
75 out = cl_start(&job->bo_pointers);
76 cl_ptr(&out, vc4_bo_reference(bo));
77 cl_end(&job->bo_pointers, out);
  /external/nanopb-c/examples/using_double_on_avr/
double_conversion.c 67 conversion_t out; local
116 out.i = mantissa;
117 out.i |= (uint32_t)(exponent + 127) << 23;
118 out.i |= (uint32_t)sign << 31;
120 return out.f;
  /external/owasp/sanitizer/src/tests/org/owasp/html/
UrlTextExampleTest.java 26 // ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
42 StringBuilder out = new StringBuilder(); local
44 out,
56 out.toString());

Completed in 245 milliseconds

1 2 3 4 5 6 78 91011>>