HomeSort by relevance Sort by last modified time
    Searched defs:in (Results 476 - 500 of 3981) sorted by null

<<11121314151617181920>>

  /external/apache-http/src/org/apache/http/impl/conn/
LoggingSessionInputBuffer.java 12 * (the "License"); you may not use this file except in compliance with
17 * Unless required by applicable law or agreed to in writing, software
56 private final SessionInputBuffer in; field in class:LoggingSessionInputBuffer
63 * @param in The session input buffer.
66 public LoggingSessionInputBuffer(final SessionInputBuffer in, final Wire wire) {
68 this.in = in;
73 return this.in.isDataAvailable(timeout);
77 int l = this.in.read(b, off, len);
85 int l = this.in.read()
    [all...]
  /external/apache-http/src/org/apache/http/impl/io/
ContentLengthInputStream.java 12 * "License"); you may not use this file except in compliance
17 * Unless required by applicable law or agreed to in writing,
94 private SessionInputBuffer in = null; field in class:ContentLengthInputStream
99 * @param in The session input buffer to wrap
103 public ContentLengthInputStream(final SessionInputBuffer in, long contentLength) {
105 if (in == null) {
111 this.in = in;
152 return this.in.read();
179 int count = this.in.read(b, off, len)
    [all...]
  /external/boringssl/src/fipstools/
cavp_keywrap_test.cc 5 * copyright notice and this permission notice appear in all copies.
9 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
11 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
12 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
37 const std::vector<uint8_t> &in) {
45 out->resize(in.size() + 8);
47 AES_wrap_key(&aes_key, nullptr, out->data(), in.data(), in.size()) ==
52 out->resize(in.size() - 8);
54 AES_unwrap_key(&aes_key, nullptr, out->data(), in.data(), in.size()) =
68 std::vector<uint8_t> key, in, result; local
    [all...]
  /external/brotli/java/org/brotli/wrapper/dec/
decoder_jni.cc 14 /* A structure used to persist the decoder's state in between calls. */
37 * Cookie to address created decoder is stored in out_cookie. In case of failure
102 * @param input_length number of bytes provided in input or direct input;
124 const uint8_t* in = handle->input_start + handle->input_offset; local
128 handle->state, &in_size, &in, &out_size, nullptr, nullptr);
156 * any further invocation; null in case of error
  /external/curl/lib/
if2ip.c 10 * This software is licensed as described in the file COPYING, which
26 # include <netinet/in.h>
56 /* The last 3 #include files should be in this order */
148 /* We are interested only in interface addresses whose
213 struct in_addr in; local
245 memcpy(&in, &s->sin_addr, sizeof(in));
246 Curl_inet_ntop(s->sin_family, &in, buf, buf_size);
  /external/dtc/tests/
dtb_reverse.c 11 * This library is distributed in the hope that it will be useful, but
39 static void reverse_reservemap(void *in, void *out, int n)
45 n, fdt_num_mem_rsv(in));
47 if (n < (fdt_num_mem_rsv(in)-1))
48 reverse_reservemap(in, out, n+1);
50 CHECK(fdt_get_mem_rsv(in, n, &addr, &size));
56 static void reverse_properties(void *in, void *out, int offset)
63 data = fdt_getprop_by_offset(in, offset, &name, &len);
70 offset = fdt_next_property_offset(in, offset);
72 reverse_properties(in, out, offset)
134 void *in, *out; local
    [all...]
  /external/elfutils/libebl/
eblobjnote.c 19 or both in parallel, as here.
21 elfutils is distributed in the hope that it will be useful, but
159 Elf_Data in = local
187 if (elf32_xlatetom (&out, &in, ebl->data) != NULL)
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
ReserializingTestCollectionGenerator.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
58 ObjectInputStream in = new ObjectInputStream( local
60 return (T) in.readObject();
  /external/guava/guava-tests/test/com/google/common/io/
TestInputStream.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
40 public TestInputStream(InputStream in, TestOption... options) throws IOException {
41 this(in, Arrays.asList(options));
44 public TestInputStream(InputStream in, Iterable<TestOption> options) throws IOException {
45 super(checkNotNull(in));
58 return in.read();
65 return in.read(b, off, len);
72 return in.skip(n);
78 return options.contains(TestOption.AVAILABLE_ALWAYS_ZERO) ? 0 : in.available()
    [all...]
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/filter/targets/
Finally.java 23 * InputStream in = null;
25 * in = ...;
28 * if (in != null) {
29 * in.close();
35 Object in = null; local
37 in = open(t);
39 if (in != null) { // $line-example.1$
  /external/libbackup/src/com/google/android/libraries/backup/
BackupKeyPredicates.java 20 * annotation in one of the given classes. Assumes that the given annotation and classes are
28 return in(getAnnotatedFieldValues(annotation, klasses));
33 * with the given annotation in one of the given classes. The test used is equivalent to
81 public static BackupKeyPredicate in(final Collection<? extends String> collection) { method in class:BackupKeyPredicates
109 * predicate is evaluated in the order given, and the evaluation process stops as soon as an
124 * predicate is evaluated in the order given, and the evaluation process stops as soon as an
157 return in(keys);
  /external/libchrome/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);
92 string16 in = WideToUTF16(cases[i].to_escape); local
95 EscapeJSONString(in, false, &out)
104 string16 in = WideToUTF16(cases[0].to_escape); local
173 std::string in = std::string(cases[i].to_escape); local
    [all...]
  /external/libvncserver/examples/
pnmshow.c 18 FILE* in=stdin; local
26 in=fopen(argv[1],"rb");
27 if(!in) {
33 fgets(buffer,1024,in);
50 fgets(buffer,1024,in);
57 fgets(buffer,1024,in);
82 fread(rfbScreen->frameBuffer,width*bitsPerPixelInFile/8,height,in);
83 fclose(in);
  /external/libvpx/libvpx/vpx_dsp/arm/
highbd_idct32x32_135_add_neon.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.
73 // skip an awful lot of calculations. In fact, only the first 12 columns make
74 // the cut. None of the elements in the 13th, 14th, 15th or 16th columns are
76 // In C this does a single row of 32 for each call. Here it transposes the top
100 int32x4x2_t in[12], s1[32], s2[32], s3[32], s4[32], s5[32], s6[32], s7[32], local
103 load_8x8_s32_dual(input, &in[0], &in[1], &in[2], &in[3], &in[4], &in[5]
453 int32x4x2_t in[16], s1[32], s2[32], s3[32], s4[32], s5[32], s6[32], s7[32], local
    [all...]
idct32x32_135_add_neon.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.
66 // skip an awful lot of calculations. In fact, only the first 12 columns make
67 // the cut. None of the elements in the 13th, 14th, 15th or 16th columns are
69 // In C this does a single row of 32 for each call. Here it transposes the top
93 int16x8_t in[12], s1[32], s2[32], s3[32], s4[32], s5[32], s6[32], s7[32]; local
95 load_8x8_s16(input, &in[0], &in[1], &in[2], &in[3], &in[4], &in[5], &in[6]
377 int16x8_t in[16], s1[32], s2[32], s3[32], s4[32], s5[32], s6[32], s7[32], local
    [all...]
  /external/libvpx/libvpx/vpx_dsp/x86/
highbd_idct16x16_add_sse4.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.
20 static INLINE void highbd_idct16_4col_stage5(const __m128i *const in,
23 out[0] = _mm_add_epi32(in[0], in[3]);
24 out[1] = _mm_add_epi32(in[1], in[2])
204 __m128i out[16], *in; local
262 __m128i in[16], temp[16]; local
281 __m128i all[2][16], *in; local
310 __m128i in[16], l[16]; local
329 __m128i all[2][16], *in; local
    [all...]
  /external/llvm/examples/BrainF/
BrainFDriver.cpp 14 // with the head starting in the middle.
70 JIT("jit", cl::desc("Run program Just-In-Time"));
131 std::istream *in = &std::cin; local
133 in = new std::ifstream(InputFilename.c_str());
142 std::unique_ptr<Module> Mod(bf.parse(in, 65536, cf, Context)); // 64 KiB
143 if (in != &std::cin)
144 delete in;
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/rangecoder/
RangeDecoderFromBuffer.java 28 public void prepareInputBuffer(DataInputStream in, int len)
33 if (in.readUnsignedByte() != 0x00)
36 code = in.readInt();
41 in.readFully(buf, 0, end);
  /external/oj-libjdwp/src/share/back/
MethodImpl.c 9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
32 lineTable(PacketInputStream *in, PacketOutputStream *out)
43 (void)inStream_readClassRef(getEnv(), in); local
44 if (inStream_error(in)) {
47 method = inStream_readMethodID(in);
48 if (inStream_error(in)) {
94 doVariableTable(PacketInputStream *in, PacketOutputStream *out,
105 (void)inStream_readClassRef(getEnv(), in); local
183 (void)inStream_readClassRef(getEnv(), in); local
219 (void)inStream_readClassRef(getEnv(), in); local
    [all...]
  /external/okhttp/benchmarks/src/main/java/com/squareup/okhttp/benchmarks/
UrlConnection.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
64 InputStream in = urlConnection.getInputStream(); local
66 in = new GZIPInputStream(in);
69 long total = readAllAndClose(in);
73 System.out.println(String.format("Transferred % 8d bytes in %4d ms",
  /external/selinux/policycoreutils/hll/pp/
pp.c 9 * This program is distributed in the hope that it will be useful,
74 FILE *in = NULL; local
96 in = fopen(ifile, "rb");
97 if (in == NULL) {
104 in = stdin;
124 rc = sepol_ppfile_to_module_package(in, &mod_pkg);
128 fclose(in);
129 in = NULL;
156 if (in != NULL) {
157 fclose(in);
    [all...]
  /external/slf4j/slf4j-jdk14/src/test/java/org/slf4j/issue/
LoggerSerializationTest.java 7 * "Software"), to deal in the Software without restriction, including
14 * included in all copies or substantial portions of the Software.
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.
75 ObjectInputStream in = new ObjectInputStream(is); local
76 LoggerHolder lh2 = (LoggerHolder) in.readObject();
  /external/squashfs-tools/kernel/fs/squashfs/
block.c 12 * This program is distributed in the hope that it will be useful,
43 * Read the metadata block length, this is stored in the first two
76 * if a datablock is being read (the size is stored elsewhere in the
78 * the metadata block. A bit in the length field indicates if the block
79 * is stored uncompressed in the filesystem (usually because compression
231 int i, in, pg_offset = 0; local
240 in = min(bytes, msblk->devblksize - offset);
241 bytes -= in;
242 while (in) {
247 avail = min_t(int, in, PAGE_CACHE_SIZE
    [all...]
  /external/swiftshader/third_party/LLVM/examples/BrainF/
BrainFDriver.cpp 14 // with the head starting in the middle.
54 JIT("jit", cl::desc("Run program Just-In-Time"));
117 std::istream *in = &std::cin; local
119 in = new std::ifstream(InputFilename.c_str());
128 Module *mod = bf.parse(in, 65536, cf, Context); //64 KiB
129 if (in != &std::cin)
130 delete in;
  /external/syslinux/gpxe/src/crypto/
sha1extra.c 9 * This program is distributed in the hope that it will be useful, but
33 * @v data Further data that should be included in the PRF
38 * This is the PRF variant used by 802.11, defined in IEEE 802.11-2007
47 u8 in[strlen ( label ) + 1 + data_len + 1]; /* message to HMAC */ local
48 u8 *in_blknr; /* pointer to last byte of in, block number */
59 memcpy ( in, label, strlen ( label ) + 1 );
60 memcpy ( in + label_len + 1, data, data_len );
61 in_blknr = in + label_len + 1 + data_len;
67 hmac_update ( &sha1_algorithm, sha1_ctx, in, sizeof ( in ) );
99 u8 in[salt_len + 4]; \/* input buffer to first round *\/ local
    [all...]

Completed in 666 milliseconds

<<11121314151617181920>>