HomeSort by relevance Sort by last modified time
    Searched defs:in (Results 1226 - 1250 of 3847) sorted by null

<<41424344454647484950>>

  /external/jline/
jline-1.0.jar 
  /external/jline/src/src/main/java/jline/
WindowsTerminal.java 5 * BSD license in the documentation provided with this software.
15 * Terminal implementation for Microsoft Windows. Terminal initialization in
29 * the specified {@link InputStream} is {@link System#in} or a wrapper around
30 * {@link FileDescriptor#in}, and if so, will bypass the character reading to
31 * directly invoke the readc() method in the JNI library. This is so the class
33 * the {@link System#in} stream. Using JNI reading can be bypassed by setting
58 * CTRL+C is processed by the system and is not placed in the input buffer.
60 * control keys are processed by the system and are not returned in the
69 * reported in the console's input buffee. Information about these events
79 * and button presses are placed in the input buffer. These events ar
289 InputStream in = new BufferedInputStream(WindowsTerminal.class.getResourceAsStream(name + bits + ".dll")); local
    [all...]
  /external/kernel-headers/original/uapi/linux/
auto_dev-ioctl.h 73 } in; member in union:args_ismountpoint::__anon21271
91 __u32 size; /* total size of data passed in
114 static inline void init_autofs_dev_ioctl(struct autofs_dev_ioctl *in)
116 memset(in, 0, sizeof(struct autofs_dev_ioctl));
117 in->ver_major = AUTOFS_DEV_IOCTL_VERSION_MAJOR;
118 in->ver_minor = AUTOFS_DEV_IOCTL_VERSION_MINOR;
119 in->size = sizeof(struct autofs_dev_ioctl);
120 in->ioctlfd = -1;
  /external/kernel-headers/original/uapi/linux/netfilter_bridge/
ebtables.h 45 /* nr of rules in the table */
61 /* nr of rules in the table */
162 /* the physical in-dev */
163 char in[IFNAMSIZ]; member in struct:ebt_entry
164 /* the logical in-dev */
  /external/libcxx/src/
ios.cpp 123 const ios_base::openmode ios_base::in; member in class:ios_base
  /external/libjpeg-turbo/simd/
jdsample-altivec.c 7 * warranty. In no event will the authors be held liable for any damages
16 * in a product, an acknowledgment in the product documentation would be
319 __vector unsigned char in, inl, inh; local
328 in = vec_ld(0, inptr);
329 inl = vec_mergeh(in, in);
330 inh = vec_mergel(in, in);
336 in = vec_ld(16, inptr)
358 __vector unsigned char in, inl, inh; local
    [all...]
  /external/libopus/src/
mlp_train.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 FOUNDATION OR
23 LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
24 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
140 float *in, *out; local
141 in = inputs+s*inDim;
147 sum += W0[i*(inDim+1)+j+1]*in[j];
178 W0_grad[i*(inDim+1)+j+1] += grad*in[j]
    [all...]
  /external/libvpx/libvpx/tools/
tiny_ssim.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.
162 void close_input_file(input_file_t *in) {
163 if (in->file) fclose(in->file);
164 if (in->type == Y4M) {
165 vpx_img_free(&in->img)
202 input_file_t in[2]; local
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_resize.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.
386 const uint8_t *const in = (s == 0 ? input : out); local
392 down2_symodd(in, filteredlength, out);
394 down2_symeven(in, filteredlength, out);
673 const uint16_t *const in = (s == 0 ? input : out); local
679 highbd_down2_symodd(in, filteredlength, out, bd)
    [all...]
  /external/libvpx/libvpx/vpx_dsp/arm/
idct_neon.h 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.
44 // Use saturating add/sub to avoid overflow in 2nd pass in high bit-depth
87 // resulting in a right shift by 15. By multiplying the constant first that
98 // In both add_ and it's pair, sub_, the input for well-formed streams will be
103 // In order to match existing behavior and intentionally out of range tests
374 int16x8_t in[4]; local
    [all...]
  /external/libxml2/
xzlib.c 55 uint64_t pos; /* current position in uncompressed data */
58 unsigned char *in; /* input buffer */ member in struct:__anon25022
75 lzma_stream strm; /* stream structure in-place (not a pointer) */
81 z_stream zstrm; /* stream structure in-place (not a pointer) */
265 if (xz_load(state, state->in, state->size, &tmp) == -1) {
270 strm->next_in = state->in;
294 return strm->avail_in >= 6 && memcmp(state->in, "\3757zXZ", 6) == 0;
312 if (lzma_properties_decode(&filter, NULL, state->in, 5) != LZMA_OK)
343 uncompressed_size |= (uint64_t) (state->in[5 + i]) << (i * 8);
364 in *ret. Otherwise -1 is returned and *ret is not modified. *
    [all...]
  /external/mesa3d/src/gallium/auxiliary/translate/
translate_generic.c 8 * "Software"), to deal in the Software without restriction, including
15 * next paragraph) shall be included in all copies or substantial portions
21 * IN NO EVENT SHALL VMWARE AND/OR ITS SUPPLIERS BE LIABLE FOR
22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
69 * in this case, u_format is used to do a full conversion
71 * this value is set to the format size in bytes if output_format == input_format or for 32-bit instance ids:
72 * in this case, memcpy is used to copy this amount of bytes
99 SRCTYPE *in = (SRCTYPE *)attrib;
241 float *in = (float *)attrib; local
252 float *in = (float *)attrib; local
    [all...]
  /external/mesa3d/src/gallium/drivers/nouveau/codegen/
nv50_ir_ssa.cpp 6 * to deal in the Software without restriction, including without limitation
11 * The above copyright notice and this permission notice shall be included in
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20 * OTHER DEALINGS IN THE SOFTWARE.
272 BasicBlock *in = BasicBlock::get(ei.getNode()); local
274 if (in->cfg.visit(seq))
275 buildDefSetsPreSSA(in, seq);
277 bb->defSet |= in->defSet
    [all...]
  /external/mesa3d/src/gallium/drivers/nouveau/nv50/
nv50_program.h 6 * to deal in the Software without restriction, including without limitation
11 * The above copyright notice and this permission notice shall be included in
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20 * OTHER DEALINGS IN THE SOFTWARE.
70 struct nv50_varying in[16]; member in struct:nv50_program
  /external/mesa3d/src/gallium/drivers/r600/sb/
sb_bc_parser.cpp 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 NON-INFRINGEMENT. IN NO EVENT SHALL
19 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
20 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
21 * USE OR OTHER DEALINGS IN THE SOFTWARE.
122 // compute shaders have some values preloaded in R0, R1
166 r600_shader_io & in = pshader->input[i]; local
167 bool preloaded = sh->target == TARGET_PS && !(ps_interp && in.spi_sid);
168 sh->add_input(in.gpr, preloaded, /*in.write_mask*/ 0x0F)
    [all...]
  /external/mesa3d/src/mesa/vbo/
vbo_split_copy.c 9 * to deal in the Software without restriction, including without limitation
15 * in all copies or substantial portions of the Software.
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
21 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
22 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
23 * OTHER DEALINGS IN THE SOFTWARE.
49 * non-indexed primitives may be converted to indexed in some cases
50 * (eg loops, fans) in order to use this splitting path.
84 GLuint in; member in struct:copy_context::__anon28793
91 GLuint dstbuf_size; /**< in vertices *
    [all...]
  /external/okhttp/okhttp-apache/src/test/java/com/squareup/okhttp/apache/
OkApacheClientTest.java 270 InputStream in = new GZIPInputStream(body.getContent()); local
274 while ((read = in.read(temp)) != -1) {
  /external/okhttp/okio/okio/src/test/java/okio/
ByteStringTest.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
104 InputStream in = new ByteArrayInputStream("abc".getBytes(Util.UTF_8)); local
105 assertEquals(ByteString.decodeHex("6162"), ByteString.read(in, 2));
106 assertEquals(ByteString.decodeHex("63"), ByteString.read(in, 1));
107 assertEquals(ByteString.of(), ByteString.read(in, 0));
111 InputStream in = new ByteArrayInputStream("ABC".getBytes(Util.UTF_8)); local
112 assertEquals(ByteString.encodeUtf8("ab"), ByteString.read(in, 2).toAsciiLowercase());
113 assertEquals(ByteString.encodeUtf8("c"), ByteString.read(in, 1).toAsciiLowercase());
114 assertEquals(ByteString.EMPTY, ByteString.read(in, 0).toAsciiLowercase())
131 InputStream in = new ByteArrayInputStream("abc".getBytes(Util.UTF_8)); local
    [all...]
  /external/pdfium/third_party/freetype/src/base/
ftoutln.c 21 /* All functions are declared in freetype.h. */
36 /* The macro FT_COMPONENT is used in trace mode. It is an implicit */
48 /* documentation is in ftoutln.h */
69 FT_Int n; /* index of contour in outline */
70 FT_UInt first; /* index of first point in contour */
89 FT_Int last; /* index of last point in contour */
338 /* documentation is in ftoutln.h */
354 /* documentation is in ftoutln.h */
399 /* documentation is in ftoutln.h */
457 /* documentation is in ftoutln.h *
937 FT_Vector in, out, anchor, shift; local
    [all...]
  /external/protobuf/src/google/protobuf/io/
zero_copy_stream_unittest.cc 5 // Redistribution and use in source and binary forms, with or without
11 // * Redistributions in binary form must reproduce the above
13 // in the documentation and/or other materials provided with the
22 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
27 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38 // match. When the data is written, it is written in several small chunks
110 // Writes some text to the output stream in a particular order. Returns
138 const uint8* in = reinterpret_cast<const uint8*>(data); local
151 memcpy(out, in, in_size)
168 const void* in; local
    [all...]
  /external/speex/libspeex/
sb_celp.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
22 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR
27 LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
28 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
320 spx_word16_t *in = (spx_word16_t*)vin; local
334 low = in;
335 high = in+st->frame_size;
339 qmf_decomp(in, h0, low, high, st->full_frame_size, QMF_ORDER, st->h0_mem, stack)
    [all...]
  /external/syslinux/gpxe/src/arch/i386/include/gpxe/
ibft.h 11 * files (the "Software"), to deal in the Software without
18 * included in all copies or substantial portions of the Software.
23 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
24 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
25 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
26 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
37 * The information in this file is derived from the document "iSCSI
46 #include <gpxe/in.h>
72 struct in_addr in; member in struct:ibft_ipaddr
125 * If this flag is not set, all targets will be logged in to
    [all...]
  /external/syslinux/memdisk/
unzip.c 40 static unsigned inbytes; /* valid bytes in inbuf */
41 static unsigned outcnt; /* bytes in output buffer */
160 uch *in, *out, ch; local
165 in = window;
168 ch = *out++ = *in++;
233 /* Return 0 if (indata, size) points to a ZIP file, and fill in
341 error("Internal error in check_zip");
  /external/vulkan-validation-layers/tests/
vktestframework.cpp 7 * you may not use this file except in compliance with the License.
12 * Unless required by applicable law or agreed to in writing, software
159 "\t\tDisplay test images in viewer after tests complete.\n");
161 "\t\tSave tests images as ppm files in current working "
165 "\t\tCompare test images to 'golden' image in golden folder.\n"
166 "\t\tAlso saves the generated test image in current working\n"
174 "\t\tUse built-in GLSL compiler rather than SPV code path.\n");
550 printf("Warning: unrecognized limit (%s) in configuration file.\n", token);
571 FILE *in; local
573 in = fopen(fileName, "r")
    [all...]
  /external/webp/src/demux/
anim_decode.c 4 // that can be found in the COPYING file in the root of the source
6 // in the file PATENTS. All contributing project authors may
7 // be found in the AUTHORS file in the root of the source tree.
236 // Blend 'num_pixels' in 'src' over 'dst' assuming they are NOT pre-multiplied
249 // Individually multiply each channel in 'pix' by 'scale'.
263 // Blend 'num_pixels' in 'src' over 'dst' assuming they are pre-multiplied by
347 const uint8_t* in = iter.fragment.bytes; local
357 if (WebPDecode(in, in_size, config) != VP8_STATUS_OK)
    [all...]

Completed in 597 milliseconds

<<41424344454647484950>>