Searched defs:in (Results 251 - 275 of 1566) sorted by last modified time

<<11121314151617181920>>

/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowComponentName.java52 public static ComponentName readFromParcel(Parcel in) { argument
53 if (in.readInt() == 0) {
56 String pkg = in.readString();
57 String cls = in.readString();
H A DShadowIntent.java626 public void readFromParcel(Parcel in) { argument
627 setAction(in.readString());
628 if (in.readInt() == 1) {
629 data = Uri.CREATOR.createFromParcel(in);
631 type = in.readString();
632 flags = in.readInt();
633 packageName = in.readString();
634 componentName = ComponentName.readFromParcel(in);
635 int N = in.readInt();
637 categories.add(in
[all...]
H A DShadowPendingIntent.java76 public static PendingIntent readPendingIntentOrNullFromParcel(Parcel in) { argument
77 if (in.readInt() == 0) {
80 boolean isActivity = readBooleanFromParcel(in);
81 boolean isBroadcast = readBooleanFromParcel(in);
82 boolean isService = readBooleanFromParcel(in);
83 int requestCode = in.readInt();
85 if (in.readInt() != 0) {
87 intent.readFromParcel(in);
195 private static boolean readBooleanFromParcel(Parcel in) { argument
196 return in
[all...]
/external/qemu/android/
H A Dsockets.c7 ** This program is distributed in the hope that it will be useful,
40 # include <netinet/in.h>
54 * easily in QEMU since we use SIGALRM to implement periodic timers
78 EE(WSAEALREADY,EALREADY,"operation already in progress") \
85 EE(WSAEINPROGRESS,EINPROGRESS,"operation now in progress") \
86 EE(WSAEALREADY,EAGAIN,"operation already in progress") \
92 EE(WSAEADDRINUSE,EADDRINUSE,"address already in use") \
235 struct sockaddr_in in[1]; member in union:__anon29204
515 struct sockaddr_in* dst = paddress->in;
650 /* NOTE that in x86_6
[all...]
/external/qemu/audio/
H A Dalsaaudio.c9 * in the Software without restriction, including without limitation the rights
14 * The above copyright notice and this permission notice shall be included in
99 /* these are inlined functions in the original headers */
530 static int alsa_open (int in, struct alsa_params_req *req, argument
538 const char *pcm_name = in ? conf.pcm_name_in : conf.pcm_name_out;
540 const char *typ = in ? "ADC" : "DAC";
552 in ? SND_PCM_STREAM_CAPTURE : SND_PCM_STREAM_PLAYBACK,
710 if (!in && conf.threshold) {
1256 .descr = "DAC period/buffer size in microseconds (otherwise in frame
[all...]
H A Dcoreaudio.c9 * in the Software without restriction, including without limitation the rights
14 * The above copyright notice and this permission notice shall be included in
640 float *in = inInputData->mBuffers[0].mData; local
677 dst[frame].l = *in++; /* left channel */
678 dst[frame].r = *in++; /* right channel */
681 dst[frame].l = *in++ * scale; /* left channel */
682 dst[frame].r = *in++ * scale; /* right channel */
684 dst[frame].l = *in++ / scale; /* left channel */
685 dst[frame].r = *in++ / scale; /* right channel */
757 .descr = "Size of the output buffer in frame
[all...]
H A Dmixeng_template.h8 * in the Software without restriction, including without limitation the rights
13 * The above copyright notice and this permission notice shall be included in
115 IN_T *in = (IN_T *) src; local
125 out->l = VOL (glue (conv_, ET) (*in++), vol->l);
126 out->r = VOL (glue (conv_, ET) (*in++), vol->r);
135 IN_T *in = (IN_T *) src; local
145 out->l = VOL (glue (conv_, ET) (in[0]), vol->l);
148 in += 1;
155 const struct st_sample *in = src; local
158 *out++ = glue (clip_, ET) (in
167 const struct st_sample *in = src; local
[all...]
H A Dossaudio.c8 * in the Software without restriction, including without limitation the rights
13 * The above copyright notice and this permission notice shall be included in
250 * since 7.x, but currently only on the mixer device (or in
251 * the Linuxolator), and in the native version that part of
252 * the code is in fact never reached so the ioctl fails anyway.
268 static int oss_open (int in, struct oss_params *req, argument
276 const char *dspname = in ? conf.devpath_in : conf.devpath_out;
277 const char *typ = in ? "ADC" : "DAC";
280 oflags |= conf.try_mmap ? O_RDWR : (in ? O_RDONLY : O_WRONLY);
345 if (ioctl (fd, in
[all...]
/external/qemu/distrib/ext4_utils/src/
H A Dext2simg.c5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
181 const char *in = NULL; local
211 in = argv[optind++];
227 infd = open(in, O_RDONLY);
236 build_sparse_ext(infd, in);
/external/qemu/distrib/jpeg-6b/
H A Dansi2knr.c5 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 par
323 { FILE *in, *out; local
[all...]
H A Djccolor.c44 * 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) argument
415 UINT32 src0 = *in++;
416 UINT32 src1 = *in
457 const UINT32* in = (const UINT32*)inptr; local
[all...]
H A Djquant2.c38 * in the same histogram cell.
42 * have as many boxes as desired colors. Then the mean color in each
50 * Heckbert-style quantizers vary a good deal in their policies for choosing
52 * used here have proved out well in experimental comparisons, but better ones
55 * In earlier versions of the IJG code, this module quantized in YCbCr color
62 * The present code works in the post-conversion color space, typically RGB.
64 * To improve the visual quality of the results, we actually work in scaled
65 * RGB space, giving G distances more weight than R, and R in turn more than
66 * B. To do everything in integer math, we must use integer scale factors.
68 * weights of the colors in th
1113 int in, out; local
[all...]
/external/qemu/distrib/libsparse/src/
H A Dimg2simg.c5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
48 int in; local
70 in = STDIN_FILENO;
72 in = open(argv[1], O_RDONLY | O_BINARY);
73 if (in < 0) {
89 len = lseek64(in, 0, SEEK_END);
90 lseek64(in, 0, SEEK_SET);
99 ret = sparse_file_read(s, in, false, false);
111 close(in);
[all...]
H A Dsimg2img.c5 * 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; local
59 in = STDIN_FILENO;
61 in = open(argv[i], O_RDONLY | O_BINARY);
62 if (in < 0) {
68 s = sparse_file_import(in, true, false);
82 close(in);
H A Dsimg2simg.c5 * 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 int in; local
61 in = open(argv[1], O_RDONLY | O_BINARY);
62 if (in < 0) {
67 s = sparse_file_import(in, true, false);
112 close(in);
/external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/atlantis/
H A Datlantis.c9 * copyright notice appear in all copies and that both the copyright notice
10 * and this permission notice appear in supporting documentation, and that
11 * the name of Silicon Graphics, Inc. not be used in advertising
30 * restrictions set forth in FAR 52.227.19(c)(2) or subparagraph
31 * (c)(1)(ii) of the Rights in Technical Data and Computer Software
32 * clause at DFARS 252.227-7013 and/or in similar or successor
33 * clauses in the FAR or the DOD or NASA FAR Supplement.
72 static double filter(double in, double *save) argument
77 save[3] = in;
/external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/atlantis/
H A Datlantis.c9 * copyright notice appear in all copies and that both the copyright notice
10 * and this permission notice appear in supporting documentation, and that
11 * the name of Silicon Graphics, Inc. not be used in advertising
30 * restrictions set forth in FAR 52.227.19(c)(2) or subparagraph
31 * (c)(1)(ii) of the Rights in Technical Data and Computer Software
32 * clause at DFARS 252.227-7013 and/or in similar or successor
33 * clauses in the FAR or the DOD or NASA FAR Supplement.
72 static double filter(double in, double *save) argument
77 save[3] = in;
/external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeTiger/SDL OpenGL Application/atlantis/
H A Datlantis.c9 * copyright notice appear in all copies and that both the copyright notice
10 * and this permission notice appear in supporting documentation, and that
11 * the name of Silicon Graphics, Inc. not be used in advertising
30 * restrictions set forth in FAR 52.227.19(c)(2) or subparagraph
31 * (c)(1)(ii) of the Rights in Technical Data and Computer Software
32 * clause at DFARS 252.227-7013 and/or in similar or successor
33 * clauses in the FAR or the DOD or NASA FAR Supplement.
72 static double filter(double in, double *save) argument
77 save[3] = in;
/external/qemu/distrib/sdl-1.2.15/src/main/symbian/EKA2/
H A Dsdlexe.cpp32 TBool in = EFalse; local
39 if(in)
53 in = EFalse;
63 in = ETrue;
64 continue; // back to in brace
/external/qemu/distrib/sdl-1.2.15/src/video/ps3/spulibs/
H A Dfb_writer.c11 * This library is distributed in the hope that it will be useful, but
109 uint8_t *in = parms.data; local
128 /* do 4-times multibuffering using DMA list, process in two steps */
133 spu_mfcdma32(buf[0], (unsigned int)in, in_line_size,
139 in += in_line_stride;
141 deprintf("[SPU] 1st buffer copied in=0x%x, fb=0x%x\n", in,
147 spu_mfcdma32(buf[1], (unsigned int)in, in_line_size,
153 in += in_line_stride;
155 deprintf("[SPU] 2nd buffer copied in
[all...]
/external/qemu/distrib/zlib-1.2.8/
H A Dgzguts.h3 * For conditions of distribution and use, see copyright notice in zlib.h
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:__anon29632
191 z_stream strm; /* stream structure in-place (not a pointer) */
H A Dinffast.c3 * 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)) << bit
[all...]
H A Dinflate.c3 * 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 inftree
615 unsigned in, out; /* save starting available input and output */ local
[all...]
/external/qemu/proxy/
H A Dproxy_common.c7 ** 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[
[all...]
/external/qemu/qapi-auto-generated/
H A Dqapi-types.h12 * See the COPYING.LIB file in the top-level directory.
2902 char * in; member in struct:ChardevFile

Completed in 7591 milliseconds

<<11121314151617181920>>