/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/benchmarks/ |
ContainerBenchmarks.hpp | 13 auto in = gen(st.range(0)); local 14 const auto begin = in.begin(); 15 const auto end = in.end(); 16 benchmark::DoNotOptimize(&in); 25 auto in = gen(st.range(0)); local 26 const auto end = in.end(); 29 for (auto it = in.begin(); it != end; ++it) { 38 auto in = gen(st.range(0)); local 39 const auto end = in.end(); 43 for (auto it = in.begin(); it != end; ++it) 53 auto in = gen(st.range(0)); local 69 auto in = gen(st.range(0)); local 84 auto in = gen(st.range(0)); local 99 auto in = gen(st.range(0)); local [all...] |
filesystem.bench.cpp | 15 const auto in = gen(st.range(0)); local 17 for (auto& Part : in) 32 const auto in = gen(st.range(0)); local 34 for (auto& Part : in) 50 const auto in = gen(st.range(0)); local 52 for (auto& Part : in) 81 const auto in = gen(st.range(0)); local 83 for (auto& Part : in) 100 const auto in = gen(st.range(0)); local 102 for (auto& Part : in) 119 const auto in = gen(st.range(0)); local [all...] |
/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/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/test/ |
idct_test.cc | 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. 121 int16_t *in = input->TopLeftPixel(); local 124 in[y * input->stride() + x] = y * 4 + x;
|
/external/libvpx/libvpx/vpx_dsp/arm/ |
highbd_idct32x32_34_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. 21 // an awful lot of calculations. In fact, only the first 6 columns make the cut. 22 // None of the elements in the 7th or 8th column are used so it skips any calls 24 // In C this does a single row of 32 for each call. Here it transposes the top 39 int32x4x2_t in[8], s1[32], s2[32], s3[32]; local 41 in[0].val[0] = vld1q_s32(input) 375 int32x4x2_t in[8], s1[32], s2[32], s3[32], out[32]; local [all...] |
idct32x32_34_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. 22 // an awful lot of calculations. In fact, only the first 6 columns make the cut. 23 // None of the elements in the 7th or 8th column are used so it skips any calls 25 // In C this does a single row of 32 for each call. Here it transposes the top 40 int16x8_t in[8], s1[32], s2[32], s3[32]; local 42 in[0] = load_tran_low_to_s16q(input) 271 int16x8_t in[8], s1[32], s2[32], s3[32], out[32]; local [all...] |
/external/llvm/include/llvm/Support/ |
SwapByteOrder.h | 29 // The DLL version of the runtime lacks these functions (bug!?), but in a 100 } in, out; local 101 in.f = C; 102 out.i = SwapByteOrder_32(in.i); 110 } in, out; local 111 in.d = C; 112 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/gallium/drivers/freedreno/ir3/ |
ir3_depth.c | 8 * to deal in the Software without restriction, including without limitation 14 * paragraph) shall be included in all copies or substantial portions of the 19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 43 * foreach (src in instr->regs[1..n]) 89 /* remove from existing spot in list: */ 142 /* mark it, in case it is input, so we can 187 struct ir3_instruction *in = ir->inputs[i] local [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/mockito/src/main/java/org/mockito/internal/util/collections/ |
Iterables.java | 20 public static <T> Iterable<T> toIterable(Enumeration<T> in) { 22 while(in.hasMoreElements()) { 23 out.add(in.nextElement());
|
/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/openssh/openbsd-compat/ |
bindresvport.c | 10 * Redistribution and use in source and binary forms, with or without 15 * 2. Redistributions in binary form must reproduce the above copyright 16 * notice, this list of conditions and the following disclaimer in the 22 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 39 #include <netinet/in.h> 57 struct sockaddr_in *in; local 78 in = (struct sockaddr_in *)sa; 80 portp = &in->sin_port [all...] |
/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/python/cpython2/Modules/ |
yuvconvert.c | 7 struct yuv411 *in = data; local 14 YUV422_Y0(*out_even) = YUV411_Y00(*in); 15 YUV422_U0(*out_even) = YUV411_U00(*in); 16 YUV422_V0(*out_even) = YUV411_V00(*in); 17 YUV422_Y1(*out_even) = YUV411_Y01(*in); 19 YUV422_Y0(*out_even) = YUV411_Y02(*in); 20 YUV422_U0(*out_even) = YUV411_U02(*in); 21 YUV422_V0(*out_even) = YUV411_V02(*in); 22 YUV422_Y1(*out_even) = YUV411_Y03(*in); 24 YUV422_Y0(*out_odd) = YUV411_Y10(*in); [all...] |
/external/selinux/semodule-utils/semodule_package/ |
semodule_unpackage.c | 44 struct sepol_policy_file *in, *out; local 61 if (file_to_policy_file(ppfile, &in, "r")) 69 if (sepol_module_package_read(pkg, in, 0) == -1) { 83 sepol_policy_file_free(in);
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
SwapByteOrder.h | 32 // The DLL version of the runtime lacks these functions (bug!?), but in a 103 } in, out; local 104 in.f = C; 105 out.i = SwapByteOrder_32(in.i); 113 } in, out; local 114 in.d = C; 115 out.i = SwapByteOrder_64(in.i);
|
/external/toybox/toys/other/ |
dos2unix.c | 42 int len, in, out; local 48 for (in = out = 0; in < len; in++) { 49 char x = toybuf[in+sizeof(toybuf)/2]; 51 // Drop \r only if followed by \n in dos2unix mode 55 // Add \r only if \n not after \r in unix2dos mode
|
/external/toybox/toys/posix/ |
uudecode.c | 17 -o write to OUTFILE instead of filename in header 49 char *in, *out; local 60 in = out = line; 61 if (!m) olen = (*(in++) - 32) & 0x3f; 73 if (!(c = *(in++))) goto line_done;
|
uuencode.c | 15 Uuencode stdin (or file) to stdout, with encode-filename in the output. 35 char *in; local 40 in = buf; 42 for (in = buf; in-buf < i; ) { 43 int j, x, bytes = i - (in-buf); 50 if (j < bytes) x |= (*(in++) & 0x0ff) << (8*(2-j));
|