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

<<21222324252627282930>>

  /external/selinux/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/swiftshader/src/Reactor/
Main.cpp 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
120 Pointer<Byte> in = function.Arg<0>(); local
123 *Pointer<Int4>(out + 16 * 0) = *Pointer<Int4>(in + 16 * 0);
124 *Pointer<Short4>(out + 16 * 1) = *Pointer<Short4>(in + 16 * 1);
125 *Pointer<Byte8>(out + 16 * 2) = *Pointer<Byte8>(in + 16 * 2);
126 *Pointer<Byte4>(out + 16 * 3) = *Pointer<Byte4>(in + 16 * 3);
127 *Pointer<Short2>(out + 16 * 4) = *Pointer<Short2>(in + 16 * 4);
136 int8_t in[16 * 5] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, local
149 callable(in, out)
    [all...]
  /external/syslinux/com32/lib/zlib/
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 unsigned char FAR *in; /* local strm->next_in */ local
73 unsigned char FAR *last; /* while in < last, enough input available */
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/syslinux/gpxe/src/arch/i386/interface/pcbios/
ibft.c 8 * files (the "Software"), to deal in the Software without
15 * included in all copies or substantial portions of the Software.
20 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
21 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
22 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
23 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
38 #include <gpxe/in.h>
49 * The information in this file is derived from the document "iSCSI
115 * Fill in an IP address field within iBFT
118 * @v in IPv4 addres
137 struct in_addr in = { 0 }; local
    [all...]
  /external/syslinux/gpxe/src/net/
dhcppkt.c 9 * This program is distributed in the hope that it will be useful, but
51 const struct in_addr *in = data; local
53 return ( in->s_addr ? sizeof ( *in ) : 0 );
152 /* If this is a special field, fill it in */
265 * @v dhcppkt DHCP packet structure to fill in
  /external/toybox/toys/pending/
gzip.c 87 gzFile in; local
111 in = gzdopen(in_fd, "r");
112 if (in == NULL) perror_exit("gzdopen");
122 while ((len = gzread(in, toybuf, sizeof(toybuf))) > 0) {
125 if (len < 0) gzerror_exit(in, "gzread");
127 if (gzclose(in) != Z_OK) error_exit("gzclose");
139 FILE *in = xfdopen(in_fd, "r"); local
159 while ((len = fread(toybuf, 1, sizeof(toybuf), in)) > 0) {
162 if (ferror(in)) perror_exit("fread");
163 if (fclose(in)) perror_exit("fclose")
    [all...]
  /external/v8/src/compiler/
bytecode-liveness-map.h 3 // found in the LICENSE file.
79 BytecodeLivenessState* in; member in struct:v8::internal::compiler::BytecodeLiveness
96 return GetLiveness(offset).in;
99 return GetLiveness(offset).in;
  /external/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();
  /external/walt/android/WALT/app/src/main/java/org/chromium/latency/walt/programmer/
Programmer.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 InputStream in = context.getResources().openRawResource(R.raw.walt); local
50 image.parseHex(in);
  /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/xz-embedded/linux/include/linux/
xz.h 26 /* In Linux, this is used to make extern functions static when needed. */
66 * return code is possible only in multi-call mode
70 * is still possible in multi-call mode by simply
74 * which is not used in the kernel. Unsupported
85 * only in multi-call mode (XZ_PREALLOC or
91 * compression options. In the decoder this means
99 * In multi-call mode, XZ_BUF_ERROR is returned when two consecutive calls
106 * In single-call mode, XZ_BUF_ERROR is returned only when the output buffer
107 * is too small or the compressed input is corrupt in a way that makes the
126 * @in: Beginning of the input buffer. This may be NULL if and onl
141 const uint8_t *in; member in struct:xz_buf
    [all...]
  /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/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/java/com/android/internal/content/
PdfUtils.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
71 final ByteArrayInputStream in = new ByteArrayInputStream(out.toByteArray()); local
79 Streams.copy(in, fos);
  /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/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/base/telephony/java/com/android/internal/telephony/
NetworkScanResult.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
81 private NetworkScanResult(Parcel in) {
82 scanStatus = in.readInt();
83 scanError = in.readInt();
85 in.readParcelableList(ni, Object.class.getClassLoader());
118 public NetworkScanResult createFromParcel(Parcel in) {
119 return new NetworkScanResult(in);
  /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
56 const uchar *in = (uchar *)info->inPtr[0]; local
66 out[0] = tr[in[0]];
67 out[1] = tg[in[1]];
68 out[2] = tb[in[2]];
69 out[3] = ta[in[3]];
70 in += 4;

Completed in 219 milliseconds

<<21222324252627282930>>