/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/rsa/ |
BCRSAPrivateKey.java | 131 ObjectInputStream in) 134 in.defaultReadObject();
|
BCRSAPublicKey.java | 73 throw new IllegalArgumentException("invalid info structure in RSA public key"); 148 ObjectInputStream in) 151 in.defaultReadObject(); 155 algorithmIdentifier = AlgorithmIdentifier.getInstance(in.readObject());
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/util/ |
BaseCipherSpi.java | 180 PrivateKeyInfo in = PrivateKeyInfo.getInstance(encoded); local 182 PrivateKey privKey = BouncyCastleProvider.getPrivateKey(in); 190 throw new InvalidKeyException("algorithm " + in.getPrivateKeyAlgorithm().getAlgorithm() + " not supported");
|
/external/clang/test/SemaTemplate/ |
instantiate-init.cpp | 61 // cause instantiation is in an unevaluated context, but one requiring its 104 Description<int*>::data // expected-note{{in instantiation of static data member 'PR7985::Description<int *>::data' requested here}} 112 // Ensure that in-class direct-initialization is instantiated as 118 // expected-note@+1 {{in instantiation of default member initializer}} 133 char in[4] = {0,0,0,0}; local 134 fun(in);
|
/external/curl/lib/ |
curl_addrinfo.c | 10 * This software is licensed as described in the file COPYING, which 28 # include <netinet/in.h> 41 # include <in.h> 103 * There should be no single call to system's getaddrinfo() in the 187 /* add this element last in the return list */ 236 * Curl_addrinfo defined in "lib/curl_addrinfo.h" 250 * hostent defined in <netdb.h> 376 * This function takes an internet address, in binary form, as input parameter 378 * returns a Curl_addrinfo chain filled in correctly with information for the 460 struct in_addr in; local [all...] |
/external/dagger2/compiler/src/test/java/dagger/internal/codegen/ |
SubcomponentBuilderValidationTest.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 67 .in(componentFile); method 101 .in(componentFile); method 139 .in(childComponentFile); method 171 .in(childComponentFile); 187 .in(builder); 217 .in(childComponentFile); 236 .in(childComponentFile); 255 .in(childComponentFile) [all...] |
/external/dhcpcd-6.8.2/dbus/ |
dbus-dict.c | 6 * Redistribution and use in source and binary forms, with or without 11 * 2. Redistributions in binary form must reproduce the above copyright 12 * notice, this list of conditions and the following disclaimer in the 18 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 94 struct in_addr in; local 148 if (strchr(data, '.') != NULL && inet_aton(data, &in) == 1) 149 u32 = in.s_addr; 198 /* sscanf("1z", "%2hhx", &u8) will store 0x01 in u8 an 223 struct in_addr in; local [all...] |
/external/e2fsprogs/lib/ext2fs/ |
dirhash.c | 21 * Keyed 32-bit hash function using TEA in a Davis-Meyer function 33 static void TEA_transform(__u32 buf[4], __u32 const in[]) 37 __u32 a = in[0], b = in[1], c = in[2], d = in[3]; 58 * good macro practice, in favor of extra legibility. 70 static void halfMD4Transform (__u32 buf[4], __u32 const in[]) 75 ROUND(F, a, b, c, d, in[0] + K1, 3); 76 ROUND(F, d, a, b, c, in[1] + K1, 7) 198 __u32 in[8], buf[4]; local [all...] |
/external/e2fsprogs/util/ |
subst.c | 91 * The substitution variable must all be in the of [0-9A-Za-z_]. 305 FILE *in, *out; local 315 in = fopen(optarg, "r"); 316 if (!in) { 320 parse_config_file(in); 321 fclose(in); 336 in = fopen(argv[optind], "r"); 337 if (!in) { 343 in = stdin; 364 while (!feof(in)) { [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/ |
CvsDiffParser.java | 80 BufferedReader in = null; local 84 in = new BufferedReader(new FileReader(mapDiffFile)); 90 while ((aLine = in.readLine()) != null) { 97 //verification for actual changes in tags base.plugin 98 while ((aLine = in.readLine()) != null && !aLine.startsWith("===")){
|
/external/eigen/unsupported/test/ |
FFTW.cpp | 122 // cout << "freqBuf=" << freqBuf[i] << " in2=" << tbuf3[i] << " - in=" << tbuf[i] << " => " << (tbuf3[i] - tbuf[i] ) << endl; 213 VectorXf in; local 215 in.setRandom( len ); 221 fft.fwd(out1,in); 222 out2 = fft.fwd(in); 225 VERIFY( (in1-in).norm() < test_precision<float>() );
|
/external/guava/guava-gwt/test-super/com/google/common/collect/testing/super/com/google/common/collect/testing/testers/ |
CollectionToArrayTester.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 49 * <tt>toArray(new Object[0])</tt> is identical in function to 80 Object[] in = new Object[0]; local 81 Object[] array = collection.toArray(in);
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/ |
CollectionToArrayTester.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 52 * <tt>toArray(new Object[0])</tt> is identical in function to 83 Object[] in = new Object[0]; local 84 Object[] array = collection.toArray(in);
|
/external/guava/guava-tests/test/com/google/common/hash/ |
HashingInputStreamTest.java | 5 * in compliance with the License. You may obtain a copy of the License at 9 * Unless required by applicable law or agreed to in writing, software distributed under the License 53 HashingInputStream in = new HashingInputStream(hashFunction, buffer); local 55 int b = in.read(); 66 HashingInputStream in = new HashingInputStream(hashFunction, buffer); local 69 int numOfByteRead = in.read(buf, 0, buf.length); 83 HashingInputStream in = new HashingInputStream(hashFunction, buffer); local 86 int numOfByteRead = in.read(buf, 0, 3); 104 HashingInputStream in = new HashingInputStream(hashFunction, buffer); local 106 int numOfByteRead = in.read(buf, 0, 100) 118 HashingInputStream in = new HashingInputStream(Hashing.md5(), buffer); local 129 HashingInputStream in = new HashingInputStream(Hashing.md5(), buffer); local 141 HashingInputStream in = new HashingInputStream(Hashing.md5(), buffer); local [all...] |
/external/guice/core/src/com/google/inject/internal/ |
AbstractBindingBuilder.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 88 public void in(final Class<? extends Annotation> scopeAnnotation) { method in class:AbstractBindingBuilder 94 public void in(final Scope scope) { method in class:AbstractBindingBuilder
|
/external/icu/icu4c/source/test/intltest/ |
punyref.c | 24 and distribute it in any way that does not diminish the rights 37 /* Implementation (would normally go in its own .c file): */ 60 /* point (for use in representing integers) in the range 0 to */ 70 /* (when used for representing integers) is d, which needs to be in */ 72 /* nonzero, in which case the uppercase form is used. The behavior */ 223 b, j, in, oldi, w, k, digit, t; local 248 for (in = b > 0 ? b + 1 : 0; in < input_length; ++out) { 250 /* in is the index of the next character to be consumed, and * [all...] |
/external/icu/icu4j/perf-tests/src/com/ibm/icu/dev/test/perf/ |
ConverterPerformanceTest.java | 35 // read in the input file, being careful with a possible BOM 36 FileInputStream in = new FileInputStream(fileName); local 37 BOMFreeReader reader = new BOMFreeReader(in, encoding);
|
/external/iptables/include/linux/ |
netfilter.h | 65 struct in_addr in; member in union:nf_inet_addr
|
/external/javassist/src/main/javassist/ |
Loader.java | 6 * 1.1 (the "License"); you may not use this file except in compliance with 66 * Then it calls <code>main()</code> in <code>MyApp</code> with arguments 121 * and classes included in package <code>java.*</code> and 198 * in that package and the sub packages are delegated. 261 * Loads a class and calls <code>main()</code> in that class. 282 * Loads a class and calls <code>main()</code> in that class. 351 InputStream in = this.getClass().getResourceAsStream(jarname); local 352 if (in == null) 355 classfile = ClassPoolTail.readStream(in);
|
/external/javassist/src/test/test/javassist/proxy/ |
ProxySerializationTest.java | 14 * reuses classes located in the proxy cache. This tests the fixes provided for JASSIST-42 and JASSIST-97. 42 ObjectInputStream in = new ObjectInputStream(bis); local 43 TestClass newProxy = (TestClass)in.readObject(); 69 ProxyObjectInputStream in = new ProxyObjectInputStream(bis); local 70 TestClass newProxy = (TestClass)in.readObject();
|
/external/jetty/src/java/org/eclipse/jetty/util/ |
IO.java | 40 * Provides stream handling utilities in 72 InputStream in; field in class:IO.Job 77 Job(InputStream in,OutputStream out) 79 this.in=in; 86 this.in=null; 99 if (in!=null) 100 copy(in,out,-1); 122 /** Copy Stream in to Stream out until EOF or exception. 123 * in own threa [all...] |
/external/jetty/src/java/org/eclipse/jetty/util/resource/ |
URLResource.java | 215 InputStream in = _in; local 217 return in; 263 * Returns a list of resource names contained in the given resource
|
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/ |
VariableTranslator.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 36 * Translates a variable name (e.g. search.results.3.title) into the Java code for use as a key in 55 * @param csVariable Variable node in template's AST. 99 * Inserts dots between each component in the path. 103 private List<JavaExpression> joinComponentsWithDots(List<JavaExpression> in) { 104 List<JavaExpression> out = new ArrayList<JavaExpression>(in.size() * 2); 105 for (JavaExpression component : in) { 121 private List<JavaExpression> combineAdjacentStrings(List<JavaExpression> in) { 122 assert !in.isEmpty() [all...] |
/external/jsilver/src/com/google/clearsilver/jsilver/functions/html/ |
TextHtmlFunction.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 33 * Note this implementation differs from ClearSilver, in that it html escapes the contents of links 38 // These regular expressions are adapted from html.c in the ClearSilver 54 // Pattern to match any string in the input that is linkable. 92 public void filter(String in, Appendable out) throws IOException { 94 boolean hasAsciiArt = hasAsciiArt(in); 101 splitAndConvert(in, out); 113 private void splitAndConvert(String in, Appendable out) throws IOException { 114 Matcher matcher = LINKABLES.matcher(in); [all...] |
/external/libchrome/base/ |
md5.cc | 3 // 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 uint8_t in[64]; member in struct:__anon15729::Context 58 /* This is the central step in the MD5 algorithm. */ 67 void MD5Transform(uint32_t buf[4], const uint32_t in[16]) { 75 MD5STEP(F1, a, b, c, d, in[0] + 0xd76aa478, 7); 76 MD5STEP(F1, d, a, b, c, in[1] + 0xe8c7b756, 12); 77 MD5STEP(F1, c, d, a, b, in[2] + 0x242070db, 17) [all...] |