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

<<21222324252627282930>>

  /external/openssl/ssl/
ssl_rsa.c 11 * apply to all code found in this distribution, be it the RC4, RSA,
16 * Copyright remains Eric Young's, and as such any Copyright notices in
18 * If this package is used in a product, Eric Young should be given attribution
20 * This can be in the form of a textual message at program startup or
21 * in documentation (online or textual) provided with the package.
23 * Redistribution and use in source and binary forms, with or without
28 * 2. Redistributions in binary form must reproduce the above copyright
29 * notice, this list of conditions and the following disclaimer in the
44 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
48 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRIC
88 BIO *in; local
232 BIO *in; local
317 BIO *in; local
457 BIO *in; local
554 BIO *in; local
636 BIO *in; local
745 BIO *in; local
    [all...]
  /external/oprofile/libabi/
opimport.cpp 199 void * in; local
207 in = mmap(0, statb.st_size, PROT_READ, MAP_PRIVATE, in_fd, 0);
208 assert(in != (void *)-1);
219 import_from_abi(input_abi, in, statb.st_size, &dest);
226 rc = munmap(in, statb.st_size);
  /external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
cmsmd5.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.
52 cmsUInt8Number in[64]; member in struct:__anon32401
67 void MD5_Transform(cmsUInt32Number buf[4], cmsUInt32Number in[16])
77 STEP(F1, a, b, c, d, in[0] + 0xd76aa478, 7);
78 STEP(F1, d, a, b, c, in[1] + 0xe8c7b756, 12)
    [all...]
  /external/ppp/pppd/
md5.c 18 ** Digest Algorithm" in all material mentioning or referencing this **
23 ** Data Security, Inc. MD5 Message-Digest Algorithm" in all **
31 ** These notices must be retained in any copies of any part of this **
46 ** The message digest is now in mdContext->digest[0...15] **
120 in the message whose digest is being computed.
127 UINT4 in[16]; local
142 mdContext->in[mdi++] = *inBuf++;
147 in[i] = (((UINT4)mdContext->in[ii+3]) << 24) |
148 (((UINT4)mdContext->in[ii+2]) << 16)
164 UINT4 in[16]; local
    [all...]
  /external/protobuf/src/google/protobuf/io/
gzip_stream.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
80 const void* in; local
83 bool ok = sub_stream_->Next(&in, &in_size);
89 zcontext_.next_in = static_cast<Bytef*>(const_cast<void*>(in));
283 // The loop in Deflate should consume all avail_i
    [all...]
  /external/qemu/distrib/jpeg-6b/
ansi2knr.c 5 ansi2knr is distributed in the hope that it will be useful, but WITHOUT ANY
8 works at all, unless he says so in writing. Refer to the GNU General Public
12 but only under the conditions described in the GPL. A copy of this license
14 your rights and responsibilities. It should be in a file named COPYLEFT.
15 [In the IJG distribution, the GPL appears below, not in a separate file.]
22 with another program, this in itself does not bring the other program under
50 in new free programs, and that you know you can do these things.
72 code as you receive it, in any medium, provided that you conspicuously
90 that in whole or in part contains or is a derivative of Ghostscrip
323 { FILE *in, *out; local
    [all...]
  /external/smack/src/org/jivesoftware/smack/proxy/
Socks5ProxySocketFactory.java 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
79 InputStream in = null; local
89 in=socket.getInputStream();
106 appear in the METHODS field.
127 The server selects from one of the methods given in METHODS, and
136 //in.read(buf, 0, 2);
137 fill(in, buf, 2);
197 //in.read(buf, 0, 2);
198 fill(in, buf, 2)
    [all...]
  /external/smack/src/org/xbill/DNS/
A6Record.java 31 * @param prefixBits The number of bits in the address prefix
49 rrFromWire(DNSInput in) throws IOException {
50 prefixBits = in.readU8();
55 in.readByteArray(bytes, 16 - suffixbytes, suffixbytes);
59 prefix = new Name(in);
96 /** Returns the number of bits in the prefix */
Header.java 23 /** The length of a DNS Header in wire format. */
54 Header(DNSInput in) throws IOException {
55 this(in.readU16());
56 flags = in.readU16();
58 counts[i] = in.readU16();
  /external/speex/libspeex/
fftwrap.c 6 Redistribution and use in source and binary forms, with or without
13 - Redistributions in binary form must reproduce the above copyright
14 notice, this list of conditions and the following disclaimer in the
24 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR
29 LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
30 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
45 static int maximize_range(spx_word16_t *in, spx_word16_t *out, spx_word16_t bound, int len)
51 if (in[i]>max_val)
52 max_val = in[i];
53 if (-in[i]>max_val
173 float *in; member in struct:fftw_config
    [all...]
  /external/valgrind/main/drd/tests/
circular_buffer.c 23 has built-in functions for atomic memory access.
35 /* Counting semaphore representing the number of data items in the buffer. */
40 int in; member in struct:__anon36502
43 /* Mutex that protects 'in'. */
98 b->in = 0;
127 int in; local
131 in = fetch_and_add(&b->in, 1);
132 if (in >= BUFFER_MAX)
134 fetch_and_add(&b->in, -BUFFER_MAX)
    [all...]
  /external/wpa_supplicant_8/src/crypto/
md4-internal.c 48 * written by Colin Plumb in 1993, no copyright is claimed.
49 * This code is in the public domain; do with it what you wish.
128 /* Process data in MD4_BLOCK_LENGTH-byte chunks. */
150 /* Convert count to 8 bytes in little endian order. */
163 * Final wrapup--call MD4Pad, fill in digest and zero out ctx.
185 /* This is the central step in the MD4 algorithm. */
197 u32 a, b, c, d, in[MD4_BLOCK_LENGTH / 4]; local
200 os_memcpy(in, block, sizeof(in));
203 in[a] = (u32)
    [all...]
  /external/zlib/src/contrib/inflate86/
inffas86.c 5 * For conditions of distribution and use, see copyright notice in zlib.h
12 * data, it uses rep movsw, which moves data in 2-byte chunks instead of single
20 * the gcc -S output of zlib-1.2.0/inffast.c. Zlib-1.2.0 is in beta release at
42 inflate execution time is spent in this routine.
56 BAD -- error in block data
81 /* 16 8 */ unsigned char FAR *in; /* esi rsi local strm->next_in */ member in struct:inffast_ar
82 /* 24 12 */ unsigned char FAR *last; /* r9 while in < last */
110 ar.in = strm->next_in;
111 ar.last = ar.in + (strm->avail_in - PAD_AVAIL_IN);
128 /* align in on 1/2 hold size boundary *
    [all...]
  /external/zlib/src/examples/
gzjoin.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
39 decompress all of the input data in order to find the bits in the compressed
48 compressed data in order to connect the streams. The output gzip file
65 /* exit with an error (return a value to allow use in an expression) */
75 #define CHUNK 32768 /* must be a power of two and fit in unsigned */
87 local void bclose(bin *in)
89 if (in != NULL)
102 bin *in; local
285 bin *in; \/* buffered input file *\/ local
    [all...]
zran.c 3 * For conditions of distribution and use, see copyright notice in zlib.h
13 stream is provided on the command line. The compressed stream is decoded in
15 in the uncompressed output. The compressed file is left open, and can then
23 point in the uncompressed stream. build_index() works by decompressing the
26 a new access point. If so, that point is saved in a data structure that
29 To use the index, an offset in the uncompressed data is provided, for which
30 the latest accees point at or preceding that offset is located in the index.
31 The input file is positioned to the specified location in the index, and if
34 the decompression then proceeds until the desired offset in the file is
38 Another approach would be to generate the index on demand. In that case
69 off_t in; \/* offset in input file of first full byte *\/ member in struct:point
358 FILE *in; local
    [all...]
  /frameworks/av/services/audioflinger/
AudioResampler.cpp 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
50 // number of bits used in interpolation multiply - 15 bits avoids overflow
62 void AsmMono16Loop(int16_t *in, int32_t* maxOutPt, int32_t maxInIdx,
65 void AsmStereo16Loop(int16_t *in, int32_t* maxOutPt, int32_t maxInIdx,
389 int16_t *in = mBuffer.i16;
394 out[outputIndex++] += vl * Interp(mX0L, in[0], phaseFraction);
395 out[outputIndex++] += vr * Interp(mX0R, in[1], phaseFraction);
412 AsmStereo16Loop(in, maxOutPt, maxInIdx, outputIndex, out, inputIndex, vl, vr,
418 out[outputIndex++] += vl * Interp(in[inputIndex*2-2]
484 int16_t *in = mBuffer.i16; member in namespace:android
    [all...]
  /frameworks/base/core/java/android/database/
BulkCursorNative.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
27 * Native implementation of the bulk cursor. This is only for use in implementing
48 IBulkCursor in = (IBulkCursor)obj.queryLocalInterface(descriptor); local
49 if (in != null) {
50 return in;
  /frameworks/base/core/java/android/ddm/
DdmHandleHeap.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
50 * Register for the messages we're interested in.
112 ByteBuffer in = wrapChunk(request); local
114 int when = in.get();
130 ByteBuffer in = wrapChunk(request); local
132 int when = in.get();
133 int what = in.get();
156 ByteBuffer in = wrapChunk(request); local
160 int len = in.getInt()
190 ByteBuffer in = wrapChunk(request); local
231 ByteBuffer in = wrapChunk(request); local
    [all...]
DdmHandleProfiling.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
47 * Register for the messages we're interested in.
103 ByteBuffer in = wrapChunk(request); local
105 int bufferSize = in.getInt();
106 int flags = in.getInt();
107 int len = in.getInt();
108 String fileName = getString(in, len);
145 ByteBuffer in = wrapChunk(request); local
147 int bufferSize = in.getInt()
198 ByteBuffer in = wrapChunk(request); local
    [all...]
  /frameworks/base/core/java/android/os/
ServiceManagerNative.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
38 IServiceManager in = local
40 if (in != null) {
41 return in;
  /frameworks/base/core/java/android/print/
PrintFileDocumentAdapter.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
117 InputStream in = null; local
121 in = new FileInputStream(mFile);
126 final int readByteCount = in.read(buffer);
137 IoUtils.closeQuietly(in);
  /frameworks/base/core/tests/coretests/src/com/android/internal/net/
NetworkStatsFactoryTest.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
134 InputStream in = null; local
137 in = getContext().getResources().openRawResource(rawId);
139 Streams.copy(in, out);
141 IoUtils.closeQuietly(in);
  /frameworks/base/graphics/java/android/graphics/
FontListParser.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
77 public static Config parse(InputStream in) throws XmlPullParserException, IOException {
80 parser.setInput(in, null);
84 in.close();
  /frameworks/base/samples/training/network-usage/src/com/example/android/networkusage/
StackOverflowXmlParser.java 5 * in compliance with the License. You may obtain a copy of the License at
9 * Unless required by applicable law or agreed to in writing, software distributed under the License
30 * where each list element represents a single entry (post) in the XML feed.
37 public List<Entry> parse(InputStream in) throws XmlPullParserException, IOException {
41 parser.setInput(in, null);
45 in.close();
68 // This class represents a single entry (post) in the XML feed.
108 // Processes title tags in the feed.
116 // Processes link tags in the feed.
132 // Processes summary tags in the feed
    [all...]
  /frameworks/base/sax/tests/saxtests/src/android/sax/
ExpatPerformanceTest.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 InputStream in = mContext.getResources().openRawResource(R.raw.youtube); local
49 while ((length = in.read(buffer)) != -1) {

Completed in 1132 milliseconds

<<21222324252627282930>>