HomeSort by relevance Sort by last modified time
    Searched defs:in (Results 276 - 300 of 3057) sorted by null

<<11121314151617181920>>

  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/asn1/der/
BooleanTest.java 6 * (the "License"); you may not use this file except in compliance with
11 * Unless required by applicable law or agreed to in writing, software
52 DerInputStream in = new DerInputStream(eFalse); local
53 assertEquals("Decoding false value", Boolean.FALSE, asn1.decode(in));
56 in = new DerInputStream(eTrue);
57 assertEquals("Decoding true value", Boolean.TRUE, asn1.decode(in));
80 DerInputStream in = new DerInputStream(invalid[i]); local
81 ASN1Boolean.getInstance().decode(in);
OidTest.java 6 * (the "License"); you may not use this file except in compliance with
11 * Unless required by applicable law or agreed to in writing, software
155 // wrong content: is not encoded in fewest number of bytes
161 DerInputStream in = new DerInputStream(invalid[i]); local
162 ASN1Oid.getInstance().decode(in);
  /external/apache-http/src/org/apache/http/impl/io/
IdentityInputStream.java 12 * "License"); you may not use this file except in compliance
17 * Unless required by applicable law or agreed to in writing,
55 private final SessionInputBuffer in; field in class:IdentityInputStream
59 public IdentityInputStream(final SessionInputBuffer in) {
61 if (in == null) {
64 this.in = in;
68 if (!this.closed && this.in.isDataAvailable(10)) {
83 return this.in.read();
91 return this.in.read(b, off, len)
    [all...]
  /external/autotest/server/
autoserv_utils.py 4 # found in the LICENSE file.
42 @param results_directory: Absolute path to directory in which to deposit
57 in autoserv console logs.
151 raise ImportError('Unable to import drone_manager in autoserv_utils') namespace
  /external/boringssl/src/crypto/x509/
by_file.c 11 * apply to all code found in this distribution, be it the RC4, RSA,
16 * Copyright remains Eric Young's, and as such any Copyright notices in
18 * If this package is used in a product, Eric Young should be given attribution
20 * This can be in the form of a textual message at program startup or
21 * in documentation (online or textual) provided with the package.
23 * Redistribution and use in source and binary forms, with or without
28 * 2. Redistributions in binary form must reproduce the above copyright
29 * notice, this list of conditions and the following disclaimer in the
44 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
48 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRIC
131 BIO *in=NULL; local
197 BIO *in=NULL; local
264 BIO *in; local
    [all...]
x509cset.c 6 * Redistribution and use in source and binary forms, with or without
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in
21 * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
29 * nor may "OpenSSL" appear in their names without prior written
35 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
40 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
45 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
47 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
83 ASN1_TIME *in; local
101 ASN1_TIME *in; local
140 ASN1_TIME *in; local
158 ASN1_INTEGER *in; local
    [all...]
  /external/curl/lib/
hostip4.c 10 * This software is licensed as described in the file COPYING, which
26 #include <netinet/in.h>
35 #include <in.h>
84 * detect which one this platform supports in the configure script and set up
130 struct in_addr in; local
133 if(Curl_inet_pton(AF_INET, hostname, &in) > 0)
135 return Curl_ip2addr(AF_INET, &in, hostname, port);
166 * The clearing of the buffer is a workaround for a gethostbyname_r bug in
217 * gethostbyname_r() in glibc:
219 * In glibc 2.2.5 the interface is different (this has also bee
    [all...]
  /external/curl/tests/unit/
unit1396.c 10 * This software is licensed as described in the file COPYING, which
38 const char *in; member in struct:test
80 for(i=0; list1[i].in; i++) {
83 list1[i].in, list1[i].inlen,
96 for(i=0; list2[i].in; i++) {
98 char *out = curl_easy_escape(hnd, list2[i].in, list2[i].inlen);
  /external/flac/libFLAC/include/private/
md5.h 7 * written by Colin Plumb in 1993, no copyright is claimed.
8 * This code is in the public domain; do with it what you wish.
23 * Still in the public domain.
26 * Still in the public domain, with no warranty.
38 FLAC__uint32 in[16]; member in struct:__anon12093
  /external/guava/guava/src/com/google/common/io/
CountingInputStream.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
42 * @param in the input stream to be wrapped
44 public CountingInputStream(@Nullable InputStream in) {
45 super(in);
54 int result = in.read();
62 int result = in.read(b, off, len);
70 long result = in.skip(n);
76 in.mark(readlimit);
82 if (!in.markSupported())
    [all...]
  /external/javassist/src/main/javassist/tools/
Dump.java 6 * 1.1 (the "License"); you may not use this file except in compliance with
23 * Dump is a tool for viewing the class definition in the given
47 DataInputStream in = new DataInputStream( local
49 ClassFile w = new ClassFile(in);
  /external/jcommander/src/main/java/com/beust/jcommander/internal/
DefaultConsole.java 21 // Do not close the readers since System.in should not be closed
22 InputStreamReader isr = new InputStreamReader(System.in);
23 BufferedReader in = new BufferedReader(isr); local
24 String result = in.readLine();
  /external/libcxx/src/
hash.cpp 23 // handle all next_prime(i) for i in [1, 210), special case 0
138 // some potential prime numbers are not prime. In an ideal world, all potential
183 // If n is small enough, search in small_primes
189 // Start searching list of potential primes: L * k0 + indices[in]
194 size_t in = static_cast<size_t>(std::lower_bound(indices, indices + M, n - k0 * L) local
196 n = L * k0 + indices[in];
201 // 2. The i > sqrt(n), in which case n is prime.
561 if (++in == M)
564 in = 0;
566 n = L * k0 + indices[in];
    [all...]
  /external/libdrm/tests/
auth.c 6 * to deal in the Software without restriction, including without limitation
12 * paragraph) shall be included in all copies or substantial portions of the
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
44 unsigned char in; local
46 ret = read(commfd[pipe], &in, 1);
49 event = in;
  /external/libopus/tests/
test_opus_padding.c 4 Redistribution and use in source and binary forms, with or without
11 - Redistributions in binary form must reproduce the above copyright
12 notice, this list of conditions and the following disclaimer in the
18 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
23 LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
24 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
28 /* Check for overflow in reading the padding length.
48 unsigned char *in = malloc(PACKETSIZE); local
52 if (!in || !out) {
56 in[0] = 0xff
    [all...]
  /external/libvpx/libvpx/vp9/common/x86/
vp9_idct_intrin_sse2.c 5 * that can be found in the LICENSE file in the root of the source
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
17 __m128i in[2]; local
21 in[0] = load_input_data(input);
22 in[1] = load_input_data(input + 8);
26 idct4_sse2(in);
27 idct4_sse2(in);
82 __m128i in[8]; local
    [all...]
  /external/libweave/third_party/chromium/base/json/
string_escape_unittest.cc 3 // found in the LICENSE file.
52 std::string in = cases[0].to_escape; local
54 EscapeJSONString(in, false, &out);
59 EscapeJSONString(in, true, &out_quoted);
64 // now try with a NULL in the string
67 in = null_prepend + in;
71 EscapeJSONString(in, false, &out);
86 std::string in = std::string(cases[i].to_escape); local
87 EXPECT_FALSE(IsStringUTF8(in));
    [all...]
  /external/llvm/include/llvm/Support/
SwapByteOrder.h 30 // The DLL version of the runtime lacks these functions (bug!?), but in a
101 } in, out; local
102 in.f = C;
103 out.i = SwapByteOrder_32(in.i);
111 } in, out; local
112 in.d = C;
113 out.i = SwapByteOrder_64(in.i);
  /external/lzma/Java/Tukaani/src/
XZSeekDecDemo.java 14 * Decompresses a .xz file in random access mode to standard output.
28 SeekableXZInputStream in = new SeekableXZInputStream(file); local
30 System.err.println("Number of XZ Streams: " + in.getStreamCount());
31 System.err.println("Number of XZ Blocks: " + in.getBlockCount());
33 System.err.println("Uncompressed size: " + in.length() + " B");
36 + in.getLargestBlockSize() + " B");
39 int checkTypes = in.getCheckTypes();
46 + in.getIndexMemoryUsage() + " KiB");
51 while ((size = in.read(buf)) != -1)
58 in.seek(pos)
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nv20_state_frag.c 7 * "Software"), to deal in the Software without restriction, including
14 * next paragraph) shall be included in all copies or substantial
20 * IN NO EVENT SHALL THE COPYRIGHT OWNER(S) AND/OR ITS SUPPLIERS BE
21 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
22 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
23 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
60 uint64_t in; local
63 nv10_get_final_combiner(ctx, &in, &n);
66 PUSH_DATA (push, in);
67 PUSH_DATA (push, in >> 32)
    [all...]
  /external/nanohttpd/websocket/src/main/java/fi/iki/elonen/samples/echo/
EchoSocketSample.java 9 * Redistribution and use in source and binary forms, with or without modification,
15 * 2. Redistributions in binary form must reproduce the above copyright notice,
16 * this list of conditions and the following disclaimer in the documentation
26 * IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
30 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
31 * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
48 System.in.read();
  /external/oauth/core/src/main/java/net/oauth/http/
HttpMessageDecoder.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
65 private HttpMessageDecoder(HttpResponseMessage in, String encoding)
67 super(in.method, in.url);
68 this.headers.addAll(in.headers);
71 InputStream body = in.getBody();
82 this.in = in;
85 private final HttpResponseMessage in; field in class:HttpMessageDecoder
    [all...]
  /external/okhttp/benchmarks/src/main/java/com/squareup/okhttp/benchmarks/
SynchronousHttpClient.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
44 static long readAllAndClose(InputStream in) throws IOException {
47 for (int count; (count = in.read(buffer)) != -1; ) {
50 in.close();
  /external/pdfium/third_party/lcms2-2.6/src/
cmshalf.c 8 // to deal in the Software without restriction, including without limitation
13 // The above copyright notice and this permission notice shall be included in
19 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
30 // This code is inspired in the paper "Fast Half Float Conversions"
523 } in; local
    [all...]
  /external/selinux/policycoreutils/hll/pp/
pp.c 9 * This program is distributed in the hope that it will be useful,
71 FILE *in = NULL; local
92 in = fopen(argv[1], "rb");
93 if (in == NULL) {
99 in = stdin;
118 rc = sepol_ppfile_to_module_package(in, &mod_pkg);
122 fclose(in);
123 in = NULL;
131 if (in != NULL) {
132 fclose(in);
    [all...]

Completed in 359 milliseconds

<<11121314151617181920>>