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

1 2 3 4 5 6 78 91011>>

  /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:__anon24264
  /external/llvm/
llvm-device-build.mk 57 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/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());
  /external/protobuf/javanano/src/device/main/java/com/google/protobuf/nano/android/
ParcelableExtendableMessageNano.java 28 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
51 public void writeToParcel(Parcel out, int flags) {
52 ParcelableMessageNanoCreator.writeToParcel(getClass(), this, out); local
ParcelableMessageNano.java 28 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
49 public void writeToParcel(Parcel out, int flags) {
50 ParcelableMessageNanoCreator.writeToParcel(getClass(), this, out); local
  /external/selinux/python/sepolicy/sepolicy/
transition.py 61 def out(self, name, header=""): member in class:setrans
77 buf += self.out(x, "%s%s ... " % (header, name))
82 print(self.out(self.source))
  /external/skia/tests/
AnnotationTest.cpp 54 sk_sp<SkData> out = outStream.detachAsData(); local
55 const char* rawOutput = (const char*)out->data();
57 REPORTER_ASSERT(reporter, ContainsString(rawOutput, out->size(), "/Annots "));
72 sk_sp<SkData> out = outStream.detachAsData(); local
73 const char* rawOutput = (const char*)out->data();
76 ContainsString(rawOutput, out->size(), "/example "));
SkSLErrorTest.cpp 16 SkDynamicMemoryWStream out; local
36 SkDynamicMemoryWStream out; local
230 "void test(int x); void test(out int x) { }",
320 "uniform foo { out int x; };",
  /external/skia/tools/
embed_resources.py 41 out = args.output.write; variable
42 out('#include "SkTypes.h"\n')
47 out('static const uint8_t resource{0:d}[] SK_STRUCT_ALIGN({1:d}) = {{\n'
52 out(hex(b) + ',')
56 out('\n')
58 out('};\n')
59 out('static const size_t resource{0:d}_size = {1:d};\n'
64 out('struct SkEmbeddedResource { const uint8_t* d; const size_t s; };\n')
65 out('static const SkEmbeddedResource header[] = {\n')
68 out(' {{ resource{0:d}, resource{0:d}_size }},\n'.format(index)
    [all...]
  /external/toybox/toys/other/
base64.c 43 int out = 0, bits = 0, x = 0, i, len; local
52 if (bits) wraputchar(toybuf[out<<(6-bits)], &x);
65 out = (out<<6) + x;
68 putchar(out >> (bits -= 8));
69 out &= (1<<bits)-1;
79 out = (out<<8) + buf[i];
82 wraputchar(toybuf[out >> (bits -= 6)], &x);
83 out &= (1<<bits)-1
    [all...]

Completed in 493 milliseconds

1 2 3 4 5 6 78 91011>>