HomeSort by relevance Sort by last modified time
    Searched defs:in (Results 501 - 525 of 3057) sorted by null

<<21222324252627282930>>

  /external/selinux/policycoreutils/restorecond/
user.c 12 * This program is distributed in the hope that it will be useful,
62 /* User data is the event loop we are running in */
222 GIOChannel *in = g_io_channel_unix_new(0); local
223 g_io_add_watch_full( in,
  /external/sfntly/cpp/src/sample/chromium/
chrome_subsetter.cc 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
29 explicit HexTo(const char* in) {
31 ss << std::hex << in; local
  /external/tlsdate/src/
test-bio.c 6 * found in the LICENSE file.
11 * input sent to it, which is handed back in response to BIO_read() by the
31 unsigned char *in; member in struct:test_ctx
56 const unsigned char *in, size_t insz)
59 memcpy (*buf + *bufsz, in, insz);
69 ctx->in = NULL;
85 free (ctx->in);
104 return buf_drain (&ctx->in, &ctx->insz, (unsigned char *) buf, sz);
155 return buf_fill (&c->in, &c->insz, buf, bufsz);
  /external/toybox/toys/lsb/
md5sum.c 55 // that involves not just floating point but pulling in -lm (and arguing with
89 unsigned int in, temp, swap; local
91 in = i;
95 in = (1+(5*i))&15;
99 in = (3*i+5)&15;
102 in = (7*i)&15;
105 temp += x[0] + b[in] + md5table[i];
215 // message size (in bits, big endian), and adding enough zero bits in
218 // Since our input up to now has been in whole bytes, we can deal wit
    [all...]
  /external/webp/src/dsp/
lossless_enc_neon.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.
103 const uint8x16_t in = vld1q_u8((uint8_t*)(argb_data + i)); local
105 const uint8x16_t greens = DoGreenShuffle(in, shuffle);
109 const int16x8_t B = vshlq_n_s16(vreinterpretq_s16_u8(in), 8);
119 const int8x16_t out = vsubq_s8(vreinterpretq_s8_u8(in),
  /external/zlib/src/contrib/masmx64/
inffas8664.c 5 * For conditions of distribution and use, see copyright notice in zlib.h
12 * inffas8664.c call function inffas8664fnc in inffasx64.asm
17 * data, it uses rep movsw, which moves data in 2-byte chunks instead of single
25 * the gcc -S output of zlib-1.2.0/inffast.c. Zlib-1.2.0 is in beta release at
49 inflate execution time is spent in this routine.
63 BAD -- error in block data
86 /* 16 8 */ unsigned char FAR *in; /* esi rsi local strm->next_in */ member in struct:inffast_ar
87 /* 24 12 */ unsigned char FAR *last; /* r9 while in < last */
127 ar.in = strm->next_in;
128 ar.last = ar.in + (strm->avail_in - PAD_AVAIL_IN);
    [all...]
  /external/zlib/src/contrib/puff/
pufftest.c 4 * For conditions of distribution and use, see copyright notice in puff.h
55 Reallocate to larger buffers until the entire file is read in. Return a
64 FILE *in; local
70 in = name == NULL ? stdin : fopen(name, "rb");
71 if (in != NULL) {
73 *len += fread((char *)buf + *len, 1, size - *len, in);
83 fclose(in);
  /external/zlib/src/
inffast.c 3 * For conditions of distribution and use, see copyright notice in zlib.h
38 inflate execution time is spent in this routine.
52 BAD -- error in block data
72 z_const unsigned char FAR *in; /* local strm->next_in */ local
73 z_const unsigned char FAR *last; /* have enough input while in < last */
81 unsigned whave; /* valid bytes in the window */
99 in = strm->next_in - OFF;
100 last = in + (strm->avail_in - 5);
122 hold += (unsigned long)(PUP(in)) << bits;
124 hold += (unsigned long)(PUP(in)) << bits
    [all...]
  /external/zopfli/src/zopfli/
zopfli_bin.c 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
72 const unsigned char* in, size_t insize) {
75 fwrite((char*)in, 1, insize, file);
86 unsigned char* in; local
90 LoadFile(infilename, &in, &insize);
96 ZopfliCompress(options, output_type, in, insize, &out, &outsize);
109 free(in);
  /frameworks/base/core/java/android/content/pm/
EphemeralResolveInfo.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
68 EphemeralResolveInfo(Parcel in) {
69 mDigestBytes = in.createByteArray();
70 mDigestPrefix = in.readInt();
71 mPackageName = in.readString();
72 in.readList(mFilters, null /*loader*/);
116 public EphemeralResolveInfo createFromParcel(Parcel in) {
117 return new EphemeralResolveInfo(in);
  /frameworks/base/core/java/android/ddm/
DdmHandleThread.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 * Register for the messages we're interested in.
88 ByteBuffer in = wrapChunk(request); local
90 boolean enable = (in.get() != 0);
101 ByteBuffer in = wrapChunk(request); local
102 // currently nothing to read from "in"
119 * However, we're using the short threadId in THST messages, so we
121 * thread ID in the low 16 bits and somehow serialize the top 16 bits.)
124 ByteBuffer in = wrapChunk(request) local
    [all...]
  /frameworks/base/core/java/android/gesture/
GestureLibraries.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 Log.d(LOG_TAG, "Could not save the gesture library in " + mPath, e);
85 Log.d(LOG_TAG, "Could not save the gesture library in " + mPath, e);
131 final InputStream in = context.getResources().openRawResource(mResourceId); local
133 mStore.load(in, true);
  /frameworks/base/core/java/android/util/
Base64InputStream.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
42 * @param in the InputStream to read the source data from
44 * constants in {@link Base64}
46 public Base64InputStream(InputStream in, int flags) {
47 this(in, flags, false);
54 * @param in the InputStream to read the source data from
56 * constants in {@link Base64}
61 public Base64InputStream(InputStream in, int flags, boolean encode) {
62 super(in);
    [all...]
  /frameworks/base/core/java/com/android/internal/app/
ResolverTargetActionsDialogFragment.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
90 Intent in = new Intent().setAction(Settings.ACTION_APPLICATION_DETAILS_SETTINGS) local
93 startActivity(in);
  /frameworks/base/core/tests/coretests/src/android/net/
SSLTest.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
37 InputStream in = ssl.getInputStream(); local
38 assertNotNull(in);
47 int ret = in.read(b);
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/model/
DurableUtils.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 final ByteArrayInputStream in = new ByteArrayInputStream(data); local
43 d.read(new DataInputStream(in));
94 public static String readNullableString(DataInputStream in) throws IOException {
95 if (in.read() != 0) {
96 return in.readUTF();
  /frameworks/base/telecomm/java/android/telecom/
PhoneAccountHandle.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 * properly. Passing in invalid parameters will generate a log warning.
157 public PhoneAccountHandle createFromParcel(Parcel in) {
158 return new PhoneAccountHandle(in);
167 private PhoneAccountHandle(Parcel in) {
168 this(ComponentName.CREATOR.createFromParcel(in),
169 in.readString(),
170 UserHandle.CREATOR.createFromParcel(in));
  /frameworks/native/services/surfaceflinger/
GpuService.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
40 int in = data.readFileDescriptor(); local
48 return shellCommand(in, out, err, args);
67 status_t GpuService::shellCommand(int /*in*/, int out, int err,
  /frameworks/rs/cpu_ref/
rsCpuIntrinsicLUT.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
62 const uchar *in = (uchar *)info->inPtr[0]; local
72 out[0] = tr[in[0]];
73 out[1] = tg[in[1]];
74 out[2] = tb[in[2]];
75 out[3] = ta[in[3]];
76 in += 4;
  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
GroupTest.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
73 ScriptGroup.Input in = b.addInput(); local
78 new ScriptGroup.Binding(mConvolve.getFieldID_Input(), in));
  /frameworks/support/
Android.mk 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
16 # Don't include in unbundled build.
25 # Find all of the files in the given subdirs that match the
35 define find-files-in-subdirs-exclude
50 $(call find-files-in-subdirs-exclude,$(LOCAL_PATH),"$(1)","$(2)",$(3))
  /frameworks/volley/src/test/java/com/android/volley/toolbox/
ImageRequestTest.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
43 // "file:fake" is ASCII encodable and thus the name in Robolectric's fake
45 // "file:" + name in its lookaside map. I write all this because it will
102 // Scale in X and Y independently, so that src matches dst exactly. This
153 private static byte[] readInputStream(InputStream in) throws IOException {
157 while ((count = in.read(buffer)) != -1) {
160 in.close();
  /hardware/libhardware_legacy/audio/
AudioHardwareStub.cpp 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
73 AudioStreamInStub* in = new AudioStreamInStub(); local
74 status_t lStatus = in->set(format, channels, sampleRate, acoustics);
79 return in;
80 delete in;
84 void AudioHardwareStub::closeInputStream(AudioStreamIn* in)
86 delete in;
  /libcore/dalvik/src/main/java/org/apache/harmony/dalvik/ddmc/
ChunkHandler.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
53 * Returns a response in a Chunk.
78 ByteBuffer in; local
80 in = ByteBuffer.wrap(request.data, request.offset, request.length);
81 in.order(CHUNK_ORDER);
82 return in;
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/net/ssl/
HostnameVerifierTest.java 6 * "License"); you may not use this file except in compliance with the License.
11 * Unless required by applicable law or agreed to in writing, software
46 InputStream in; local
48 in = new ByteArrayInputStream(X509_FOO);
49 x509 = (X509Certificate) cf.generateCertificate(in);
57 in = new ByteArrayInputStream(X509_HANAKO);
58 x509 = (X509Certificate) cf.generateCertificate(in);
63 in = new ByteArrayInputStream(X509_FOO_BAR);
64 x509 = (X509Certificate) cf.generateCertificate(in);
71 in = new ByteArrayInputStream(X509_FOO_BAR_HANAKO)
142 InputStream in = new ByteArrayInputStream(X509_MULTIPLE_SUBJECT_ALT); local
156 InputStream in = new ByteArrayInputStream(X509_MULTIPLE_SUBJECT_ALT); local
179 InputStream in = new ByteArrayInputStream(cert.getBytes("UTF-8")); local
207 InputStream in = new ByteArrayInputStream(cert.getBytes("UTF-8")); local
240 InputStream in = new ByteArrayInputStream(cert.getBytes("UTF-8")); local
277 InputStream in = new ByteArrayInputStream(cert.getBytes("UTF-8")); local
    [all...]

Completed in 2081 milliseconds

<<21222324252627282930>>