Searched refs:out (Results 76 - 100 of 5513) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/smhasher/src/
H A DCityTest.cpp3 void CityHash64_test ( const void * key, int len, uint32_t seed, void * out )
5 *(uint64*)out = CityHash64WithSeed((const char *)key,len,seed);
8 void CityHash128_test ( const void * key, int len, uint32_t seed, void * out )
14 *(uint128*)out = CityHash128WithSeed((const char*)key,len,s);
H A DSpookyTest.cpp3 void SpookyHash32_test(const void *key, int len, uint32_t seed, void *out) { argument
4 *(uint32_t*)out = SpookyHash::Hash32(key, len, seed);
7 void SpookyHash64_test(const void *key, int len, uint32_t seed, void *out) { argument
8 *(uint64_t*)out = SpookyHash::Hash64(key, len, seed);
11 void SpookyHash128_test(const void *key, int len, uint32_t seed, void *out) { argument
14 ((uint64_t*)out)[0] = h1;
15 ((uint64_t*)out)[1] = h2;
/external/mesa3d/src/gallium/state_trackers/d3d1x/gd3dapi/
H A Dgalliumdxgi.idl97 [out] void** present_cookie,
98 [out] void** window,
99 [out] RECT* rect,
100 [out] struct _RGNDATA** rgndata,
101 [out] BOOL* preserve_aspect_ratio
106 [out] void* present_cookie
117 [out] unsigned* width,
118 [out] unsigned* height
/external/speex/libspeex/
H A Dfftwrap.h47 void spx_fft(void *table, spx_word16_t *in, spx_word16_t *out);
50 void spx_ifft(void *table, spx_word16_t *in, spx_word16_t *out);
53 void spx_fft_float(void *table, float *in, float *out);
56 void spx_ifft_float(void *table, float *in, float *out);
/external/hamcrest/src/org/hamcrest/
H A DStringDescription.java9 private final Appendable out; field in class:StringDescription
15 public StringDescription(Appendable out) { argument
16 this.out = out;
40 out.append(str);
48 out.append(c);
58 return out.toString();
/external/javassist/src/main/javassist/tools/
H A DDump.java50 PrintWriter out = new PrintWriter(System.out, true);
51 out.println("*** constant pool ***");
52 w.getConstPool().print(out);
53 out.println();
54 out.println("*** members ***");
55 ClassFilePrinter.print(w, out);
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/
H A DJavaSourceWriter.java32 * java = new JavaSourceWriter(out);
40 * java.writeStatement(call("System.out.println", string("hello")));
48 private final PrintWriter out; field in class:JavaSourceWriter
51 public JavaSourceWriter(Writer out) { argument
52 this.out = new PrintWriter(out);
59 out.append("package ").append(packageName).append(';');
68 out.append("import ").append(javaClass.getName()).append(';');
79 out.append("// ").append(comment);
85 out
315 writeJavaSymbol(PrintWriter out, String symbol) argument
[all...]
/external/lldb/test/lang/objc/objc-ivar-stripped/
H A DMakefile6 default: a.out.stripped
8 a.out.stripped: a.out.dSYM
9 strip -o a.out.stripped a.out
12 rm -f a.out.stripped
13 rm -rf a.out.stripped.dSYM
/external/lldb/test/lang/objc/objc-static-method-stripped/
H A DMakefile6 default: a.out.stripped
8 a.out.stripped: a.out.dSYM
9 strip -o a.out.stripped a.out
12 rm -f a.out.stripped
13 rm -rf a.out.stripped.dSYM
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
H A DCountOutputStream.java24 private final OutputStream out; field in class:CountOutputStream
31 * @param out an <code>OutputStream</code>
33 CountOutputStream(OutputStream out) argument
35 this.out = out;
45 out.write(buf, off, len);
56 out.write(buf);
67 out.write(b);
/external/qemu/distrib/libsparse/src/
H A Doutput_file.c71 int (*write_data_chunk)(struct output_file *out, unsigned int len,
73 int (*write_fill_chunk)(struct output_file *out, unsigned int len,
75 int (*write_skip_chunk)(struct output_file *out, int64_t len);
76 int (*write_end_chunk)(struct output_file *out);
94 struct output_file out; member in struct:output_file_gz
99 container_of((_o), struct output_file_gz, out)
102 struct output_file out; member in struct:output_file_normal
107 container_of((_o), struct output_file_normal, out)
110 struct output_file out; member in struct:output_file_callback
116 container_of((_o), struct output_file_callback, out)
118 file_open(struct output_file *out, int fd) argument
126 file_skip(struct output_file *out, int64_t cnt) argument
139 file_pad(struct output_file *out, int64_t len) argument
152 file_write(struct output_file *out, void *data, int len) argument
169 file_close(struct output_file *out) argument
184 gz_file_open(struct output_file *out, int fd) argument
198 gz_file_skip(struct output_file *out, int64_t cnt) argument
211 gz_file_pad(struct output_file *out, int64_t len) argument
235 gz_file_write(struct output_file *out, void *data, int len) argument
252 gz_file_close(struct output_file *out) argument
273 callback_file_skip(struct output_file *out, int64_t off) argument
296 callback_file_write(struct output_file *out, void *data, int len) argument
303 callback_file_close(struct output_file *out) argument
340 write_sparse_skip_chunk(struct output_file *out, int64_t skip_len) argument
366 write_sparse_fill_chunk(struct output_file *out, unsigned int len, uint32_t fill_val) argument
401 write_sparse_data_chunk(struct output_file *out, unsigned int len, void *data) argument
442 write_sparse_end_chunk(struct output_file *out) argument
475 write_normal_data_chunk(struct output_file *out, unsigned int len, void *data) argument
493 write_normal_fill_chunk(struct output_file *out, unsigned int len, uint32_t fill_val) argument
518 write_normal_skip_chunk(struct output_file *out, int64_t len) argument
523 write_normal_end_chunk(struct output_file *out) argument
535 output_file_close(struct output_file *out) argument
541 output_file_init(struct output_file *out, int block_size, int64_t len, bool sparse, int chunks, bool crc) argument
660 struct output_file *out; local
683 write_data_chunk(struct output_file *out, unsigned int len, void *data) argument
689 write_fill_chunk(struct output_file *out, unsigned int len, uint32_t fill_val) argument
695 write_fd_chunk(struct output_file *out, unsigned int len, int fd, int64_t offset) argument
746 write_file_chunk(struct output_file *out, unsigned int len, const char *file, int64_t offset) argument
763 write_skip_chunk(struct output_file *out, int64_t len) argument
[all...]
/external/chromium_org/net/data/ssl/scripts/
H A Dgenerate-redundant-test-chains.sh27 try rm -rf out
28 try mkdir out
34 try /bin/sh -c "echo $serial > out/$i-serial"
39 try openssl genrsa -out out/A.key 2048
40 try openssl genrsa -out out/B.key 2048
41 try openssl genrsa -out out/C.key 2048
42 try openssl genrsa -out ou
[all...]
H A Dgenerate-aia-certs.sh15 try rm -rf out
16 try mkdir out
19 try /bin/sh -c "echo 01 > out/aia-test-root-serial"
20 try /bin/sh -c "echo 01 > out/aia-test-intermediate-serial"
23 touch out/aia-test-root-index.txt
24 touch out/aia-test-intermediate-index.txt
27 try openssl genrsa -out out/aia-test-root.key 2048
28 try openssl genrsa -out out/ai
[all...]
H A Dgenerate-client-certificates.sh26 try rm -rf out
27 try mkdir out
33 try /bin/sh -c "echo $serial > out/$i-serial"
35 touch out/$i-index.txt
36 touch out/$i-index.txt.attr
42 try openssl genrsa -out out/$i.key 2048
47 CA_DIR=out \
51 -key out/C.key \
52 -out ou
[all...]
/external/qemu/android/utils/
H A Dwin32_cmdline_quote.c26 stralloc_t out = STRALLOC_INIT;
29 stralloc_add_c(&out, '"');
42 stralloc_add_str(&out, "\\\\");
49 stralloc_add_str(&out, "\\\\");
50 stralloc_add_str(&out, "\\\"");
53 stralloc_add_c(&out, '\\');
54 stralloc_add_c(&out, param[n]);
60 stralloc_add_c(&out, '"');
62 char* result = ASTRDUP(stralloc_cstr(&out));
63 stralloc_reset(&out);
[all...]
/external/bison/src/
H A Dgram.c68 rule_lhs_print (rule *r, symbol *previous_lhs, FILE *out) argument
70 fprintf (out, " %3d ", r->number);
73 fprintf (out, "%s:", r->lhs->tag);
79 fputc (' ', out);
80 fputc ('|', out);
85 rule_lhs_print_xml (rule *r, FILE *out, int level) argument
87 xml_printf (out, level, "<lhs>%s</lhs>", r->lhs->tag);
101 rule_rhs_print (rule *r, FILE *out) argument
107 fprintf (out, " %s", symbols[*rp]->tag);
108 fputc ('\n', out);
117 rule_rhs_print_xml(rule *r, FILE *out, int level) argument
137 rule_print(rule *r, FILE *out) argument
144 ritem_print(FILE *out) argument
173 grammar_rules_partial_print(FILE *out, const char *title, rule_filter filter) argument
199 grammar_rules_print(FILE *out) argument
205 grammar_rules_print_xml(FILE *out, int level) argument
242 grammar_dump(FILE *out, const char *title) argument
[all...]
/external/chromium_org/tools/gn/
H A Dconfig_values_extractors.cc17 void operator()(const std::string& s, std::ostream& out) const {
18 out << " ";
19 EscapeStringToStream(out, s, escape_options_);
32 std::ostream& out) {
34 EscapedStringWriter(escape_options), out);
28 RecursiveTargetConfigStringsToStream( const Target* target, const std::vector<std::string>& (ConfigValues::* getter)() const, const EscapeOptions& escape_options, std::ostream& out) argument
/external/openssl/crypto/ecdh/
H A Decdhtest.c109 static void *KDF1_SHA1(const void *in, size_t inlen, void *out, size_t *outlen) argument
116 return SHA1(in, inlen, out);
123 static int test_ecdh_curve(int nid, const char *text, BN_CTX *ctx, BIO *out) argument
146 BIO_puts(out,"Testing key generation with ");
147 BIO_puts(out,text);
149 BIO_puts(out,"\n");
151 (void)BIO_flush(out);
169 BIO_puts(out," pri 1=");
170 BN_print(out,a->priv_key);
171 BIO_puts(out,"\
307 BIO *out; local
[all...]
/external/zopfli/src/zopfli/
H A Dgzip_container.c79 unsigned char** out, size_t* outsize) {
83 ZOPFLI_APPEND_DATA(31, out, outsize); /* ID1 */
84 ZOPFLI_APPEND_DATA(139, out, outsize); /* ID2 */
85 ZOPFLI_APPEND_DATA(8, out, outsize); /* CM */
86 ZOPFLI_APPEND_DATA(0, out, outsize); /* FLG */
88 ZOPFLI_APPEND_DATA(0, out, outsize);
89 ZOPFLI_APPEND_DATA(0, out, outsize);
90 ZOPFLI_APPEND_DATA(0, out, outsize);
91 ZOPFLI_APPEND_DATA(0, out, outsize);
93 ZOPFLI_APPEND_DATA(2, out, outsiz
77 ZopfliGzipCompress(const ZopfliOptions* options, const unsigned char* in, size_t insize, unsigned char** out, size_t* outsize) argument
[all...]
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DUnfoldShortCircuit.cpp33 TInfoSinkBase &out = mOutputHLSL->getBodyStream(); local
51 out << "bool s" << i << ";\n";
53 out << "{\n";
57 out << "s" << i << " = ";
60 out << ";\n";
61 out << "if (!s" << i << ")\n"
65 out << " s" << i << " = ";
68 out << ";\n"
71 out << "}\n";
82 out << "boo
114 TInfoSinkBase &out = mOutputHLSL->getBodyStream(); local
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/x509/
H A Dt_x509a.c34 * The word 'cryptographic' can be left out if the rouines from the library
66 int X509_CERT_AUX_print(BIO *out, X509_CERT_AUX *aux, int indent) argument
74 BIO_printf(out, "%*sTrusted Uses:\n%*s",
77 if(!first) BIO_puts(out, ", ");
81 BIO_puts(out, oidstr);
83 BIO_puts(out, "\n");
84 } else BIO_printf(out, "%*sNo Trusted Uses.\n", indent, "");
87 BIO_printf(out, "%*sRejected Uses:\n%*s",
90 if(!first) BIO_puts(out, ", ");
94 BIO_puts(out, oidst
[all...]
/external/openssl/crypto/asn1/
H A Dt_x509a.c68 int X509_CERT_AUX_print(BIO *out, X509_CERT_AUX *aux, int indent) argument
75 BIO_printf(out, "%*sTrusted Uses:\n%*s",
78 if(!first) BIO_puts(out, ", ");
82 BIO_puts(out, oidstr);
84 BIO_puts(out, "\n");
85 } else BIO_printf(out, "%*sNo Trusted Uses.\n", indent, "");
88 BIO_printf(out, "%*sRejected Uses:\n%*s",
91 if(!first) BIO_puts(out, ", ");
95 BIO_puts(out, oidstr);
97 BIO_puts(out, "\
[all...]
/external/chromium_org/tools/json_schema_compiler/test/
H A Dfunctions_as_parameters_unittest.cc16 FunctionType out; local
17 EXPECT_FALSE(FunctionType::Populate(empty_value, &out));
23 FunctionType out; local
24 ASSERT_TRUE(FunctionType::Populate(value, &out));
25 EXPECT_TRUE(out.event_callback.empty());
35 FunctionType out; local
36 ASSERT_TRUE(FunctionType::Populate(value, &out));
37 EXPECT_TRUE(value.Equals(out.ToValue().get()));
46 FunctionType out; local
47 ASSERT_TRUE(FunctionType::Populate(value, &out));
55 OptionalFunctionType out; local
63 OptionalFunctionType out; local
71 OptionalFunctionType out; local
80 OptionalFunctionType out; local
90 OptionalFunctionType out; local
[all...]
/external/chromium_org/ui/ozone/
H A Dgenerate_constructor_list.py74 def GenerateConstructorList(out, namespace, export, typenames, platforms,
78 out.write('// DO NOT MODIFY. GENERATED BY generate_constructor_list.py\n')
79 out.write('\n')
81 out.write('#include "ui/ozone/platform_object_internal.h"\n')
82 out.write('\n')
85 out.write('#include %(include)s\n' % {'include': include})
86 out.write('\n')
88 out.write('namespace %(namespace)s {\n' % {'namespace': namespace})
89 out.write('\n')
95 out
[all...]
/external/libpng/scripts/
H A Doptions.awk13 # the variable 'out'. The script is run twice, once with
17 # awk -f scripts/options.awk out=options.tmp scripts/options.dfa 1>&2
18 # awk -f scripts/options.awk out=options.dfn options.tmp 1>&2
33 out="" # intermediate, preprocessed, file
86 out == "" {
87 print "out=output.file must be given on the command line"
101 print "PREPROCESSED" >out
120 print "version =", version >out
167 print >out
207 print comment $0, cend >out
[all...]

Completed in 631 milliseconds

1234567891011>>