Searched refs:in (Results 1 - 25 of 723) sorted by last modified time

1234567891011>>

/frameworks/wilhelm/src/
H A DAndroid.mk26 # optional, see comments in MPH_to.c: -DUSE_DESIGNATED_INITIALIZERS -S
/frameworks/testing/androidtestlib/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
9 # Unless required by applicable law or agreed to in writing, software
/frameworks/testing/androidtestlib/tests/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
9 # Unless required by applicable law or agreed to in writing, software
/frameworks/testing/uiautomator/samples/SkeletonTest/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
9 # Unless required by applicable law or agreed to in writing, software
/frameworks/support/renderscript/v8/rs_support/
H A DAndroid.mk52 # used in jni/Android.mk
69 # used in jni/Android.mk
H A DrsMatrix4x4.cpp5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
302 void Matrix4x4::vectorMultiply(float *out, const float *in) const {
303 out[0] = (m[0] * in[0]) + (m[4] * in[1]) + (m[8] * in[2]) + m[12];
304 out[1] = (m[1] * in[0]) + (m[5] * in[1]) + (m[9] * in[2]) + m[13];
305 out[2] = (m[2] * in[
[all...]
H A DrsRuntime.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
87 Allocation *in,
H A DrsScriptC_Lib.cpp5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
92 // have to apply locking for proper behavior in RenderScript.
158 Allocation *in, Allocation *out,
161 target->runForEach(rsc, /* root slot */ 0, in, out, usr, usrBytes, call);
156 rsrForEach(Context *rsc, Script *sc, Script *target, Allocation *in, Allocation *out, const void *usr, uint32_t usrBytes, const RsScriptCall *call) argument
H A Drs_hal.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 const void *in; member in struct:android::renderscript::__anon1583
/frameworks/support/renderscript/v8/rs_support/driver/
H A DrsdBcc.cpp5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
379 //ALOGE("usr ptr in %p, out %p", mtls->ptrIn, mtls->ptrOut);
382 p.in = mtls->fep.ptrIn + (mtls->fep.yStrideIn * p.y);
384 bare_fn(p.in, p.out, p.usr, x, p.y, 0, 0);
385 p.in = (char *)(p.in) + mtls->fep.eStrideIn;
410 //ALOGE("usr ptr in %p, out %p", mtls->ptrIn, mtls->ptrOut);
413 p.in = mtls->fep.ptrIn + (mtls->fep.eStrideIn * xStart);
415 bare_fn(p.in,
[all...]
H A DrsdIntrinsicBlend.cpp5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
102 uchar4 *in = (uchar4 *)p->in; local
106 in += xstart;
116 for (;x1 < x2; x1++, out++, in++) {
117 *out = *in;
127 rsdIntrinsicBlendSrcOver_K(out, in, len);
130 in += len << 3;
133 for (;x1 < x2; x1++, out++, in
[all...]
H A DrsdIntrinsicColorMatrix.cpp5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
96 uchar4 *in = (uchar4 *)p->in; local
100 in += xstart;
109 rsdIntrinsicColorMatrixDot_K(out, in, cp->ip, len);
111 rsdIntrinsicColorMatrix3x3_K(out, in, cp->ip, len);
114 rsdIntrinsicColorMatrix4x4_K(out, in, cp->ip, len);
118 in += len << 2;
123 One(p, out++, in
[all...]
H A DrsdIntrinsicLUT.cpp5 * 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 uchar4 *in = (uchar4 *)p->in; local
47 in += xstart;
57 uchar4 p = *in;
60 in++;
H A DrsdRuntimeStubs.cpp5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
141 Allocation *in,
144 rsrForEach(rsc, sc, target, in, out, NULL, 0, NULL);
148 Allocation *in,
152 rsrForEach(rsc, sc, target, in, out, usr, 0, NULL);
156 Allocation *in,
161 rsrForEach(rsc, sc, target, in, out, usr, 0, call);
165 Allocation *in,
170 rsrForEach(rsc, sc, target, in, ou
140 SC_ForEach_SAA(Script *target, Allocation *in, Allocation *out) argument
147 SC_ForEach_SAAU(Script *target, Allocation *in, Allocation *out, const void *usr) argument
155 SC_ForEach_SAAUS(Script *target, Allocation *in, Allocation *out, const void *usr, const RsScriptCall *call) argument
164 SC_ForEach_SAAUL(Script *target, Allocation *in, Allocation *out, const void *usr, uint32_t usrLen) argument
173 SC_ForEach_SAAULS(Script *target, Allocation *in, Allocation *out, const void *usr, uint32_t usrLen, const RsScriptCall *call) argument
[all...]
/frameworks/support/renderscript/v8/rs_support/scriptc/
H A Drs_matrix.rsh5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
159 * Multiply two matrix (lhs, rhs) and place the result in m.
263 * @param fovy Field of view, in degrees along the Y axis.
277 rsMatrixMultiply(rs_matrix4x4 *m, float4 in);
283 rsMatrixMultiply(rs_matrix4x4 *m, float3 in);
289 rsMatrixMultiply(rs_matrix4x4 *m, float2 in);
295 rsMatrixMultiply(rs_matrix3x3 *m, float3 in);
301 rsMatrixMultiply(rs_matrix3x3 *m, float2 in);
307 rsMatrixMultiply(rs_matrix2x2 *m, float2 in);
[all...]
/frameworks/support/v13/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
9 # Unless required by applicable law or agreed to in writing, software
17 # Note: the source code is in java/, not src/, because this code is also part of
45 # Include this library in the build server's output directory
/frameworks/support/v13/java/android/support/v13/app/
H A DFragmentTabHost.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
89 private SavedState(Parcel in) { argument
90 super(in);
91 curTab = in.readString();
109 public SavedState createFromParcel(Parcel in) {
110 return new SavedState(in);
121 // because the simple Context construct can result in a broken object!
255 // This fragment was restored in the active state,
/frameworks/support/v4/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
9 # Unless required by applicable law or agreed to in writing, software
17 # Note: the source code is in java/, not src/, because this code is also part of
118 # Include this library in the build server's output directory
/frameworks/support/v4/honeycomb_mr2/android/support/v4/os/
H A DParcelableCompatCreatorCallbacks.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
33 * @param in The Parcel to read the object's data from.
34 * @param loader The ClassLoader that this object is being created in.
37 public T createFromParcel(Parcel in, ClassLoader loader); argument
H A DParcelableCompatHoneycombMR2.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
35 public T createFromParcel(Parcel in) { argument
36 return mCallbacks.createFromParcel(in, null);
39 public T createFromParcel(Parcel in, ClassLoader loader) { argument
40 return mCallbacks.createFromParcel(in, loader);
/frameworks/support/v4/java/android/support/v4/app/
H A DBackStackRecord.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
83 public BackStackState(Parcel in) { argument
84 mOps = in.createIntArray();
85 mTransition = in.readInt();
86 mTransitionStyle = in.readInt();
87 mName = in.readString();
88 mIndex = in.readInt();
89 mBreadCrumbTitleRes = in.readInt();
90 mBreadCrumbTitleText = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(in);
[all...]
H A DFragment.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
75 public FragmentState(Parcel in) { argument
76 mClassName = in.readString();
77 mIndex = in.readInt();
78 mFromLayout = in.readInt() != 0;
79 mFragmentId = in.readInt();
80 mContainerId = in.readInt();
81 mTag = in.readString();
82 mRetainInstance = in
305 SavedState(Parcel in, ClassLoader loader) argument
[all...]
H A DFragmentManager.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
131 * in the state, and if changes are made after the state is saved then they
136 /** @hide -- remove once prebuilts are in. */
158 * from XML or as the container ID when added in a transaction. This first
168 * from XML or as supplied when added in a transaction. This first
250 * Return the number of entries currently in the back stack.
255 * Return the BackStackEntry at index <var>index</var> in the back stack;
272 * Put a reference to a fragment in a Bundle. This Bundle can be
277 * @param bundle The bundle in whic
346 FragmentManagerState(Parcel in) argument
[all...]
H A DFragmentTabHost.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
36 * its tab content. When placing this in a view hierarchy, after inflating
40 * <p>Here is a simple example of using a FragmentTabHost in an Activity:
97 private SavedState(Parcel in) { argument
98 super(in);
99 curTab = in.readString();
117 public SavedState createFromParcel(Parcel in) {
118 return new SavedState(in);
129 // because the simple Context construct can result in
[all...]
/frameworks/support/v4/java/android/support/v4/view/
H A DViewPager.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
62 * development. The API will likely change in later updates of
66 * <p>ViewPager is most often used in conjunction with {@link android.app.Fragment},
77 * <p>Here is a more complicated example of ViewPager, using it in conjuction
79 * ViewPager in the API 4+ Support Demos and API 13+ Support Demos sample code.
219 * Indicates that the pager is in an idle, settled state. The current page
220 * is fully in view and no animation is in progress.
230 * Indicates that the pager is in th
1187 SavedState(Parcel in, ClassLoader loader) argument
[all...]

Completed in 4181 milliseconds

1234567891011>>