Searched refs:out (Results 151 - 175 of 3481) sorted by relevance

1234567891011>>

/external/icu4c/samples/case/
H A Ducase.c21 int c_main(UFILE *out) argument
39 u_fprintf(out, "toupper(%C) = %C\n", char_k, ch);
41 u_fprintf(out, "tolower() = %C\n", ch);
43 u_fprintf(out, "totitle(%C) = %C\n", char_k, ch);
45 u_fprintf(out, "u_foldCase(%C, U_FOLD_CASE_DEFAULT) = %C\n", char_K, (UChar) ch);
53 u_fprintf(out, "error in u_strToLower(Turkish locale)=%ld error=%s\n", length,
57 u_fprintf(out, "u_strToLower(%S, turkish) -> %S\n", upper, buffer);
66 u_fprintf(out, "error in u_strToLower(English locale)=%ld error=%s\n", length,
69 u_fprintf(out, "u_strToUpper(%S, english) -> %S\n", lower, buffer);
78 u_fprintf(out, "erro
[all...]
/external/openssl/crypto/ecdh/
H A Dech_key.c75 int ECDH_compute_key(void *out, size_t outlen, const EC_POINT *pub_key, argument
77 void *(*KDF)(const void *in, size_t inlen, void *out, size_t *outlen))
82 return ecdh->meth->compute_key(out, outlen, pub_key, eckey, KDF);
/external/qemu/
H A Daes.h18 void AES_encrypt(const unsigned char *in, unsigned char *out,
20 void AES_decrypt(const unsigned char *in, unsigned char *out,
22 void AES_cbc_encrypt(const unsigned char *in, unsigned char *out,
/external/v8/src/
H A Dinspector.h44 static void DumpObjectType(FILE* out, Object* obj, bool print_more);
45 static void DumpObjectType(FILE* out, Object* obj) { argument
46 DumpObjectType(out, obj, false);
/external/valgrind/main/auxprogs/
H A Dgsl16test93 rm -f out-REF
94 (cd gsl-1.6-patched && for f in $ALL_TESTS ; do ./$f ; done) &> out-REF
98 rm -f out-V
99 (cd gsl-1.6-patched && for f in $ALL_TESTS ; do eval $GSL_VV -v --trace-children=yes "$GSL_VFLAGS" ./$f ; done) &> out-V
102 echo -n " Native fails: " && (grep FAIL: out-REF | wc -l)
103 echo -n " Native passes: " && (grep PASS: out-REF | wc -l)
104 echo -n " Valgrind fails: " && (grep FAIL: out-V | wc -l)
105 echo -n " Valgrind passes: " && (grep PASS: out-V | wc -l)
107 (echo -n " Native fails: " && (grep FAIL: out-REF | wc -l)) >> summary.txt
108 (echo -n " Native passes: " && (grep PASS: out
[all...]
H A Dgsl19test96 rm -f out-REF
98 do GSL_TEST_VERBOSE=1 ./$f ; done) &> out-REF
102 rm -f out-V
104 do GSL_TEST_VERBOSE=1 eval $GSL_VV -v --trace-children=yes "$GSL_VFLAGS" ./$f ; done) &> out-V
107 echo -n " Native fails: " && (grep FAIL: out-REF | wc -l)
108 echo -n " Native passes: " && (grep PASS: out-REF | wc -l)
109 echo -n " Valgrind fails: " && (grep FAIL: out-V | wc -l)
110 echo -n " Valgrind passes: " && (grep PASS: out-V | wc -l)
112 (echo -n " Native fails: " && (grep FAIL: out-REF | wc -l)) >> summary.txt
113 (echo -n " Native passes: " && (grep PASS: out
[all...]
/external/webkit/Source/WebCore/platform/graphics/haiku/
H A DFontHaiku.cpp42 int charUnicodeToUTF8HACK(unsigned short glyph, char* out) argument
47 out[i++] = static_cast<char>(glyph);
49 out[i++] = 0xc0 | (glyph >> 6);
50 out[i++] = 0x80 | (glyph & 0x3F);
52 out[i++] = 0xe0 | (glyph >> 12);
53 out[i++] = 0x80 | ((glyph >> 6) & 0x3F);
54 out[i++] = 0x80 | (glyph & 0x3F);
57 out[i] = '\0';
87 char out[4]; local
88 charUnicodeToUTF8HACK(glyphs[i], out);
[all...]
/external/webkit/Source/WebKit/win/Interfaces/
H A DIWebHistoryItem.idl68 HRESULT originalURLString([out, retval] BSTR* url);
78 HRESULT URLString([out, retval] BSTR* url);
89 HRESULT title([out, retval] BSTR* pageTitle);
99 HRESULT lastVisitedTimeInterval([out, retval] DATE* lastVisited);
115 HRESULT alternateTitle([out, retval] BSTR* title);
124 HRESULT icon([out, retval] OLE_HANDLE* hBitmap);
/external/bluetooth/bluedroid/audio_a2dp_hw/
H A Daudio_a2dp_hw.c188 static int skt_connect(struct a2dp_stream_out *out, char *path) argument
195 INFO("connect to %s (sz %d)", path, out->buffer_sz);
207 len = out->buffer_sz;
231 /* send time out */
266 static int a2dp_command(struct a2dp_stream_out *out, char cmd) argument
273 if (send(out->ctrl_fd, &cmd, 1, MSG_NOSIGNAL) == -1)
276 skt_disconnect(out->ctrl_fd);
277 out->ctrl_fd = AUDIO_SKT_DISCONNECTED;
282 if (recv(out->ctrl_fd, &ack, 1, MSG_NOSIGNAL) < 0)
285 skt_disconnect(out
304 a2dp_stream_out_init(struct a2dp_stream_out *out) argument
326 start_audio_datapath(struct a2dp_stream_out *out) argument
363 stop_audio_datapath(struct a2dp_stream_out *out) argument
392 suspend_audio_datapath(struct a2dp_stream_out *out, bool standby) argument
418 check_a2dp_ready(struct a2dp_stream_out *out) argument
440 struct a2dp_stream_out *out = (struct a2dp_stream_out *)stream; local
495 struct a2dp_stream_out *out = (struct a2dp_stream_out *)stream; local
504 struct a2dp_stream_out *out = (struct a2dp_stream_out *)stream; local
521 struct a2dp_stream_out *out = (struct a2dp_stream_out *)stream; local
530 struct a2dp_stream_out *out = (struct a2dp_stream_out *)stream; local
539 struct a2dp_stream_out *out = (struct a2dp_stream_out *)stream; local
546 struct a2dp_stream_out *out = (struct a2dp_stream_out *)stream; local
553 struct a2dp_stream_out *out = (struct a2dp_stream_out *)stream; local
573 struct a2dp_stream_out *out = (struct a2dp_stream_out *)stream; local
580 struct a2dp_stream_out *out = (struct a2dp_stream_out *)stream; local
634 struct a2dp_stream_out *out = (struct a2dp_stream_out *)stream; local
647 struct a2dp_stream_out *out = (struct a2dp_stream_out *)stream; local
796 struct a2dp_stream_out *out; local
877 struct a2dp_stream_out *out = (struct a2dp_stream_out *)stream; local
894 struct a2dp_stream_out *out = a2dp_dev->output; local
[all...]
/external/apache-harmony/nio_char/src/test/java/tests/api/java/nio/charset/
H A DCharsetEncoderTest.java142 // Commented out since the comment is wrong since MAX_BYTES > 1
216 // Commented out since the comment is wrong since MAX_BYTES > 1
286 ByteBuffer out = ByteBuffer.allocate(5);
290 encoder.encode(in, out, true);
291 out.rewind();
292 CoderResult result = encoder.flush(out);
296 encoder.flush(out);
304 encoder.encode(in, out, false);
306 encoder.flush(out);
314 ByteBuffer out
681 assertByteArray(ByteBuffer out, byte[] expected) argument
888 assertCodingErrorAction(boolean endOfInput, ByteBuffer out, CharBuffer in, byte[] expect) argument
1035 encodeLoop(CharBuffer in, ByteBuffer out) argument
1073 implFlush(ByteBuffer out) argument
[all...]
/external/bison/src/
H A Dconflicts.h28 void conflicts_output (FILE *out);
H A Dprint.c49 fprintf (out, _(" type %d is %s\n"), extnum, tags[token]);
73 print_core (FILE *out, state *s)
91 fputc ('\n', out);
106 rule_lhs_print (&rules[r], previous_lhs, out);
110 fprintf (out, " %s", symbols[*sp]->tag);
111 fputs (" .", out);
113 fprintf (out, " %s", symbols[*sp]->tag);
117 state_rule_look_ahead_tokens_print (s, &rules[r], out);
119 fputc ('\n', out);
130 print_transitions (state *s, FILE *out, boo
72 print_core(FILE *out, state *s) argument
129 print_transitions(state *s, FILE *out, bool display_transitions_p) argument
177 print_errs(FILE *out, state *s) argument
281 print_reduction(FILE *out, size_t width, const char *look_ahead_token, rule *r, bool enabled) argument
306 print_reductions(FILE *out, state *s) argument
401 print_actions(FILE *out, state *s) argument
417 print_state(FILE *out, state *s) argument
447 print_grammar(FILE *out) argument
551 FILE *out = xfopen (spec_verbose_file, "w"); local
[all...]
H A Dreduce.h26 void reduce_output (FILE *out);
/external/dropbear/libtomcrypt/src/headers/
H A Dtomcrypt_misc.h4 unsigned char *out, unsigned long *outlen);
7 unsigned char *out, unsigned long *outlen);
/external/dropbear/libtomcrypt/testprof/
H A Dbase64_test.c5 unsigned char in[64], out[256], tmp[64]; local
10 l1 = sizeof(out);
11 DO(base64_encode(in, x, out, &l1));
13 DO(base64_decode(out, l1, tmp, &l2));
/external/emma/core/java12/com/vladium/jcd/cls/constant/
H A DCONSTANT_ref_info.java49 public void writeInClassFormat (final UDataOutputStream out) throws IOException argument
51 super.writeInClassFormat (out);
53 out.writeU2 (m_class_index);
54 out.writeU2 (m_name_and_type_index);
/external/guava/guava/src/com/google/common/io/
H A DCountingOutputStream.java39 * @param out the output stream to be wrapped
41 public CountingOutputStream(OutputStream out) { argument
42 super(out);
51 out.write(b, off, len);
56 out.write(b);
/external/junit/src/junit/runner/
H A DVersion.java18 System.out.println(id());
/external/junit/src/org/junit/internal/
H A DJUnitSystem.java7 PrintStream out(); method in interface:JUnitSystem
/external/openssl/crypto/ecdsa/
H A Decdsatest.c102 int x9_62_test_internal(BIO *out, int nid, const char *r, const char *s);
181 int x9_62_test_internal(BIO *out, int nid, const char *r_in, const char *s_in) argument
198 BIO_printf(out, "testing %s: ", OBJ_nid2sn(nid));
204 BIO_printf(out, ".");
205 (void)BIO_flush(out);
210 BIO_printf(out, ".");
211 (void)BIO_flush(out);
220 BIO_printf(out, ".");
221 (void)BIO_flush(out);
225 BIO_printf(out, "
245 x9_62_tests(BIO *out) argument
284 test_builtin(BIO *out) argument
529 BIO *out; local
[all...]
/external/openssl/crypto/evp/
H A De_null.c35 * The word 'cryptographic' can be left out if the rouines from the library
68 static int null_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
97 static int null_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out, argument
100 if (in != out)
101 memcpy((char *)out,(const char *)in,inl);
/external/proguard/examples/annotations/examples/
H A DApplication.java18 System.out.println("The answer is 42");
/external/proguard/src/proguard/gui/
H A DTextAreaOutputStream.java68 ByteArrayOutputStream out = (ByteArrayOutputStream)super.out;
71 String text = out.toString();
78 out.reset();
/external/smali/dexlib/src/main/java/org/jf/dexlib/EncodedValue/
H A DNullEncodedValue.java46 public void writeValue(AnnotatedOutput out) { argument
47 if (out.annotates()) {
48 out.annotate("value_type=" + ValueType.VALUE_NULL.name() + ",value_arg=0");
50 out.writeByte(ValueType.VALUE_NULL.value);
/external/apache-http/src/org/apache/http/impl/io/
H A DContentLengthOutputStream.java53 private final SessionOutputBuffer out; field in class:ContentLengthOutputStream
70 * @param out The data transmitter to wrap
76 public ContentLengthOutputStream(final SessionOutputBuffer out, long contentLength) { argument
78 if (out == null) {
84 this.out = out;
96 this.out.flush();
101 this.out.flush();
113 this.out.write(b, off, len);
127 this.out
[all...]

Completed in 3051 milliseconds

1234567891011>>