Searched defs:in (Results 201 - 225 of 1115) sorted by path

1234567891011>>

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/util/
H A DPKCS12BagAttributeCarrierImpl.java102 public void readObject(ObjectInputStream in) argument
105 Object obj = in.readObject();
110 this.pkcs12Ordering = (Vector)in.readObject();
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/x509/
H A DCertificateFactory.java92 InputStream in)
95 ASN1Sequence seq = PEM_CERT_PARSER.readPEMObject(in);
113 InputStream in)
116 ASN1Sequence seq = PEM_CRL_PARSER.readPEMObject(in);
167 InputStream in)
172 currentStream = in;
176 else if (currentStream != in) // reset if input stream has changed
178 currentStream = in;
199 PushbackInputStream pis = new PushbackInputStream(in);
91 readPEMCertificate( InputStream in) argument
112 readPEMCRL( InputStream in) argument
166 engineGenerateCertificate( InputStream in) argument
H A DPEMUtil.java26 InputStream in)
34 while (((c = in.read()) != '\r') && c != '\n' && (c >= 0))
50 InputStream in)
56 while ((line = readLine(in)) != null)
64 while ((line = readLine(in)) != null)
25 readLine( InputStream in) argument
49 readPEMObject( InputStream in) argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/keystore/bc/
H A DBcKeyStoreSpi.java324 // in EncryptedPrivateKeyInfo (PKCS8 format), later...
691 InputStream in)
694 DataInputStream dIn = new DataInputStream(in);
733 throw new RuntimeException("Unknown object type in store.");
785 throw new RuntimeException("Unknown object type in store.");
932 * however if you hard drive is in a bad part of town and you absolutely,
934 * one to use, no problem! After all in a Bouncy Castle nothing can
690 loadStore( InputStream in) argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/util/
H A DBaseBlockCipher.java475 throw new InvalidAlgorithmParameterException("RC5 requires an RC5ParametersSpec to be passed in.");
926 public int processByte(byte in, byte[] out, int outOff) argument
929 public int processBytes(byte[] in, int inOff, int len, byte[] out, int outOff) argument
990 throw new UnsupportedOperationException("AAD is not supported in the current mode.");
993 public int processByte(byte in, byte[] out, int outOff) throws DataLengthException argument
995 return cipher.processByte(in, out, outOff);
998 public int processBytes(byte[] in, int inOff, int len, byte[] out, int outOff) throws DataLengthException argument
1000 return cipher.processBytes(in, inOff, len, out, outOff);
1088 public int processByte(byte in, byte[] out, int outOff) throws DataLengthException argument
1090 return cipher.processByte(in, ou
1093 processBytes(byte[] in, int inOff, int len, byte[] out, int outOff) argument
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
H A DJCEDHPrivateKey.java107 * return the encoding format we produce in getEncoded().
152 ObjectInputStream in)
155 x = (BigInteger)in.readObject();
157 this.dhSpec = new DHParameterSpec((BigInteger)in.readObject(), (BigInteger)in.readObject(), in.readInt());
151 readObject( ObjectInputStream in) argument
H A DJCEDHPublicKey.java74 throw new IllegalArgumentException("invalid info structure in DH public key");
162 ObjectInputStream in)
165 this.y = (BigInteger)in.readObject();
166 this.dhSpec = new DHParameterSpec((BigInteger)in.readObject(), (BigInteger)in.readObject(), in.readInt());
161 readObject( ObjectInputStream in) argument
H A DJCEECPrivateKey.java277 * return the encoding format we produce in getEncoded().
459 ObjectInputStream in)
462 byte[] enc = (byte[])in.readObject();
466 this.algorithm = (String)in.readObject();
467 this.withCompression = in.readBoolean();
470 attrCarrier.readObject(in);
458 readObject( ObjectInputStream in) argument
H A DJCEECPublicKey.java514 ObjectInputStream in)
517 byte[] enc = (byte[])in.readObject();
521 this.algorithm = (String)in.readObject();
522 this.withCompression = in.readBoolean();
513 readObject( ObjectInputStream in) argument
H A DJCERSAPrivateKey.java125 ObjectInputStream in)
128 this.modulus = (BigInteger)in.readObject();
131 attrCarrier.readObject(in);
133 this.privateExponent = (BigInteger)in.readObject();
124 readObject( ObjectInputStream in) argument
H A DJDKDSAPrivateKey.java77 * return the encoding format we produce in getEncoded().
157 ObjectInputStream in)
160 this.x = (BigInteger)in.readObject();
161 this.dsaSpec = new DSAParameterSpec((BigInteger)in.readObject(), (BigInteger)in.readObject(), (BigInteger)in.readObject());
164 attrCarrier.readObject(in);
156 readObject( ObjectInputStream in) argument
H A DJDKDSAPublicKey.java71 throw new IllegalArgumentException("invalid info structure in DSA public key");
160 ObjectInputStream in)
163 this.y = (BigInteger)in.readObject();
164 this.dsaSpec = new DSAParameterSpec((BigInteger)in.readObject(), (BigInteger)in.readObject(), (BigInteger)in.readObject());
159 readObject( ObjectInputStream in) argument
H A DPEMUtil.java28 InputStream in)
36 while (((c = in.read()) != '\r') && c != '\n' && (c >= 0))
57 InputStream in)
63 while ((line = readLine(in)) != null)
71 while ((line = readLine(in)) != null)
27 readLine( InputStream in) argument
56 readPEMObject( InputStream in) argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
H A DX509V2AttributeCertificate.java46 private static AttributeCertificate getObject(InputStream in) argument
51 return AttributeCertificate.getInstance(new ASN1InputStream(in).readObject());
90 throw new IOException("invalid data structure in certificate!");
180 throw new CertificateException("Signature algorithm in certificate info not same as outer certificate");
/external/ceres-solver/internal/ceres/
H A Dpolynomial_test.cc5 // Redistribution and use in source and binary forms, with or without
10 // * Redistributions in binary form must reproduce the above copyright notice,
11 // this list of conditions and the following disclaimer in the documentation
77 // Sort the entries in a vector.
78 // Needed because the roots are not returned in sorted order.
79 Vector SortVector(const Vector& in) { argument
80 Vector out(in);
85 // Run a test with the polynomial defined by the N real roots in roots_real.
/external/chromium-trace/trace-viewer/tracing/
H A Drun_py_tests4 # found in the LICENSE file.
11 if hooks_path not in sys.path:
16 import tracing # Brings in tvcm bindings. namespace
/external/clang/test/Analysis/diagnostics/Inputs/include/
H A Dreport-issues-within-main-file.h10 void cause_div_by_zero_in_header(int in) { argument
12 h = in/h;
16 void do_something (int in) { argument
17 in++;
18 in++;
21 void cause_div_by_zero_in_header2(int in) { argument
23 h2 = in/h2;
29 void cause_div_by_zero_in_header3(int in) { argument
31 h3 = in/h3;
37 void cause_div_by_zero_in_header4(int in) { argument
[all...]
/external/clang/test/Analysis/diagnostics/
H A Dreport-issues-within-main-file.cpp1 // RUN: %clang_cc1 -analyze -analyzer-checker=core,unix -analyzer-output=plist-multi-file -analyzer-config report-in-main-source-file=true -analyzer-config path-diagnostics-alternate=false %s -o %t.plist
22 void causeDivByZeroInMain(int in) { argument
24 m = in/m;
34 void causeDivByZeroInMain2(int in) { argument
36 m2 = in/m2;
/external/clang/test/Analysis/
H A Dmalloc-interprocedural.c77 static char *reshape(char *in) { argument
H A Dmalloc-plist.c10 void diagnosticTest(int in) { argument
11 if (in > 5) {
15 in++; // expected-warning {{leak}}
89 // Test that we refer to the last symbol used in the leak diagnostic.
90 void LeakedSymbol(int in) { argument
98 in++;
258 // CHECK-NEXT: <string>Assuming &apos;in&apos; is &gt; 5</string>
260 // CHECK-NEXT: <string>Assuming &apos;in&apos; is &gt; 5</string>
H A Doutofbound.c90 int overflow_binary_search(double in) { argument
92 if (in < 1e-8 || in > 1e23) {
99 if (in < ins[eee]) {
104 if (in < ins[eee]) {
109 if (in < ins[eee]) {
114 if (in < ins[eee]) {
119 if (in < ins[eee]) { // expected-warning {{Access out-of-bound array element (buffer overflow)}}
H A Dptr-arith.cpp9 void reset(int *in) { argument
10 while (in != p) // Loop must be entered.
15 int test (int *in) { argument
18 littleX.p = in;
H A Dtaint-tester.c62 void BitwiseOp(int in, char inn) { argument
67 int y = (in << (x << in)) * 5;// expected-warning + {{tainted}}
110 // Check if we propagate taint from stdin when it's used in an assignment.
/external/clang/test/CodeGen/
H A Darm-abi-vector.c38 double test_2i(__int2 *in) { argument
43 return varargs_vec_2i(3, *in);
64 double test_3c(__char3 *in) { argument
69 return varargs_vec_3c(3, *in);
95 double test_5c(__char5 *in) { argument
100 return varargs_vec_5c(5, *in);
129 double test_9c(__char9 *in) { argument
134 return varargs_vec_9c(9, *in);
157 double test_19c(__char19 *in) { argument
162 return varargs_vec_19c(19, *in);
188 test_3s(__short3 *in) argument
222 test_5s(__short5 *in) argument
[all...]
H A Darm64-abi-vector.c30 double test_3c(__char3 *in) { argument
33 return varargs_vec_3c(3, *in);
50 double test_4c(__char4 *in) { argument
53 return varargs_vec_4c(4, *in);
70 double test_5c(__char5 *in) { argument
73 return varargs_vec_5c(5, *in);
92 double test_9c(__char9 *in) { argument
95 return varargs_vec_9c(9, *in);
113 double test_19c(__char19 *in) { argument
116 return varargs_vec_19c(19, *in);
133 test_3s(__short3 *in) argument
155 test_5s(__short5 *in) argument
177 test_3i(__int3 *in) argument
199 test_5i(__int5 *in) argument
221 test_3d(__double3 *in) argument
302 fixed_3c(__char3 *in) argument
318 fixed_5c(__char5 *in) argument
334 fixed_9c(__char9 *in) argument
348 fixed_19c(__char19 *in) argument
364 fixed_3s(__short3 *in) argument
380 fixed_5s(__short5 *in) argument
396 fixed_3i(__int3 *in) argument
410 fixed_5i(__int5 *in) argument
426 fixed_3d(__double3 *in) argument
[all...]

Completed in 501 milliseconds

1234567891011>>