Searched refs:in (Results 1 - 25 of 286) sorted by relevance

1234567891011>>

/packages/apps/Camera/jni/feature_mos/src/mosaic/
H A DInterp.h5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
51 ImageTypeShortBase *in = img->ptr[yi-1] + xi - 1; local
54 tmpf[0] = in[0] * ciTable[off + 40];
55 tmpf[0] += in[1] * ciTable[off];
56 tmpf[0] += in[2] * ciTable[40 - off];
57 tmpf[0] += in[3] * ciTable[80 - off];
58 in += img->pitch;
59 tmpf[1] = in[0] * ciTable[off + 40];
60 tmpf[1] += in[
[all...]
H A DMatrixUtils.h5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
63 static void convert9to33(double out[3][3], double in[9]) { argument
64 out[0][0] = in[0];
65 out[0][1] = in[1];
66 out[0][2] = in[2];
68 out[1][0] = in[3];
69 out[1][1] = in[4];
70 out[1][2] = in[5];
72 out[2][0] = in[
121 convert33to9(double out[9], double in[3][3]) argument
[all...]
/packages/apps/Camera2/jni/feature_mos/src/mosaic/
H A DInterp.h5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
51 ImageTypeShortBase *in = img->ptr[yi-1] + xi - 1; local
54 tmpf[0] = in[0] * ciTable[off + 40];
55 tmpf[0] += in[1] * ciTable[off];
56 tmpf[0] += in[2] * ciTable[40 - off];
57 tmpf[0] += in[3] * ciTable[80 - off];
58 in += img->pitch;
59 tmpf[1] = in[0] * ciTable[off + 40];
60 tmpf[1] += in[
[all...]
H A DMatrixUtils.h5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
63 static void convert9to33(double out[3][3], double in[9]) { argument
64 out[0][0] = in[0];
65 out[0][1] = in[1];
66 out[0][2] = in[2];
68 out[1][0] = in[3];
69 out[1][1] = in[4];
70 out[1][2] = in[5];
72 out[2][0] = in[
121 convert33to9(double out[9], double in[3][3]) argument
[all...]
/packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
H A DInterp.h5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
51 ImageTypeShortBase *in = img->ptr[yi-1] + xi - 1; local
54 tmpf[0] = in[0] * ciTable[off + 40];
55 tmpf[0] += in[1] * ciTable[off];
56 tmpf[0] += in[2] * ciTable[40 - off];
57 tmpf[0] += in[3] * ciTable[80 - off];
58 in += img->pitch;
59 tmpf[1] = in[0] * ciTable[off + 40];
60 tmpf[1] += in[
[all...]
H A DMatrixUtils.h5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
63 static void convert9to33(double out[3][3], double in[9]) { argument
64 out[0][0] = in[0];
65 out[0][1] = in[1];
66 out[0][2] = in[2];
68 out[1][0] = in[3];
69 out[1][1] = in[4];
70 out[1][2] = in[5];
72 out[2][0] = in[
121 convert33to9(double out[9], double in[3][3]) argument
[all...]
/packages/apps/UnifiedEmail/src/org/apache/commons/io/input/
H A DCloseShieldInputStream.java6 * (the "License"); you may not use this file except in compliance with
11 * Unless required by applicable law or agreed to in writing, software
24 * This class is typically used in cases where an input stream needs to be
37 * @param in underlying input stream
39 public CloseShieldInputStream(InputStream in) { argument
40 super(in);
49 in = new ClosedInputStream();
H A DProxyInputStream.java6 * (the "License"); you may not use this file except in compliance with
11 * Unless required by applicable law or agreed to in writing, software
44 // the proxy is stored in a protected superclass variable named 'in'
53 return in.read();
63 return in.read(bts);
75 return in.read(bts, st, end);
85 return in.skip(ln);
94 return in.available();
102 in
[all...]
H A DProxyReader.java6 * (the "License"); you may not use this file except in compliance with
11 * Unless required by applicable law or agreed to in writing, software
44 // the proxy is stored in a protected superclass variable named 'in'
53 return in.read();
63 return in.read(chr);
75 return in.read(chr, st, end);
85 return in.skip(ln);
94 return in.ready();
102 in
[all...]
H A DAutoCloseInputStream.java6 * (the "License"); you may not use this file except in compliance with
11 * Unless required by applicable law or agreed to in writing, software
26 * closed, so any allocated in-memory buffers can be freed even if the
42 * @param in underlying input stream
44 public AutoCloseInputStream(InputStream in) { argument
45 super(in);
62 in.close();
63 in = new ClosedInputStream();
71 * @return next byte in the stream, or -1 if no more bytes are available
75 int n = in
[all...]
H A DSwappedDataInputStream.java6 * (the "License"); you may not use this file except in compliance with
11 * Unless required by applicable law or agreed to in writing, software
71 return (byte)in.read();
95 return EndianUtils.readSwappedDouble( in );
107 return EndianUtils.readSwappedFloat( in );
161 return EndianUtils.readSwappedInteger( in );
186 return EndianUtils.readSwappedLong( in );
198 return EndianUtils.readSwappedShort( in );
210 return in.read();
222 return EndianUtils.readSwappedUnsignedShort( in );
[all...]
/packages/services/Telephony/common/src/com/android/services/telephony/common/
H A DICallHandlerService.aidl5 * 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 void onIncoming(in Call call, in List<String> textReponses);
48 void onUpdate(in List<Call> call);
53 void onDisconnect(in Call call);
59 void onAudioModeChange(in int mode, in boolean muted);
65 void onSupportedAudioModeChange(in int modeMask);
68 * Called when the system wants to bring the in
[all...]
/packages/apps/UnifiedEmail/src/com/android/mail/providers/protos/mock/
H A DMockAttachment.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
26 public MockAttachment(Parcel in) { argument
27 super(in);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
H A DFileTransforms.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
30 public static InputStream getDecryptedStream(InputStream in) { argument
32 return in;
35 public static InputStream getUncompressedStream(InputStream in) throws IOException { argument
36 return new GZIPInputStream(in);
/packages/services/Telephony/src/com/android/phone/
H A DINetworkQueryService.aidl5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
36 void startNetworkQuery(in INetworkQueryServiceCallback cb);
40 * This may not do anything for the Query request in the
44 void stopNetworkQuery(in INetworkQueryServiceCallback cb);
H A DINetworkQueryServiceCallback.aidl5 * 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 void onQueryComplete(in List<OperatorInfo> networkInfoArray, int status);
/packages/apps/Email/src/com/beetstra/jutf7/
H A DUTF7StyleCharsetDecoder.java6 * "Software"), to deal in the Software without restriction, including
13 * included in all copies or substantial portions of the Software.
64 protected CoderResult decodeLoop(ByteBuffer in, CharBuffer out) { argument
65 while (in.hasRemaining()) {
66 byte b = in.get();
70 return malformed(in);
73 return overflow(in);
80 return overflow(in);
81 CoderResult result = handleBase64(in, out, b);
90 return malformed(in);
103 overflow(ByteBuffer in) argument
120 handleBase64(ByteBuffer in, CharBuffer out, byte lastRead) argument
172 malformed(ByteBuffer in) argument
[all...]
/packages/apps/Email/emailcommon/src/com/android/emailcommon/service/
H A DIPolicyService.aidl5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
21 boolean isActive(in Policy policies);
23 void setAccountPolicy(long accountId, in Policy policy, String securityKey);
/packages/apps/UnifiedEmail/src/com/android/mail/providers/protos/exchange/
H A DExchangeAttachment.java5 * 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 public ExchangeAttachment(Parcel in) { argument
32 super(in);
33 contentId = in.readString();
34 messageKey = in.readLong();
35 location = in.readString();
36 encoding = in.readString();
37 content = in.readString();
38 flags = in
[all...]
/packages/inputmethods/OpenWnn/libs/libwnnDictionary/include/
H A Dnj_dic.h5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
51 #define NJ_INT16_READ(in) \
52 (((((NJ_INT16)((in)[0])) << 8) & 0xff00U) + ((in)[1] & 0xffU))
54 #define NJ_INT32_READ(in) \
55 (((((NJ_INT32)((in)[0])) << 24) & 0xff000000) | \
56 ((((NJ_INT32)((in)[1])) << 16) & 0xff0000) | \
57 ((((NJ_INT32)((in)[2])) << 8) & 0xff00) | \
58 ((((NJ_INT32)((in)[
[all...]
/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
H A DBluetoothPbapReceiver.java6 * Redistribution and use in source and binary forms, with or without
12 * - Redistributions in binary form must reproduce the above copyright notice,
13 * this list of conditions and the following disclaimer in the documentation
51 Intent in = new Intent();
52 in.putExtras(intent);
53 in.setClass(context, BluetoothPbapService.class);
55 in.putExtra("action", action);
61 in.putExtra(BluetoothAdapter.EXTRA_STATE, state);
77 if (V) Log.v(TAG,"***********Calling start service!!!! with action = " + in.getAction());
78 context.startService(in);
[all...]
/packages/apps/Nfc/src/com/android/nfc/handover/
H A DPendingHandoverTransfer.java5 * 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 public PendingHandoverTransfer createFromParcel(Parcel in) {
43 int id = in.readInt();
44 boolean incoming = (in.readInt() == 1) ? true : false;
45 BluetoothDevice remoteDevice = in.readParcelable(getClass().getClassLoader());
46 boolean remoteActivating = (in.readInt() == 1) ? true : false;
47 int numUris = in.readInt();
51 in.readTypedArray(uris, Uri.CREATOR);
/packages/apps/UnifiedEmail/src/com/android/mail/providers/
H A DFolderList.java24 private FolderList(Collection<Folder> in) { argument
25 if (in == null) {
28 folders = ImmutableList.copyOf(in);
32 public FolderList(Parcel in) { argument
33 folders = ImmutableList.copyOf(in.createTypedArrayList(Folder.CREATOR));
58 * @param in a list of Folders
61 public static byte[] listToBlob(List<Folder> in) { argument
63 p.writeTypedList(in);
82 public static FolderList copyOf(Collection<Folder> in) { argument
83 return new FolderList(in);
[all...]
/packages/apps/Camera2/src/com/android/camera/tinyplanet/
H A DTinyPlanetNative.java5 * 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 * @param in the 360 degree stereographically mapped panoramic input image.
38 * @param angleRadians the angle of the tiny planet in radians.
40 public static native void process(Bitmap in, int width, int height, Bitmap out, int outputSize, argument
/packages/apps/KeyChain/support/src/com/android/keychain/tests/support/
H A DIKeyChainServiceTestSupport.aidl5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
35 boolean keystorePut(String key, in byte[] value);
36 boolean keystoreImportKey(String key, in byte[] value);

Completed in 574 milliseconds

1234567891011>>