Searched defs:in (Results 501 - 525 of 1566) sorted by relevance

<<21222324252627282930>>

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dh/
H A DBCDHPrivateKey.java108 * return the encoding format we produce in getEncoded().
193 ObjectInputStream in)
196 in.defaultReadObject();
198 this.dhSpec = new DHParameterSpec((BigInteger)in.readObject(), (BigInteger)in.readObject(), in.readInt());
192 readObject( ObjectInputStream in) argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dsa/
H A DBCDSAPrivateKey.java77 * return the encoding format we produce in getEncoded().
148 ObjectInputStream in)
151 in.defaultReadObject();
153 this.dsaSpec = new DSAParameterSpec((BigInteger)in.readObject(), (BigInteger)in.readObject(), (BigInteger)in.readObject());
147 readObject( ObjectInputStream in) argument
H A DBCDSAPublicKey.java71 throw new IllegalArgumentException("invalid info structure in DSA public key");
153 ObjectInputStream in)
156 in.defaultReadObject();
158 this.dsaSpec = new DSAParameterSpec((BigInteger)in.readObject(), (BigInteger)in.readObject(), (BigInteger)in.readObject());
152 readObject( ObjectInputStream in) argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/rsa/
H A DBCRSAPrivateKey.java125 ObjectInputStream in)
128 in.defaultReadObject();
124 readObject( ObjectInputStream in) argument
H A DBCRSAPublicKey.java71 throw new IllegalArgumentException("invalid info structure in RSA public key");
146 ObjectInputStream in)
149 in.defaultReadObject();
153 algorithmIdentifier = AlgorithmIdentifier.getInstance(in.readObject());
145 readObject( ObjectInputStream in) argument
/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
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
H A DJCEECPublicKey.java519 ObjectInputStream in)
522 byte[] enc = (byte[])in.readObject();
526 this.algorithm = (String)in.readObject();
527 this.withCompression = in.readBoolean();
518 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.java79 * return the encoding format we produce in getEncoded().
159 ObjectInputStream in)
162 this.x = (BigInteger)in.readObject();
163 this.dsaSpec = new DSAParameterSpec((BigInteger)in.readObject(), (BigInteger)in.readObject(), (BigInteger)in.readObject());
166 attrCarrier.readObject(in);
158 readObject( ObjectInputStream 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_org/base/
H A Dmd5.cc3 // found in the LICENSE file.
5 // The original file was copied from sqlite, and was in the public domain.
10 * written by Colin Plumb in 1993, no copyright is claimed.
11 * This code is in the public domain; do with it what you wish.
33 unsigned char in[64]; member in struct:__anon2327::Context
57 /* This is the central step in the MD5 algorithm. */
66 void MD5Transform(uint32 buf[4], const uint32 in[16]) { argument
74 MD5STEP(F1, a, b, c, d, in[ 0]+0xd76aa478, 7);
75 MD5STEP(F1, d, a, b, c, in[ 1]+0xe8c7b756, 12);
76 MD5STEP(F1, c, d, a, b, in[
[all...]
/external/chromium_org/cc/quads/
H A Drender_pass.cc3 // found in the LICENSE file.
80 void RenderPass::CopyAll(const ScopedPtrVector<RenderPass>& in, argument
82 for (size_t i = 0; i < in.size(); ++i) {
83 RenderPass* source = in[i];
85 // Since we can't copy these, it's wrong to use CopyAll in a situation where
/external/chromium_org/chrome/utility/importer/
H A Dnss_decryptor_system_nss.cc3 // found in the LICENSE file.
19 // Deliberately leave the user db open, just in case we need to open more
40 // This method is based on some NSS code in
49 * 1.1 (the "License"); you may not use this file except in compliance with
71 * in which case the provisions of the GPL or the LGPL are applicable instead
149 SECItem *params, SECItem *in, SECItem *result)
161 paddedResult.len = in->len;
167 in->data, in->len);
215 * 'likely' that (1 in 25
147 pk11Decrypt(PK11SlotInfo *slot, PLArenaPool *arena, CK_MECHANISM_TYPE type, PK11SymKey *key, SECItem *params, SECItem *in, SECItem *result) argument
[all...]
/external/chromium_org/courgette/
H A Dstreams_unittest.cc3 // found in the LICENSE file.
63 courgette::SourceStreamSet in; local
64 bool can_init = in.Init(collected_buffer, collected_length);
68 bool can_read = in.stream(3)->ReadVarint32(&value);
71 EXPECT_EQ(0U, in.stream(3)->Remaining());
72 EXPECT_EQ(0U, in.stream(2)->Remaining());
100 courgette::SourceStreamSet in; local
101 bool can_init = in.Init(collected.Buffer(), collected.Length());
108 bool can_read = in.stream(id)->ReadVarint32(&value);
114 EXPECT_EQ(0U, in
139 courgette::SourceStream in; local
170 courgette::SourceStreamSet in; local
[all...]
/external/chromium_org/extensions/common/manifest_handlers/
H A Dexternally_connectable.cc3 // found in the LICENSE file.
47 std::vector<T> Sorted(const std::vector<T>& in) { argument
48 std::vector<T> out = in;
141 // This means that things that look like TLDs - the foobar in
/external/chromium_org/google_apis/drive/
H A Dtest_util.h3 // found in the LICENSE file.
50 // Removes |prefix| from |input| and stores the result in |output|. Returns
132 // in C++11.
148 // Simulates the std::move function in C++11. We use pointer here for argument,
151 static const T& Move(const T* in) { return *in; } argument
154 static T Move(T* in) { return in->Pass(); } argument
162 // types and movable types in the callback declaration.
173 // Copies the |in|'
175 CopyResultCallback( T1* out, typename CopyResultCallbackHelper<T1>::InType in) argument
[all...]
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
H A Dhost_resolver_test.cc3 // found in the LICENSE file.
6 #include <netinet/in.h>
89 struct sockaddr_in* in; local
103 in = (struct sockaddr_in*)ai->ai_addr;
104 ASSERT_EQ(expected_addr, in->sin_addr.s_addr);
112 struct sockaddr_in* in; local
122 in = (struct sockaddr_in*)ai->ai_addr;
124 ASSERT_EQ(expected_port, in->sin_port);
131 in = (struct sockaddr_in*)ai->ai_addr;
133 ASSERT_EQ(expected_port, in
146 struct sockaddr_in* in; local
192 struct sockaddr_in* in; local
245 struct sockaddr_in* in; local
295 sockaddr_in* in = (sockaddr_in*)current->ai_addr; local
315 sockaddr_in6* in = (sockaddr_in6*)current->ai_addr; local
[all...]
/external/chromium_org/net/base/
H A Descape_unittest.cc3 // found in the LICENSE file.
81 // Test all the values in we're supposed to be escaping.
88 std::string in; local
89 in.push_back(i);
90 std::string out = EscapeQueryParamValue(in, true);
96 } else if (no_escape.find(in) == std::string::npos) {
101 // No change for things in the no_escape list.
102 EXPECT_EQ(out, in);
200 input.push_back(0); // Also have a NULL in the input.
293 input.push_back(0); // Also have a NULL in th
[all...]
/external/chromium_org/net/cert/
H A Dasn1_util.cc3 // found in the LICENSE file.
11 bool ParseElement(base::StringPiece* in, argument
15 const uint8* data = reinterpret_cast<const uint8*>(in->data());
21 if (in->empty() && (tag_value & kOptional)) {
29 if (in->size() < 2)
55 if (in->size() < 2 + num_bytes)
67 // the length should have been encoded in short form. This distinguishes
76 if (in->size() < len)
79 *out = base::StringPiece(in->data(), len);
80 in
84 GetElement(base::StringPiece* in, unsigned tag_value, base::StringPiece* out) argument
[all...]
/external/chromium_org/net/http/
H A Dmd4.cc4 // WARNING: MD4 is cryptographically weak. Do not use MD4 except in NTLM
12 * 1.1 (the "License"); you may not use this file except in compliance with
33 * in which case the provisions of the GPL or the LGPL are applicable instead
77 static void w2b(Uint8 *out, const Uint32 *in, Uint32 len) argument
82 wp = in;
95 static void b2w(Uint32 *out, const Uint8 *in, Uint32 len) argument
100 bp = in;
101 bpend = in + len;
112 /* update state: data is 64 bytes in length */
159 /* compute number of complete 64-byte segments contained in inpu
[all...]
/external/chromium_org/net/quic/crypto/
H A Dcrypto_framer.cc3 // found in the LICENSE file.
57 CryptoHandshakeMessage* CryptoFramer::ParseMessage(StringPiece in) { argument
62 if (!framer.ProcessInput(in) || visitor.error() ||
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
H A DFEDropShadow.cpp10 * This library is distributed in the hope that it will be useful,
73 FilterEffect* in = inputEffect(0); local
83 FloatRect drawingRegion = drawingRegionOfInputImage(in->absolutePaintRect());
94 RefPtr<Image> image = in->asImageBuffer()->copyImage(DontCopyBackingStore);
H A DFETile.cpp11 * This library is distributed in the hope that it will be useful,
54 FilterEffect* in = inputEffect(0); local
60 setIsAlphaImage(in->isAlphaImage());
64 FloatRect tileRect = in->maxEffectRect();
67 if (in->filterEffectType() == FilterEffectTypeSourceInput) {
83 if (ImageBuffer* tileImageBuffer = in->asImageBuffer())
84 tileImageContext->drawImageBuffer(tileImageBuffer, IntRect(in->absolutePaintRect().location(), tileImageBuffer->size()));
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/
H A DIndexDataManager.cpp4 // found in the LICENSE file.
26 const GLubyte *in = static_cast<const GLubyte*>(input); local
31 out[i] = in[i];
47 const GLushort *in = static_cast<const GLushort*>(input); local
52 out[i] = in[i];

Completed in 712 milliseconds

<<21222324252627282930>>