Searched refs:out (Results 201 - 225 of 3481) sorted by relevance

1234567891011>>

/external/dropbear/libtomcrypt/src/headers/
H A Dtomcrypt_pkcs.h23 int pkcs_1_i2osp(void *n, unsigned long modulus_len, unsigned char *out);
33 unsigned char *out,
40 unsigned char *out,
49 unsigned char *out, unsigned long *outlen);
54 unsigned char *out, unsigned long *outlen,
61 unsigned char *out, unsigned long *outlen);
77 unsigned char *out, unsigned long *outlen);
83 unsigned char *out, unsigned long *outlen);
/external/dropbear/libtomcrypt/src/pk/asn1/der/utctime/
H A Dder_encode_utctime.c23 out[x++] = der_ia5_char_encode(baseten[(y/10) % 10]); \
24 out[x++] = der_ia5_char_encode(baseten[y % 10]);
29 @param out The destination of the DER encoding of the UTC time structure
30 @param outlen [in/out] The length of the DER encoding
34 unsigned char *out, unsigned long *outlen)
40 LTC_ARGCHK(out != NULL);
52 out[0] = 0x17;
64 out[x++] = der_ia5_char_encode(utctime->off_dir ? '-' : '+');
68 out[x++] = der_ia5_char_encode('Z');
72 out[
33 der_encode_utctime(ltc_utctime *utctime, unsigned char *out, unsigned long *outlen) argument
[all...]
/external/e2fsprogs/lib/uuid/
H A Duuidd.h51 extern void uuid__generate_time(uuid_t out, int *num);
52 extern void uuid__generate_random(uuid_t out, int *num);
/external/emma/core/java12/com/vladium/emma/report/html/doc/
H A DTextContent.java25 public void emit (final HTMLWriter out) argument
29 out.write (m_text);
/external/emma/core/java12/com/vladium/jcd/compiler/
H A DClassWriter.java27 public static void writeClassTable (final ClassDef classTable, final OutputStream out) argument
30 classTable.writeInClassFormat (new UDataOutputStream (out));
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/digest/
H A DDigest.java25 public void digest(byte[] out); argument
27 public void digest(byte[] out, int off); argument
/external/guava/guava-tests/test/com/google/common/io/
H A DCountingOutputStreamTest.java30 ByteArrayOutputStream out = new ByteArrayOutputStream();
31 CountingOutputStream counter = new CountingOutputStream(out);
32 assertEquals(written, out.size());
37 assertEquals(written, out.size());
43 assertEquals(written, out.size());
48 assertEquals(written, out.size());
53 assertEquals(written, out.size());
62 assertEquals(written, out.size());
/external/jmonkeyengine/engine/src/test/jme3test/asset/
H A DTestManyLocators.java70 System.out.println("Failed to load from classpath");
72 System.out.println("Found classpath font: " + a.toString());
75 System.out.println("Failed to load from town.zip");
77 System.out.println("Found zip image: " + b.toString());
80 System.out.println("Failed to load from wildhouse.zip on googlecode.com");
82 System.out.println("Found online zip image: " + c.toString());
85 System.out.println("Failed to load from HTTP");
87 System.out.println("Found HTTP showcase image: " + d.toString());
/external/jmonkeyengine/engine/src/test/jme3test/water/
H A DWaterUI.java51 System.out.println("----------------- SSAO UI Debugger --------------------");
52 System.out.println("-- Water transparency : press Y to increase, H to decrease");
53 System.out.println("-- Water depth : press U to increase, J to decrease");
54 // System.out.println("-- AO scale : press I to increase, K to decrease");
55 // System.out.println("-- AO bias : press O to increase, P to decrease");
56 // System.out.println("-- Toggle AO on/off : press space bar");
57 // System.out.println("-- Use only AO : press Num pad 0");
58 // System.out.println("-- Output config declaration : press P");
59 System.out.println("-------------------------------------------------------");
79 // System.out
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/functions/escape/
H A DNullEscapeFunction.java31 public void filter(String in, Appendable out) throws IOException { argument
32 out.append(in);
/external/llvm/lib/Support/
H A DMakefile21 CompileCommonOpts := $(filter-out -pedantic,$(CompileCommonOpts))
22 CompileCommonOpts := $(filter-out -Wno-long-long,$(CompileCommonOpts))
/external/openssl/crypto/aes/
H A Daes_ctr.c55 void AES_ctr128_encrypt(const unsigned char *in, unsigned char *out, argument
60 CRYPTO_ctr128_encrypt(in,out,length,key,ivec,ecount_buf,num,(block128_f)AES_encrypt);
H A Daes_ofb.c55 void AES_ofb128_encrypt(const unsigned char *in, unsigned char *out, argument
59 CRYPTO_ofb128_encrypt(in,out,length,key,ivec,num,(block128_f)AES_encrypt);
/external/openssl/crypto/modes/
H A Dofb128.c66 void CRYPTO_ofb128_encrypt(const unsigned char *in, unsigned char *out, argument
74 assert(in && out && key && ivec && num);
81 *(out++) = *(in++) ^ ivec[n];
86 if (((size_t)in|(size_t)out|(size_t)ivec)%sizeof(size_t) != 0)
92 *(size_t*)(out+n) =
95 out += 16;
102 out[n] = in[n] ^ ivec[n];
115 out[l] = in[l] ^ ivec[n];
/external/tcpdump/tests/
H A Dbgp_vpn_attrset.sh4 if (../tcpdump -t -n -v -r bgp_vpn_attrset.pcap | diff -w - bgp_vpn_attrset.out)
/external/v8/test/mjsunit/regress/
H A Dregress-crbug-84186.js40 var out = JSON.parse(json); variable
41 assertEquals(expected, out.key);
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
H A DOutputHLSL.cpp101 TInfoSinkBase &out = mHeader; local
105 out << *structDeclaration;
110 out << *constructor;
161 out << "// Varyings\n";
162 out << varyings;
163 out << "\n"
168 out << "static float4 gl_FragCoord = float4(0, 0, 0, 0);\n";
173 out << "static float2 gl_PointCoord = float2(0.5, 0.5);\n";
178 out << "static bool gl_FrontFacing = false;\n";
181 out << "\
593 TInfoSinkBase &out = mBody; local
653 TInfoSinkBase &out = mBody; local
905 TInfoSinkBase &out = mBody; local
984 TInfoSinkBase &out = mBody; local
1377 TInfoSinkBase &out = mBody; local
1427 TInfoSinkBase &out = mBody; local
1499 TInfoSinkBase &out = mBody; local
1559 TInfoSinkBase &out = mBody; local
1724 TInfoSinkBase &out = mBody; local
[all...]
/external/jmonkeyengine/engine/src/test/jme3test/network/
H A DTestSerialization.java126 System.out.println(cm.z);
127 System.out.println(cm.b);
128 System.out.println(cm.c);
129 System.out.println(cm.s);
130 System.out.println(cm.i);
131 System.out.println(cm.f);
132 System.out.println(cm.l);
133 System.out.println(cm.d);
134 System.out.println(Arrays.toString(cm.ia));
135 System.out
[all...]
/external/jmonkeyengine/engine/src/test/jme3test/post/
H A DBloomUI.java48 System.out.println("----------------- Bloom UI Debugger --------------------");
49 System.out.println("-- blur Scale : press Y to increase, H to decrease");
50 System.out.println("-- exposure Power : press U to increase, J to decrease");
51 System.out.println("-- exposure CutOff : press I to increase, K to decrease");
52 System.out.println("-- bloom Intensity : press O to increase, P to decrease");
53 System.out.println("-------------------------------------------------------");
70 System.out.println("blurScale : " + filter.getBlurScale());
74 System.out.println("blurScale : " + filter.getBlurScale());
78 System.out.println("exposurePower : " + filter.getExposurePower());
82 System.out
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/template/
H A DHtmlWhiteSpaceStripper.java33 * It also strips out empty lines and leading whitespace inside HTML tags (i.e.
49 private final Appendable out; field in class:HtmlWhiteSpaceStripper
87 * @param out The Appendable object to dump the stripped output to.
89 public HtmlWhiteSpaceStripper(Appendable out) { argument
90 this(out, 1);
97 * @param out The Appendable object to dump the stripped output to.
100 public HtmlWhiteSpaceStripper(Appendable out, int level) { argument
101 this.out = out;
107 return out
[all...]
/external/bison/src/
H A Dlocation.c34 location_print (FILE *out, location loc) argument
36 fprintf (out, "%s:%d.%d",
41 fprintf (out, "-%s:%d.%d",
45 fprintf (out, "-%d.%d", loc.end.line, loc.end.column - 1);
47 fprintf (out, "-%d", loc.end.column - 1);
/external/dropbear/libtomcrypt/src/misc/base64/
H A Dbase64_decode.c49 @param out [out] The destination of the binary decoded data
50 @param outlen [in/out] The max size and resulting size of the decoded data
54 unsigned char *out, unsigned long *outlen)
61 LTC_ARGCHK(out != NULL);
86 out[z++] = (unsigned char)((t>>16)&255);
87 if (g > 1) out[z++] = (unsigned char)((t>>8)&255);
88 if (g > 2) out[z++] = (unsigned char)(t&255);
53 base64_decode(const unsigned char *in, unsigned long inlen, unsigned char *out, unsigned long *outlen) argument
/external/dropbear/libtomcrypt/src/pk/ecc/
H A Decc_ansi_x963_export.c28 @param out [out] destination of export
29 @param outlen [in/out] Length of destination and final output size
32 int ecc_ansi_x963_export(ecc_key *key, unsigned char *out, unsigned long *outlen) argument
38 LTC_ARGCHK(out != NULL);
52 out[0] = 0x04;
57 XMEMCPY(out+1, buf, numlen);
62 XMEMCPY(out+1+numlen, buf, numlen);
/external/dropbear/libtomcrypt/src/pk/katja/
H A Dkatja_encrypt_key.c24 @param out [out] The ciphertext
25 @param outlen [in/out] The max size and resulting size of the ciphertext
35 unsigned char *out, unsigned long *outlen,
43 LTC_ARGCHK(out != NULL);
75 out, &x)) != CRYPT_OK) {
80 return katja_exptmod(out, x, out, outlen, PK_PUBLIC, key);
34 katja_encrypt_key(const unsigned char *in, unsigned long inlen, unsigned char *out, unsigned long *outlen, const unsigned char *lparam, unsigned long lparamlen, prng_state *prng, int prng_idx, int hash_idx, katja_key *key) argument
/external/guava/guava-gwt/src/com/google/common/collect/
H A DTreeMultimap_CustomFieldSerializer.java33 TreeMultimap<?, ?> out) {
47 public static void serialize(SerializationStreamWriter out, argument
49 out.writeObject(multimap.keyComparator());
50 out.writeObject(multimap.valueComparator());
51 Multimap_CustomFieldSerializerBase.serialize(out, multimap);
32 deserialize(SerializationStreamReader in, TreeMultimap<?, ?> out) argument

Completed in 475 milliseconds

1234567891011>>