HomeSort by relevance Sort by last modified time
    Searched refs:out (Results 476 - 500 of 5986) sorted by null

<<11121314151617181920>>

  /libcore/luni/src/main/java/java/io/
BufferedWriter.java 41 private Writer out; field in class:BufferedWriter
48 * Constructs a new {@code BufferedWriter}, providing {@code out} with a buffer
51 * @param out the {@code Writer} the buffer writes to.
53 public BufferedWriter(Writer out) {
54 this(out, 8192);
58 * Constructs a new {@code BufferedWriter}, providing {@code out} with {@code size} chars
61 * @param out the {@code OutputStream} the buffer writes to.
65 public BufferedWriter(Writer out, int size) {
66 super(out);
70 this.out = out
    [all...]
OutputStreamWriter.java 40 private final OutputStream out; field in class:OutputStreamWriter
47 * Constructs a new OutputStreamWriter using {@code out} as the target
51 * @param out
54 public OutputStreamWriter(OutputStream out) {
55 this(out, Charset.defaultCharset());
59 * Constructs a new OutputStreamWriter using {@code out} as the target
64 * @param out
73 public OutputStreamWriter(OutputStream out, final String charsetName)
75 super(out);
79 this.out = out
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
dct.cpp 33 Output: out[64] ==> next block
38 Void BlockDCT_AANwSub(Short *out, UChar *cur, UChar *pred, Int width)
50 dst = out + 64 ;
52 out += 128;
158 while (dst < out);
160 out -= 64;
161 dst = out + 8;
166 k0 = out[0];
167 k1 = out[8];
168 k2 = out[16]
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
TraceDebugEventListener.java 25 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
33 /** Print out (most of) the events... Useful for debugging, testing... */
41 public void enterRule(String ruleName) { System.out.println("enterRule "+ruleName); }
42 public void exitRule(String ruleName) { System.out.println("exitRule "+ruleName); }
43 public void enterSubRule(int decisionNumber) { System.out.println("enterSubRule"); }
44 public void exitSubRule(int decisionNumber) { System.out.println("exitSubRule"); }
45 public void location(int line, int pos) {System.out.println("location "+line+":"+pos);}
53 System.out.println("consumeNode "+ID+" "+text+" "+type);
60 System.out.println("LT "+i+" "+ID+" "+text+" "+type);
65 public void nilNode(Object t) {System.out.println("nilNode "+adaptor.getUniqueID(t));
    [all...]
  /external/guava/guava/src/com/google/common/io/
LittleEndianDataOutputStream.java 49 * @param out the stream to delegate to
51 public LittleEndianDataOutputStream(OutputStream out) {
52 super(new DataOutputStream(Preconditions.checkNotNull(out)));
57 out.write(b, off, len);
61 ((DataOutputStream) out).writeBoolean(v);
65 ((DataOutputStream) out).writeByte(v);
75 ((DataOutputStream) out).writeBytes(s);
131 out.write(0xFF & v);
132 out.write(0xFF & (v >> 8));
133 out.write(0xFF & (v >> 16))
    [all...]
  /dalvik/tests/031-class-attributes/src/
ClassAttrs.java 53 System.out.println("constructor signature: "
58 System.out.println("method signature: "
63 System.out.println("field signature: "
75 /* to call the (out-of-scope) <code>getSignatureAttribute</code> methods */
127 System.out.println("***** " + clazz + ":");
129 System.out.println(" name: "
131 System.out.println(" canonical: "
133 System.out.println(" simple: "
135 System.out.println(" genericSignature: "
138 System.out.println(" super:
    [all...]
  /external/openssl/include/openssl/
modes.h 11 unsigned char out[16],
14 typedef void (*cbc128_f)(const unsigned char *in, unsigned char *out,
18 typedef void (*ctr128_f)(const unsigned char *in, unsigned char *out,
22 typedef void (*ccm128_f)(const unsigned char *in, unsigned char *out,
26 void CRYPTO_cbc128_encrypt(const unsigned char *in, unsigned char *out,
29 void CRYPTO_cbc128_decrypt(const unsigned char *in, unsigned char *out,
33 void CRYPTO_ctr128_encrypt(const unsigned char *in, unsigned char *out,
38 void CRYPTO_ctr128_encrypt_ctr32(const unsigned char *in, unsigned char *out,
43 void CRYPTO_ofb128_encrypt(const unsigned char *in, unsigned char *out,
48 void CRYPTO_cfb128_encrypt(const unsigned char *in, unsigned char *out,
    [all...]
  /external/qemu/distrib/zlib-1.2.3/
inffast.c 33 Decode literal, length, and distance codes and write out the resulting
50 LEN -- ran out of enough output space or enough available input
74 unsigned char FAR *out; /* local strm->next_out */ local
76 unsigned char FAR *end; /* while out < end, enough space available */
101 out = strm->next_out - OFF;
102 beg = out - (start - strm->avail_out);
103 end = out + (strm->avail_out - 257);
137 PUP(out) = (unsigned char)(this.val);
186 op = (unsigned)(out - beg); /* max distance in output */
200 PUP(out) = PUP(from)
    [all...]
  /libcore/dalvik/src/main/java/dalvik/system/profiler/
BinaryHprofWriter.java 42 private final DataOutputStream out; field in class:BinaryHprofWriter
53 this.out = new DataOutputStream(outputStream);
75 out.flush();
80 out.writeBytes(BinaryHprof.MAGIC + "1.0.2");
81 out.writeByte(0); // null terminated string
82 out.writeInt(BinaryHprof.ID_SIZE);
83 out.writeLong(dumpTimeInMilliseconds);
94 out.writeInt(flags);
95 out.writeShort((short) depth);
117 out.writeInt(e.threadId)
    [all...]
  /external/dropbear/libtomcrypt/demos/
tv_gen.c 119 FILE *out; local
122 out = fopen("hash_tv.txt", "w");
123 if (out == NULL) {
127 fprintf(out, "Hash Test Vectors:\n\nThese are the hashes of nn bytes '00 01 02 03 .. (nn-1)'\n\n");
134 fprintf(out, "Hash: %s\n", hash_descriptor[x].name);
144 fprintf(out, "%3lu: ", y);
146 fprintf(out, "%02X", md[z]);
148 fprintf(out, "\n");
150 fprintf(out, "\n");
153 fclose(out);
161 FILE *out; local
235 FILE *out; local
287 FILE *out; local
342 FILE *out; local
396 FILE *out; local
456 FILE *out; local
520 FILE *out; local
583 FILE *out; local
639 FILE *out; local
662 FILE *out; local
702 FILE *out; local
    [all...]
  /dalvik/tests/027-arithmetic/src/
Main.java 20 System.out.println("values are " + Integer.toHexString(i1)
23 System.out.println("First l is " + Long.toHexString(l));
34 System.out.println("Second l is " + Long.toHexString(l));
51 System.out.println("shiftTest2 l is " + Long.toHexString(result));
64 System.out.println("f=" + f + " --> i=" + i);
68 System.out.println("f=" + f + " --> i=" + i);
73 System.out.println("d=" + d + " --> i=" + i);
77 System.out.println("d=" + d + " --> i=" + i);
82 System.out.println("d=" + d + " --> l=" + l);
86 System.out.println("d=" + d + " --> l=" + l)
    [all...]
  /external/chromium/sdch/open-vcdiff/src/
vcencoder.cc 59 bool StartEncoding(OutputStringInterface* out);
61 bool EncodeChunk(const char* data, size_t len, OutputStringInterface* out);
63 bool FinishEncoding(OutputStringInterface* out);
132 OutputStringInterface* out) {
138 WriteHeader(out);
146 OutputStringInterface* out) {
154 engine_->Encode(data, len, look_for_target_matches_, out, &coder_);
159 OutputStringInterface* /*out*/) {
182 OutputStringInterface* out) {
183 return impl_->StartEncoding(out);
    [all...]
  /external/guava/guava-tests/test/com/google/common/io/
LittleEndianDataOutputStreamTest.java 38 private LittleEndianDataOutputStream out = new LittleEndianDataOutputStream(baos); field in class:LittleEndianDataOutputStreamTest
42 /* Write out various test values in LITTLE ENDIAN FORMAT */
43 out.write(new byte[] { -100, 100 });
44 out.writeBoolean(true);
45 out.writeBoolean(false);
46 out.writeByte(100);
47 out.writeByte(-100);
48 out.writeByte((byte) 200);
49 out.writeChar('a');
50 out.writeShort((short) -30000)
    [all...]
  /external/jmonkeyengine/engine/src/test/jme3test/post/
LightScatteringUI.java 29 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
52 System.out.println("----------------- LightScattering UI Debugger --------------------");
53 System.out.println("-- Sample number : press Y to increase, H to decrease");
54 System.out.println("-- blur start : press U to increase, J to decrease");
55 System.out.println("-- blur width : press I to increase, K to decrease");
56 System.out.println("-- Light density : press O to increase, P to decrease");
57 // System.out.println("-- Toggle AO on/off : press space bar");
58 // System.out.println("-- Use only AO : press Num pad 0");
59 // System.out.println("-- Output config declaration : press P");
60 System.out.println("-------------------------------------------------------")
    [all...]
  /external/openssl/crypto/bn/
exptest.c 35 * The word 'cryptographic' can be left out if the rouines from the library
50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
77 BIO *out=NULL; local
101 out=BIO_new(BIO_s_file());
103 if (out == NULL) EXIT(1);
104 BIO_set_fp(out,stdout,BIO_NOCLOSE);
127 ERR_print_errors(out);
135 ERR_print_errors(out);
143 ERR_print_errors(out);
151 ERR_print_errors(out);
    [all...]
  /external/speex/libspeex/
fftwrap.c 30 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
45 static int maximize_range(spx_word16_t *in, spx_word16_t *out, spx_word16_t bound, int len)
64 out[i] = SHL16(in[i], shift);
69 static void renorm_range(spx_word16_t *in, spx_word16_t *out, int shift, int len)
74 out[i] = PSHR16(in[i], shift);
98 void spx_fft(void *table, float *in, float *out)
100 if (in==out)
106 out[i] = scale*in[i];
111 out[i] = scale*in[i];
113 spx_drft_forward((struct drft_lookup *)table, out);
174 float *out; member in struct:fftw_config
    [all...]
  /frameworks/base/core/java/android/ddm/
DdmHandleHello.java 127 ByteBuffer out = ByteBuffer.allocate(20 local
129 out.order(ChunkHandler.CHUNK_ORDER);
130 out.putInt(DdmServer.CLIENT_PROTOCOL_VERSION);
131 out.putInt(android.os.Process.myPid());
132 out.putInt(vmIdent.length());
133 out.putInt(appName.length());
134 putString(out, vmIdent);
135 putString(out, appName);
136 out.putInt(UserHandle.myUserId());
138 Chunk reply = new Chunk(CHUNK_HELO, out);
167 ByteBuffer out = ByteBuffer.allocate(size); local
    [all...]
  /frameworks/base/core/tests/coretests/src/android/os/
IAidlTest.aidl 26 AidlTest.TestParcelable parcelableOut(out AidlTest.TestParcelable p);
34 boolean[] booleanArray(in boolean[] a0, out boolean[] a1, inout boolean[] a2);
35 char[] charArray(in char[] a0, out char[] a1, inout char[] a2);
36 int[] intArray(in int[] a0, out int[] a1, inout int[] a2);
37 long[] longArray(in long[] a0, out long[] a1, inout long[] a2);
38 float[] floatArray(in float[] a0, out float[] a1, inout float[] a2);
39 double[] doubleArray(in double[] a0, out double[] a1, inout double[] a2);
40 String[] stringArray(in String[] a0, out String[] a1, inout String[] a2);
42 out AidlTest.TestParcelable[] a1,
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
PRF.java 67 * @param out: the buffer to fill up with the value of the function.
71 static synchronized void computePRF_SSLv3(byte[] out, byte[] secret, byte[] seed) {
78 while (pos < out.length) {
87 if (pos + 16 > out.length) {
88 System.arraycopy(digest, 0, out, pos, out.length - pos);
89 pos = out.length;
91 System.arraycopy(digest, 0, out, pos, 16);
99 * @param out: the buffer to fill up with the value of the function.
104 synchronized static void computePRF(byte[] out, byte[] secret
166 System.arraycopy(md5_mac.doFinal(), 0, out, local
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
StringDataItem.java 71 public void writeTo0(DexFile file, AnnotatedOutput out) {
75 if (out.annotates()) {
76 out.annotate(Leb128Utils.unsignedLeb128Size(utf16Size),
78 out.annotate(bytes.size() + 1, value.toQuoted());
81 out.writeUnsignedLeb128(utf16Size);
82 out.write(bytes);
83 out.writeByte(0);
  /dalvik/dx/src/com/android/dx/dex/file/
StringDataItem.java 71 public void writeTo0(DexFile file, AnnotatedOutput out) {
75 if (out.annotates()) {
76 out.annotate(Leb128Utils.unsignedLeb128Size(utf16Size),
78 out.annotate(bytes.size() + 1, value.toQuoted());
81 out.writeUleb128(utf16Size);
82 out.write(bytes);
83 out.writeByte(0);
  /dalvik/tests/003-omnibus-opcodes/src/
Main.java 28 System.out.println("FAIL: assert doesn't work (specify '-ea')\n");
31 System.out.println("(assertions are enabled)");
40 System.out.println("Done!");
64 System.out.println("Caught: " + ve);
69 System.out.println("Caught (retry): " + ve);
75 System.out.println("Caught: " + ve);
77 /* UnresClass can cause desktop Java to freak out */
78 System.out.println("NOTE: UnresTest2 not available");
  /dalvik/tests/061-out-of-memory/src/
Main.java 25 System.out.println("tests beginning");
29 System.out.println("tests succeeded");
39 System.out.println("Got expected huge-array OOM");
44 System.out.println("testOomeLarge beginning");
63 System.out.println("testOomeLarge succeeded");
67 * list afterwards. Even if we null out list when we're done, the conservative
99 System.out.println("testOomeSmall beginning");
107 System.out.println("testOomeSmall succeeded");
  /dalvik/tests/067-preemptive-unpark/src/
Main.java 13 System.out.println("Test starting");
19 System.out.println("GC'ing");
23 System.out.println("Asking thread to park");
33 System.out.println("Test succeeded!");
35 System.out.println("Test failed.");
99 System.out.println("park()ed for " + elapsed + " msec");
102 System.out.println("park() returned quickly");
  /dalvik/tests/088-monitor-verification/src/
Main.java 35 System.out.println("nestedMayThrow ok");
38 System.out.println("constantLock ok");
47 System.out.println("excessiveNesting ok");
50 System.out.println("notNested ok");
56 System.out.println("twoPath ok");
59 System.out.println("triplet ok");
69 System.out.println("recursiveSync ok");

Completed in 518 milliseconds

<<11121314151617181920>>