HomeSort by relevance Sort by last modified time
    Searched defs:mIn (Results 1 - 25 of 34) sorted by null

1 2

  /sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/templates/
TemplatedInputStream.java 28 private final InputStream mIn;
35 this.mIn = in;
56 int c = mIn.read();
59 c = mIn.read();
63 for (c = mIn.read(); c != '}' && c >= 0; c = mIn.read())
84 mIn.close();
  /frameworks/native/include/binder/
IPCThreadState.h 118 Parcel mIn;
  /packages/apps/Email/src/com/android/email/
FixedLengthInputStream.java 28 private final InputStream mIn;
33 this.mIn = in;
46 return mIn.read();
55 int d = mIn.read(b, offset, Math.min(mLength - mCount, length));
78 return String.format("FixedLengthInputStream(in=%s, length=%d)", mIn.toString(), mLength);
PeekableInputStream.java 28 private final InputStream mIn;
33 this.mIn = in;
39 return mIn.read();
57 return mIn.read(b, offset, length);
61 int r = mIn.read(b, offset + 1, length - 1);
78 mIn.toString(), mPeeked, mPeekedByte);
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
AllocationResize.java 27 private Allocation mIn;
32 public void forEach(int testId, Allocation mIn, Allocation mOut) throws RSRuntimeException {
33 mScript.forEach_root(mIn, mOut);
38 mIn = Allocation.createSized(mRS, Element.I32(mRS), INPUTSIZE/2);
40 mIn.resize(INPUTSIZE);
49 mIn.copy1DRangeFrom(0, INPUTSIZE, inArray);
52 RSUtils.forEach(this, 0, mIn, mOut);
InitTest.java 25 private Allocation mIn;
30 public void forEach(int testId, Allocation mIn, Allocation mOut) throws RSRuntimeException {
31 script.forEach_root(mIn, mOut);
39 mIn = Allocation.createSized(mRS, Element.F32(mRS), INPUTSIZE);
46 mIn.copy1DRangeFrom(0, INPUTSIZE, in);
49 RSUtils.forEach(this, 0, mIn, mOut);
CrossTest.java 27 private Allocation mIn;
37 public void forEach(int testId, Allocation mIn, Allocation mOut) throws RSRuntimeException {
40 script_f32.forEach_cross_f32_3(mIn, mOut);
43 script_f32.forEach_cross_f32_4(mIn, mOut);
46 script_f32_relaxed.forEach_cross_f32_3(mIn, mOut);
49 script_f32_relaxed.forEach_cross_f32_4(mIn, mOut);
72 return mIn;
85 mIn = in.getAllocation();
93 mIn = in.getAllocation();
104 mIn = in.getAllocation()
    [all...]
ClearObjectTest.java 43 public void forEach(int testId, Allocation mIn, Allocation mOut) throws RSRuntimeException {
65 Allocation mIn = Allocation.createSized(mRS, Element.I32(mRS), ObjectNum);
69 RSUtils.forEach(this, TEST_ID_ELEMENT, mIn, mOut);
82 Allocation mIn = Allocation.createSized(mRS, Element.I32(mRS), ObjectNum);
86 RSUtils.forEach(this, TEST_ID_TYPE, mIn, mOut);
98 Allocation mIn = Allocation.createSized(mRS, Element.I32(mRS), ObjectNum);
99 Allocation allocation = Allocation.createTyped(mRS, mIn.getType());
102 RSUtils.forEach(this, TEST_ID_ALLOCATION, mIn, mOut);
115 Allocation mIn = Allocation.createSized(mRS, Element.I32(mRS), ObjectNum);
118 RSUtils.forEach(this, TEST_ID_SAMPLER, mIn, mOut)
    [all...]
IsObjectTest.java 30 private Allocation mIn;
65 mIn = filed.getAllocation();
68 ms_is_object.forEach_is_object_element(mIn, mOut);
85 mIn = filed.getAllocation();
89 ms_is_object.forEach_is_object_type(mIn, mOut);
109 mIn = filed.getAllocation();
113 ms_is_object.forEach_is_object_allocation(mIn, mOut);
132 mIn = filed.getAllocation();
136 ms_is_object.forEach_is_object_sampler(mIn, mOut);
154 mIn = filed.getAllocation()
    [all...]
SetObjectTest.java 29 private Allocation mIn;
64 mIn = filed.getAllocation();
67 ms_set.forEach_set_object_element(mIn, mOut);
84 mIn = filed.getAllocation();
88 ms_set.forEach_set_object_type(mIn, mOut);
107 mIn = filed.getAllocation();
111 ms_set.forEach_set_object_allocation(mIn, mOut);
129 mIn = filed.getAllocation();
133 ms_set.forEach_set_object_sampler(mIn, mOut);
151 mIn = filed.getAllocation()
    [all...]
StepTest.java 26 private Allocation mIn;
36 public void forEach(int testId, Allocation mIn, Allocation mOut) throws RSRuntimeException {
39 script_f32.forEach_step_f32_1(mIn, mOut);
42 script_f32.forEach_step_f32_2(mIn, mOut);
45 script_f32.forEach_step_f32_3(mIn, mOut);
48 script_f32.forEach_step_f32_4(mIn, mOut);
52 script_f32_relaxed.forEach_step_f32_1(mIn, mOut);
55 script_f32_relaxed.forEach_step_f32_2(mIn, mOut);
58 script_f32_relaxed.forEach_step_f32_3(mIn, mOut);
61 script_f32_relaxed.forEach_step_f32_4(mIn, mOut)
    [all...]
Atan2PiTest.java 27 private Allocation mIn;
37 public void forEach(int testId, Allocation mIn, Allocation mOut) throws RSRuntimeException {
40 script_f32.forEach_atan2pi_f32_1(mIn, mOut);
43 script_f32.forEach_atan2pi_f32_2(mIn, mOut);
46 script_f32.forEach_atan2pi_f32_3(mIn, mOut);
49 script_f32.forEach_atan2pi_f32_4(mIn, mOut);
53 script_f32_relaxed.forEach_atan2pi_f32_1(mIn, mOut);
56 script_f32_relaxed.forEach_atan2pi_f32_2(mIn, mOut);
59 script_f32_relaxed.forEach_atan2pi_f32_3(mIn, mOut);
62 script_f32_relaxed.forEach_atan2pi_f32_4(mIn, mOut)
    [all...]
Atan2Test.java 27 private Allocation mIn;
37 public void forEach(int testId, Allocation mIn, Allocation mOut) throws RSRuntimeException {
40 script_f32.forEach_atan2_f32_1(mIn, mOut);
43 script_f32.forEach_atan2_f32_2(mIn, mOut);
46 script_f32.forEach_atan2_f32_3(mIn, mOut);
49 script_f32.forEach_atan2_f32_4(mIn, mOut);
53 script_f32_relaxed.forEach_atan2_f32_1(mIn, mOut);
56 script_f32_relaxed.forEach_atan2_f32_2(mIn, mOut);
59 script_f32_relaxed.forEach_atan2_f32_3(mIn, mOut);
62 script_f32_relaxed.forEach_atan2_f32_4(mIn, mOut)
    [all...]
CopysignTest.java 27 private Allocation mIn;
37 public void forEach(int testId, Allocation mIn, Allocation mOut) throws RSRuntimeException {
40 script_f32.forEach_copysign_f32_1(mIn, mOut);
43 script_f32.forEach_copysign_f32_2(mIn, mOut);
46 script_f32.forEach_copysign_f32_3(mIn, mOut);
49 script_f32.forEach_copysign_f32_4(mIn, mOut);
53 script_f32_relaxed.forEach_copysign_f32_1(mIn, mOut);
56 script_f32_relaxed.forEach_copysign_f32_2(mIn, mOut);
59 script_f32_relaxed.forEach_copysign_f32_3(mIn, mOut);
62 script_f32_relaxed.forEach_copysign_f32_4(mIn, mOut)
    [all...]
FdimTest.java 26 private Allocation mIn;
36 public void forEach(int testId, Allocation mIn, Allocation mOut) throws RSRuntimeException {
39 script_f32.forEach_fdim_f32_1(mIn, mOut);
42 script_f32.forEach_fdim_f32_2(mIn, mOut);
45 script_f32.forEach_fdim_f32_3(mIn, mOut);
48 script_f32.forEach_fdim_f32_4(mIn, mOut);
52 script_f32_relaxed.forEach_fdim_f32_1(mIn, mOut);
55 script_f32_relaxed.forEach_fdim_f32_2(mIn, mOut);
58 script_f32_relaxed.forEach_fdim_f32_3(mIn, mOut);
61 script_f32_relaxed.forEach_fdim_f32_4(mIn, mOut)
    [all...]
FmaTest.java 27 private Allocation mIn;
37 public void forEach(int testId, Allocation mIn, Allocation mOut) throws RSRuntimeException {
40 script_f32.forEach_fma_f32_1(mIn, mOut);
43 script_f32.forEach_fma_f32_2(mIn, mOut);
46 script_f32.forEach_fma_f32_3(mIn, mOut);
49 script_f32.forEach_fma_f32_4(mIn, mOut);
53 script_f32_relaxed.forEach_fma_f32_1(mIn, mOut);
56 script_f32_relaxed.forEach_fma_f32_2(mIn, mOut);
59 script_f32_relaxed.forEach_fma_f32_3(mIn, mOut);
62 script_f32_relaxed.forEach_fma_f32_4(mIn, mOut)
    [all...]
FmaxTest.java 26 private Allocation mIn;
39 script_f32.forEach_fmax_f32_1(mIn, mOut);
42 script_f32.forEach_fmax_f32_2(mIn, mOut);
45 script_f32.forEach_fmax_f32_3(mIn, mOut);
48 script_f32.forEach_fmax_f32_4(mIn, mOut);
52 script_f32_relaxed.forEach_fmax_f32_1(mIn, mOut);
55 script_f32_relaxed.forEach_fmax_f32_2(mIn, mOut);
58 script_f32_relaxed.forEach_fmax_f32_3(mIn, mOut);
61 script_f32_relaxed.forEach_fmax_f32_4(mIn, mOut);
80 return mIn;
    [all...]
FminTest.java 26 private Allocation mIn;
36 public void forEach(int testId, Allocation mIn, Allocation mOut) throws RSRuntimeException {
39 script_f32.forEach_fmin_f32_1(mIn, mOut);
42 script_f32.forEach_fmin_f32_2(mIn, mOut);
45 script_f32.forEach_fmin_f32_3(mIn, mOut);
48 script_f32.forEach_fmin_f32_4(mIn, mOut);
52 script_f32_relaxed.forEach_fmin_f32_1(mIn, mOut);
55 script_f32_relaxed.forEach_fmin_f32_2(mIn, mOut);
58 script_f32_relaxed.forEach_fmin_f32_3(mIn, mOut);
61 script_f32_relaxed.forEach_fmin_f32_4(mIn, mOut)
    [all...]
FmodTest.java 27 private Allocation mIn;
37 public void forEach(int testId, Allocation mIn, Allocation mOut) throws RSRuntimeException {
40 script_f32.forEach_fmod_f32_1(mIn, mOut);
43 script_f32.forEach_fmod_f32_2(mIn, mOut);
46 script_f32.forEach_fmod_f32_3(mIn, mOut);
49 script_f32.forEach_fmod_f32_4(mIn, mOut);
53 script_f32_relaxed.forEach_fmod_f32_1(mIn, mOut);
56 script_f32_relaxed.forEach_fmod_f32_2(mIn, mOut);
59 script_f32_relaxed.forEach_fmod_f32_3(mIn, mOut);
62 script_f32_relaxed.forEach_fmod_f32_4(mIn, mOut)
    [all...]
HypotTest.java 27 private Allocation mIn;
37 public void forEach(int testId, Allocation mIn, Allocation mOut) throws RSRuntimeException {
40 script_f32.forEach_hypot_f32_1(mIn, mOut);
43 script_f32.forEach_hypot_f32_2(mIn, mOut);
46 script_f32.forEach_hypot_f32_3(mIn, mOut);
49 script_f32.forEach_hypot_f32_4(mIn, mOut);
53 script_f32_relaxed.forEach_hypot_f32_1(mIn, mOut);
56 script_f32_relaxed.forEach_hypot_f32_2(mIn, mOut);
59 script_f32_relaxed.forEach_hypot_f32_3(mIn, mOut);
62 script_f32_relaxed.forEach_hypot_f32_4(mIn, mOut)
    [all...]
  /frameworks/base/core/java/android/speech/srec/
UlawEncoderInputStream.java 39 private InputStream mIn;
136 mIn = in;
142 if (mIn == null) throw new IllegalStateException("not open");
146 int n = mIn.read(mBuf, mBufCount, Math.min(length * 2, mBuf.length - mBufCount));
152 int n = Math.min(mBufCount / 2, length);
176 if (mIn != null) {
177 InputStream in = mIn;
178 mIn = null;
185 return (mIn.available() + mBufCount) / 2
    [all...]
  /frameworks/base/services/java/com/android/server/pm/
Installer.java 33 InputStream mIn;
56 mIn = mSocket.getInputStream();
73 if (mIn != null)
74 mIn.close();
83 mIn = null;
93 count = mIn.read(buffer, off, len - off);
  /packages/apps/Email/src/com/android/email/mail/transport/
MailTransport.java 61 private InputStream mIn;
124 mIn = new BufferedInputStream(mSocket.getInputStream(), 1024);
158 mIn = new BufferedInputStream(mSocket.getInputStream(), 1024);
222 return (mIn != null && mOut != null &&
231 mIn.close();
245 mIn = null;
251 return mIn;
  /frameworks/compile/slang/
slang_rs_export_foreach.h 48 const clang::ParmVarDecl *mIn;
67 mIn(NULL), mOut(NULL), mUsrData(NULL), mX(NULL), mY(NULL), mZ(NULL),
94 return (mIn != NULL);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
ModelInterpreter.java 145 InputStream mIn;
168 mIn = in;
213 mIn = s.getInputStream();
225 mLineReader = new LineReader (mIn);
647 mIn.close();

Completed in 1300 milliseconds

1 2