HomeSort by relevance Sort by last modified time
    Searched defs:in (Results 651 - 675 of 3217) sorted by null

<<21222324252627282930>>

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dh/
BCDHPublicKey.java 76 throw new IllegalArgumentException("invalid info structure in DH public key");
186 ObjectInputStream in)
189 in.defaultReadObject();
191 this.dhSpec = new DHParameterSpec((BigInteger)in.readObject(), (BigInteger)in.readObject(), in.readInt());
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dsa/
BCDSAPrivateKey.java 77 * 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());
BCDSAPublicKey.java 72 throw new IllegalArgumentException("invalid info structure in DSA public key");
154 ObjectInputStream in)
157 in.defaultReadObject();
159 this.dsaSpec = new DSAParameterSpec((BigInteger)in.readObject(), (BigInteger)in.readObject(), (BigInteger)in.readObject());
  /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/chromium-trace/catapult/telemetry/telemetry/internal/platform/profiler/
monsoon.py 3 # found in the LICENSE file.
18 import serial # pylint: disable=import-error,no-name-in-module namespace
19 import serial.tools.list_ports # pylint: disable=import-error,no-name-in-module namespace
58 for (port, desc, _) in serial.tools.list_ports.comports():
64 # Put the import in here to avoid doing it on unsupported platforms.
68 logging.error('device %s is in use', port)
73 self.StopDataCollection() # Just in case.
131 for k in status.keys():
201 for x in range(4, len(data) - 8, 8)]
213 for main, usb, _, voltage in data
    [all...]
  /external/chromium-trace/catapult/third_party/coverage/
setup.py 13 from distutils.core import Extension # pylint: disable=no-name-in-module, import-error namespace
14 from distutils.command.build_ext import build_ext # pylint: disable=no-name-in-module, import-error namespace
15 from distutils import errors # pylint: disable=no-name-in-module namespace
42 # Execute the code in version.py.
52 elif version_info[3] in ['beta', 'candidate']:
139 if "'path'" in str(err): # works with both py 2/3
152 if '__pypy__' in sys.builtin_module_names:
  /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/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...]

Completed in 4624 milliseconds

<<21222324252627282930>>