HomeSort by relevance Sort by last modified time
    Searched defs:in (Results 901 - 925 of 2162) sorted by null

<<31323334353637383940>>

  /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
104 // Writes some text to the output stream in a particular order. Returns
132 const uint8* in = reinterpret_cast<const uint8*>(data); local
145 memcpy(out, in, in_size)
162 const void* in; local
    [all...]
  /external/qemu/distrib/jpeg-6b/
jccolor.c 44 * maximum red and maximum blue in order to get exact grayscales.
50 * For even more speed, we avoid doing any multiplications in the inner loop
57 * in the tables to save adding them separately in the inner loop.
67 * address, which can be held in a register in the inner loops on many
94 /* Allocate and fill in the conversion tables. */
412 static void copyquads(const UINT32 in[], UINT32 out0[], UINT32 out1[], UINT32 out2[], int col4)
415 UINT32 src0 = *in++;
416 UINT32 src1 = *in++
457 const UINT32* in = (const UINT32*)inptr; local
    [all...]
  /external/qemu/distrib/zlib-1.2.8/
gzguts.h 3 * For conditions of distribution and use, see copyright notice in zlib.h
77 /* In Win32, vsnprintf is available as the "non-ANSI" _vsnprintf. */
98 /* unlike snprintf (which is required in C99, yet still not supported by
100 termination of the result -- however this is only used in gzlib.c where
101 the result is assured to fit in the space provided */
146 twice this must be able to fit in an unsigned type) */
166 /* x.pos: current position in uncompressed data */
173 unsigned char *in; /* input buffer */ member in struct:__anon33350
191 z_stream strm; /* stream structure in-place (not a pointer) */
inflate.c 3 * For conditions of distribution and use, see copyright notice in zlib.h
16 * - Use pointers for available input and output checking in inffast.c
17 * - Remove input and output counters in inffast.c
19 * - Remove unnecessary second byte pull from length extra in inffast.c
20 * - Unroll direct copy to three copies per loop in inffast.c
24 * - Correct filename to inffixed.h for fixed tables in inflate.c
25 * - Make hbuf[] unsigned char to match parameter type in inflate.c
27 * to avoid negation problem on Alphas (64 bit) in inflate.c
30 * - Add comments on state->bits assertion in inffast.c
31 * - Add comments on op field in inftrees.
615 unsigned in, out; \/* save starting available input and output *\/ local
    [all...]
  /external/qemu/proxy/
proxy_common.c 7 ** This program is distributed in the hope that it will be useful,
87 /* just in case */
111 /* only keep a small buffer in the heap */
480 unsigned char in[4]; local
485 in[0] = src[0];
486 in[1] = src+1 < srcend ? src[1] : 0;
487 in[2] = src+2 < srcend ? src[2] : 0;
489 dst[result+0] = cb64[ in[0] >> 2 ];
490 dst[result+1] = cb64[ ((in[0] & 3) << 4) | ((in[1] & 0xf0) >> 4) ]
    [all...]
  /external/smack/src/org/jivesoftware/smackx/bytestreams/socks5/
Socks5Proxy.java 3 * you may not use this file except in compliance with the License.
8 * Unless required by applicable law or agreed to in writing, software
38 * setting the <code>localSocks5ProxyEnabled</code> flag in the <code>smack-config.xml</code> or by
43 * in the <code>smack-config.xml</code> or by invoking
49 * provide your public address in case you are behind a NAT router, invoke
54 * in the process of establishing a SOCKS5 Bytestream (
190 * Use this method if you want to provide multiple addresses in a SOCKS5 Bytestream request.
192 * interfaces or if you want to provide your public address in case you are behind a NAT router.
232 * Use this method if you want to provide multiple addresses in a SOCKS5 Bytestream request and
234 * with multiple network interfaces or if you want to provide your public address in case you
360 DataInputStream in = new DataInputStream(socket.getInputStream()); local
    [all...]
  /external/stlport/src/
ios.cpp 73 const ios_base::openmode ios_base::in; member in class:ios_base
206 // that is also set in the exception mask exceptions().
229 // Copy x's state to *this. This member function is used in the
  /external/zlib/src/contrib/blast/
blast.c 3 * For conditions of distribution and use, see copyright notice in blast.h
11 * Ben Rudiak-Gould in comp.compression on August 13, 2001. Interestingly, the
12 * example Ben provided in the post is incorrect. The distance 110001 should
25 * 1.2 24 Oct 2012 - Add note about using binary mode in stdio
41 unsigned char *in; /* next input location */ member in struct:state
42 unsigned left; /* available input at in */
44 int bitcnt; /* number of bits in bit buffer */
52 unsigned next; /* index of next write location in out[] */
59 * eight bits in the buffer. bits() works properly for need == 0.
63 * - Bits are stored in bytes from the least significant bit to the mos
    [all...]
  /external/zlib/src/contrib/inflate86/
inffast.S 6 * For conditions of distribution and use, see copyright notice in zlib.h
16 * (8K-32K worked best for my 256K cpu cache) and how much overhead there is in
17 * stream processing I/O and crc32/addler32. In my case, this routine used
20 * I am confident that this version will work in the general case, but I have
30 * ID bit on eflags and then use the cpuid instruction) is used in many
41 * MMX mode because many of it's x86 ALU instructions execute in .5 cycles and
43 * the input stream since the MMX code grabs bits in chunks of 32, which
51 * structure offsets which are hard coded in this file. This was last tested
52 * with zlib-1.2.0 which is currently in beta testing, newer versions of this
140 * struct z_stream offsets, in zlib.
177 #define in 44 \/* unsigned char* *\/ define
    [all...]
  /external/zlib/src/contrib/puff/
puff.c 4 * For conditions of distribution and use, see copyright notice in puff.h
20 * assumed to be 16 bits, for arrays in order to to conserve memory. The code
23 * In the comments below are "Format notes" that describe the inflate process
39 * - Simplify offs[] index in construct()
54 * - Add braces in puff() for else do [Gailly]
67 * - Add option in TEST code for puff to write the data
68 * - Add option in TEST code to skip input bytes
72 * 2.2 25 Apr 2010 - Fix bug in variable initializations [Oberhumer]
79 * 2.3 21 Jan 2013 - Check for invalid code length codes in dynamic blocks
91 #define MAXBITS 15 /* maximum bits in a code *
105 const unsigned char *in; \/* input buffer *\/ member in struct:state
    [all...]
  /external/zlib/src/examples/
gun.c 3 * For conditions of distribution and use, see copyright notice in zlib.h
10 Fix return value for in()
19 1.5 9 Feb 2008 Avoid warning in latest version of gcc
21 1.7 12 Aug 2012 Update for z_const usage in zlib 1.2.8
27 decompresses the data in the named gzip files. If no arguments are given,
28 gun will decompress from stdin to stdout. The names must end in .gz, -gz,
47 encountered in an input file, it is the last stream in that file.
50 file are maintained in the final uncompressed file, to the extent that the
79 /* structure for infback() to pass to input function in() -- it maintains th
89 local unsigned in(void *in_desc, z_const unsigned char **buf) function
    [all...]
gzappend.c 7 warranty. In no event will the author be held liable for any damages
16 in a product, an acknowledgment in the product documentation would be
33 * - Add L to constants in lseek() calls
34 * - Remove some debugging information in error messages
37 * - Finish off gzip file in gztack()
40 * - Use in-place rotate instead of auxiliary buffer
49 avoid copying that file, in case it's large. Note that this results in the
57 number of unusued bits in the last input byte used. gzappend will not wor
392 unsigned char *in, *out; local
    [all...]
  /external/zlib/src/
gzguts.h 3 * For conditions of distribution and use, see copyright notice in zlib.h
77 /* In Win32, vsnprintf is available as the "non-ANSI" _vsnprintf. */
98 /* unlike snprintf (which is required in C99, yet still not supported by
100 termination of the result -- however this is only used in gzlib.c where
101 the result is assured to fit in the space provided */
146 twice this must be able to fit in an unsigned type) */
166 /* x.pos: current position in uncompressed data */
173 unsigned char *in; /* input buffer */ member in struct:__anon37548
191 z_stream strm; /* stream structure in-place (not a pointer) */
inflate.c 3 * For conditions of distribution and use, see copyright notice in zlib.h
16 * - Use pointers for available input and output checking in inffast.c
17 * - Remove input and output counters in inffast.c
19 * - Remove unnecessary second byte pull from length extra in inffast.c
20 * - Unroll direct copy to three copies per loop in inffast.c
24 * - Correct filename to inffixed.h for fixed tables in inflate.c
25 * - Make hbuf[] unsigned char to match parameter type in inflate.c
27 * to avoid negation problem on Alphas (64 bit) in inflate.c
30 * - Add comments on state->bits assertion in inffast.c
31 * - Add comments on op field in inftrees.
615 unsigned in, out; \/* save starting available input and output *\/ local
    [all...]
  /external/zlib/src/test/
infcover.c 3 * For conditions of distribution and use, see copyright notice in zlib.h
37 request that exceeds this limit will result in an
55 /* these items are strung together in a linked list, one for each allocation */
59 struct mem_item *next; /* pointer to next item in list, or NULL */
64 struct mem_item *first; /* pointer to first item in list, or NULL */
152 /* in any case, do the requested free with the standard library function */
183 /* show the current total requested allocations in bytes */
191 /* show the high water allocation in bytes */
221 fprintf(stderr, "** %s: %lu bytes in %d blocks not freed\n",
238 /* Decode a hexadecimal string, set *len to length, in[] to the bytes. Thi
247 unsigned char *in; local
289 unsigned char *in, *out; local
511 unsigned char *in, *out, *win; local
    [all...]
minigzip.c 3 * For conditions of distribution and use, see copyright notice in zlib.h
13 * or in pipe mode.
61 #ifndef WIN32 /* unlink already in stdio.h for WIN32 */
70 /* Map the Windows error number in ERROR to a locale-dependent error
267 unsigned char in[1]; local
278 got = fread(in, 1, 1, gz->file);
281 strm->next_in = in;
339 void gz_compress OF((FILE *in, gzFile out));
341 int gz_compress_mmap OF((FILE *in, gzFile out));
343 void gz_uncompress OF((gzFile in, FILE *out))
462 FILE *in; local
502 gzFile in; local
633 FILE * in = fopen(*argv, "rb"); local
    [all...]
  /frameworks/base/cmds/media/src/com/android/commands/media/
Media.java 6 ** you may not use this file except in compliance with the License.
11 ** Unless required by applicable law or agreed to in writing, software
251 InputStreamReader converter = new InputStreamReader(System.in);
252 BufferedReader in = new BufferedReader(converter); local
255 while ((line = in.readLine()) != null) {
  /frameworks/base/core/java/android/app/
UiAutomationConnection.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
238 InputStream in = null; local
244 in = process.getInputStream();
249 final int readByteCount = in.read(buffer);
258 IoUtils.closeQuietly(in);
292 // process is gone the client calling in will be killed.
305 // process is gone the client calling in will be killed.
318 // process is gone the client calling in will be killed.
330 // process is gone the client calling in will be killed
    [all...]
  /frameworks/base/core/java/android/app/backup/
FullBackup.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
31 * binary format. Nothing in this namespace is part of any API; it's all
70 * read from it in this case.
83 * in this parameter. If this parameter is negative then neither
85 * @param mtime A timestamp in the standard Unix epoch that will be imposed as the
96 // anything from the pipe in this case. Just create the directory here and
107 // in practice this will only be for the default semantic directories,
119 FileInputStream in = new FileInputStream(data.getFileDescriptor()); local
122 int got = in.read(buffer, 0, toRead)
    [all...]
  /frameworks/base/core/java/android/gesture/
GestureStore.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
122 * Get all the gesture entry names in the library
279 DataInputStream in = null; local
281 in = new DataInputStream((stream instanceof BufferedInputStream) ? stream :
290 final short versionNumber = in.readShort();
293 readFormatV1(in);
302 if (closeStream) GestureUtils.closeStream(in);
306 private void readFormatV1(DataInputStream in) throws IOException {
311 // Number of entries in the librar
    [all...]
  /frameworks/base/core/java/android/util/
Rational.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
69 * <p>Increment each time the fields change in any way.</p>
142 * <p>The denominator may return {@code 0}, in which case the rational may represent
179 * <p>A finite value occurs when the denominator is not {@code 0}; in other words
219 * <li>Both have the same numerator and denominator in their reduced form</li>
280 // TODO: remove this duplicate function (used in CTS and the shim)
300 * @param numerator the numerator in a fraction
301 * @param denominator the denominator in a fraction
366 * identically to casting a floating point value to an {@code int}, in particular
    [all...]
  /frameworks/base/core/tests/coretests/src/android/util/
Base64Test.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
32 private String decodeString(String in) throws Exception {
33 byte[] out = Base64.decode(in, 0);
38 * Encodes the string 'in' using 'flags'. Asserts that decoding
41 private String encodeToString(String in, int flags) throws Exception {
42 String b64 = Base64.encodeToString(in.getBytes(), flags);
44 assertEquals(in, dec);
48 /** Assert that decoding 'in' throws IllegalArgumentException. */
49 private void assertBad(String in) throws Exception
412 InputStream in = new Base64InputStream( local
    [all...]
  /frameworks/base/media/java/android/media/audiopolicy/
AudioPolicyConfig.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
83 private AudioPolicyConfig(Parcel in) {
85 int nbMixes = in.readInt();
89 int routeFlags = in.readInt();
92 int sampleRate = in.readInt();
93 int encoding = in.readInt();
94 int channelMask = in.readInt();
99 int nbRules = in.readInt();
103 int matchRule = in.readInt()
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/
MediaTestUtil.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
94 InputStream in = p.getInputStream(); local
96 while ((ch = in.read()) != -1) {
  /frameworks/base/packages/DefaultContainerService/src/com/android/defcontainer/
DefaultContainerService.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
124 * @return returns status code according to those in
379 InputStream in = null; local
382 in = new FileInputStream(sourcePath);
385 Streams.copy(in, out);
388 IoUtils.closeQuietly(in);

Completed in 381 milliseconds

<<31323334353637383940>>