/build/kati/ |
strutil.h | 4 // you may not use this file except in compliance with the License. 9 // Unless required by applicable law or agreed to in writing, software 31 return in != r.in || s != r.s || i != r.i; 34 const StringPiece* in; member in struct:WordScanner::Iterator 39 explicit WordScanner(StringPiece in);
|
/development/samples/RenderScript/HelloCompute/src/com/example/android/rs/hellocompute/ |
HelloCompute.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 45 ImageView in = (ImageView) findViewById(R.id.displayin); local 46 in.setImageBitmap(mBitmapIn);
|
/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/crypto/ |
mem.c | 10 * apply to all code found in this distribution, be it the RC4, RSA, 15 * Copyright remains Eric Young's, and as such any Copyright notices in 17 * If this package is used in a product, Eric Young should be given attribution 19 * This can be in the form of a textual message at program startup or 20 * in documentation (online or textual) provided with the package. 22 * Redistribution and use in source and binary forms, with or without 27 * 2. Redistributions in binary form must reproduce the above copyright 28 * notice, this list of conditions and the following disclaimer in the 43 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 47 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRIC 137 const uint8_t *in = ptr; local [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/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 */ 146 /* We are interested only in interface addresses whose 211 struct in_addr in; local 243 memcpy(&in, &s->sin_addr, sizeof(in)); 244 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/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/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/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/openssh/openbsd-compat/ |
fake-rfc2553.c | 5 * Redistribution and use in source and binary forms, with or without 10 * 2. Redistributions in binary form must reproduce the above copyright 11 * notice, this list of conditions and the following disclaimer in the 20 * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE 24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 43 #include <netinet/in.h> 160 struct in_addr in; local 183 if (hostname && inet_aton(hostname, &in) != 0) 184 addr = in.s_addr 215 struct in_addr *in = (struct in_addr *)hp->h_addr_list[i]; local [all...] |
/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...] |