Searched refs:out (Results 76 - 100 of 654) sorted by relevance

1234567891011>>

/frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
H A Dwbalance.rs96 uchar4 out;
99 out.r = sum15r/count15r;
100 out.g = sum15g/count15g;
101 out.b = sum15b/count15b;
103 out.r = out.g = out.b = 255;
106 return out;
126 uchar4 out;
127 out
[all...]
/frameworks/compile/mclinker/lib/Object/
H A DSectionMap.cpp164 iterator out, outBegin = begin(), outEnd = end(); local
165 for (out = outBegin; out != outEnd; ++out) {
166 if (*out != NULL) {
167 Output::iterator in, inBegin = (*out)->begin(), inEnd = (*out)->end();
172 delete *out;
181 const_iterator out, outBegin = begin(), outEnd = end(); local
182 for (out
195 iterator out, outBegin = begin(), outEnd = end(); local
209 const_iterator out, outBegin = begin(), outEnd = end(); local
220 iterator out, outBegin = begin(), outEnd = end(); local
233 iterator out, outBegin = begin(), outEnd = end(); local
266 iterator out, outBegin = begin(), outEnd = end(); local
[all...]
/frameworks/base/core/java/com/android/internal/util/
H A DXmlUtils.java174 * @param out Where to write the XML data.
181 public static final void writeMapXml(Map val, OutputStream out) argument
184 serializer.setOutput(out, "utf-8");
196 * @param out Where to write the XML data.
203 public static final void writeListXml(List val, OutputStream out) argument
207 serializer.setOutput(out, "utf-8");
221 * @param out XmlSerializer to write the map into.
228 public static final void writeMapXml(Map val, String name, XmlSerializer out) argument
230 writeMapXml(val, name, out, null);
240 * @param out XmlSerialize
250 writeMapXml(Map val, String name, XmlSerializer out, WriteMapCallback callback) argument
284 writeMapXml(Map val, XmlSerializer out, WriteMapCallback callback) argument
313 writeListXml(List val, String name, XmlSerializer out) argument
337 writeSetXml(Set val, String name, XmlSerializer out) argument
369 writeByteArrayXml(byte[] val, String name, XmlSerializer out) argument
414 writeIntArrayXml(int[] val, String name, XmlSerializer out) argument
454 writeLongArrayXml(long[] val, String name, XmlSerializer out) argument
493 writeDoubleArrayXml(double[] val, String name, XmlSerializer out) argument
532 writeStringArrayXml(String[] val, String name, XmlSerializer out) argument
574 writeValueXml(Object v, String name, XmlSerializer out) argument
596 writeValueXml(Object v, String name, XmlSerializer out, WriteMapCallback callback) argument
1396 writeIntAttribute(XmlSerializer out, String name, int value) argument
1419 writeLongAttribute(XmlSerializer out, String name, long value) argument
1433 writeFloatAttribute(XmlSerializer out, String name, float value) argument
1453 writeBooleanAttribute(XmlSerializer out, String name, boolean value) argument
1463 writeUriAttribute(XmlSerializer out, String name, Uri value) argument
1474 writeStringAttribute(XmlSerializer out, String name, String value) argument
1490 writeByteArrayAttribute(XmlSerializer out, String name, byte[] value) argument
1507 writeBitmapAttribute(XmlSerializer out, String name, Bitmap value) argument
1530 writeUnknownObject(Object v, String name, XmlSerializer out) argument
[all...]
/frameworks/base/core/java/android/view/
H A DIWindowSession.aidl39 in int viewVisibility, out Rect outContentInsets,
40 out InputChannel outInputChannel);
42 in int viewVisibility, in int layerStackId, out Rect outContentInsets,
43 out InputChannel outInputChannel);
45 in int viewVisibility, out Rect outContentInsets);
47 in int viewVisibility, in int layerStackId, out Rect outContentInsets);
91 int flags, out Rect outFrame, out Rect outOverscanInsets,
92 out Rect outContentInsets, out Rec
[all...]
/frameworks/base/tools/preload/
H A DWritePreloadedClassFile.java57 Writer out = new BufferedWriter(new OutputStreamWriter(
61 out.write("# Classes which are preloaded by"
63 out.write("# Automatically generated by frameworks/base/tools/preload/"
65 out.write("# MIN_LOAD_TIME_MICROS=" + MIN_LOAD_TIME_MICROS + "\n");
66 out.write("# MIN_PROCESSES=" + MIN_PROCESSES + "\n");
93 System.out.println(initialSize
109 System.out.println("Added " + (toPreload.size() - initialSize)
112 System.out.println(toPreload.size()
121 out.write(loadedClass.name + "\n");
124 out
[all...]
/frameworks/av/media/libstagefright/codecs/mp3dec/src/
H A Dpvmp3_imdct_synth.cpp243 int32 * out = in + (band * FILTERBANK_BANDS); local
250 pvmp3_mdct_18(out, history, normal_win);
256 pvmp3_mdct_18(out, history, start_win);
262 pvmp3_mdct_18(out, history, stop_win);
273 Scratch_mem[i ] = out[(i*3)];
274 Scratch_mem[6 +i] = out[(i*3) + 1];
275 Scratch_mem[12 +i] = out[(i*3) + 2];
288 out[i] = temp;
293 out[i+6] = fxp_mul32_Q32(Scratch_mem[i] << 1, short_win[i]);
294 out[
334 int32 * out = in + (band * FILTERBANK_BANDS); local
[all...]
/frameworks/av/media/img_utils/include/img_utils/
H A DTiffEntryImpl.h41 status_t writeData(uint32_t offset, /*out*/EndianOutput* out) const;
42 status_t writeTagInfo(uint32_t offset, /*out*/EndianOutput* out) const;
123 status_t TiffEntryImpl<T>::writeTagInfo(uint32_t offset, /*out*/EndianOutput* out) const {
126 BAIL_ON_FAIL(out->write(&mTag, 0, 1), ret);
127 BAIL_ON_FAIL(out->write(&mType, 0, 1), ret);
128 BAIL_ON_FAIL(out->write(&mCount, 0, 1), ret);
132 BAIL_ON_FAIL(out
[all...]
/frameworks/av/media/libeffects/testlibs/
H A DAudioCoefInterpolator.cpp43 audio_coef_t out[]) {
56 getCoefRecurse(index, fracCoord, out, 0);
61 audio_coef_t out[], size_t dim) {
63 memcpy(out, mTable + index, mNumOutDims * sizeof(audio_coef_t));
65 getCoefRecurse(index, fracCoord, out, dim + 1);
72 out[d] = interp(out[d], tempCoef[d], fracCoord[dim]);
42 getCoef(const int intCoord[], uint32_t fracCoord[], audio_coef_t out[]) argument
59 getCoefRecurse(size_t index, const uint32_t fracCoord[], audio_coef_t out[], size_t dim) argument
H A DAudioBiquadFilter.cpp65 void AudioBiquadFilter::process(const audio_sample_t in[], audio_sample_t out[], argument
67 (this->*mCurProcessFunc)(in, out, frameCount);
140 audio_sample_t * out,
143 if (CC_UNLIKELY(in != out)) {
144 memcpy(out, in, frameCount * mNumChannels * sizeof(audio_sample_t));
149 audio_sample_t * out,
174 (*out++) = y0;
183 audio_sample_t * out,
188 process_normal_mono(in, out, frameCount);
192 audio_sample_t * out,
139 process_bypass(const audio_sample_t * in, audio_sample_t * out, int frameCount) argument
148 process_normal_mono(const audio_sample_t * in, audio_sample_t * out, int frameCount) argument
182 process_transition_normal_mono(const audio_sample_t * in, audio_sample_t * out, int frameCount) argument
191 process_transition_bypass_mono(const audio_sample_t * in, audio_sample_t * out, int frameCount) argument
200 process_normal_multi(const audio_sample_t * in, audio_sample_t * out, int frameCount) argument
240 process_transition_normal_multi(const audio_sample_t * in, audio_sample_t * out, int frameCount) argument
249 process_transition_bypass_multi(const audio_sample_t * in, audio_sample_t * out, int frameCount) argument
[all...]
/frameworks/base/core/java/android/util/
H A DBase64OutputStream.java40 * @param out the OutputStream to write the encoded data to
44 public Base64OutputStream(OutputStream out, int flags) { argument
45 this(out, flags, true);
53 * @param out the OutputStream to write the encoded data to
60 public Base64OutputStream(OutputStream out, int flags, boolean encode) { argument
61 super(out);
80 // internal buffer full; write it out.
115 out.close();
117 out.flush();
141 out
[all...]
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/model/
H A DDurableUtils.java33 final ByteArrayOutputStream out = new ByteArrayOutputStream();
34 d.write(new DataOutputStream(out));
35 return out.toByteArray();
85 public static void writeNullableString(DataOutputStream out, String value) throws IOException { argument
87 out.write(1);
88 out.writeUTF(value);
90 out.write(0);
/frameworks/base/services/core/java/com/android/server/
H A DRandomBlock.java67 RandomAccessFile out = null;
69 out = new RandomAccessFile(filename, sync ? "rws" : "rw");
70 toDataOut(out);
71 truncateIfPossible(out);
73 close(out);
87 private void toDataOut(DataOutput out) throws IOException { argument
88 out.write(block);
/frameworks/rs/cpu_ref/
H A DrsCpuIntrinsicLUT.cpp61 uchar *out = (uchar *)p->out; local
72 out[0] = tr[in[0]];
73 out[1] = tg[in[1]];
74 out[2] = tb[in[2]];
75 out[3] = ta[in[3]];
77 out += 4;
/frameworks/base/cmds/media/src/com/android/commands/media/
H A DMedia.java61 public void onShowUsage(PrintStream out) { argument
62 out.println(
131 System.out.println("***Error monitoring session*** " + e.getMessage());
134 System.out.println("No session found with id " + id);
184 System.out.println("onSessionDestroyed. Enter q to quit.");
190 System.out.println("onSessionEvent event=" + event + ", extras=" + extras);
195 System.out.println("onPlaybackStateChanged " + state);
202 System.out.println("onMetadataChanged " + mmString);
207 System.out.println("onQueueChanged, "
213 System.out
[all...]
/frameworks/base/core/java/android/appwidget/
H A DAppWidgetProviderInfo.java308 public void writeToParcel(android.os.Parcel out, int flags) { argument
310 out.writeInt(1);
311 this.provider.writeToParcel(out, flags);
313 out.writeInt(0);
315 out.writeInt(this.minWidth);
316 out.writeInt(this.minHeight);
317 out.writeInt(this.minResizeWidth);
318 out.writeInt(this.minResizeHeight);
319 out.writeInt(this.updatePeriodMillis);
320 out
[all...]
/frameworks/base/core/java/android/ddm/
H A DDdmHandleThread.java160 ByteBuffer out = ByteBuffer.allocate(bufferSize);
161 out.putInt(0);
162 out.putInt(threadId);
163 out.putInt(trace.length);
165 out.putInt(elem.getClassName().length());
166 putString(out, elem.getClassName());
167 out.putInt(elem.getMethodName().length());
168 putString(out, elem.getMethodName());
170 out.putInt(elem.getFileName().length());
171 putString(out, ele
[all...]
/frameworks/base/core/java/android/service/wallpaper/
H A DWallpaperService.java535 protected void dump(String prefix, FileDescriptor fd, PrintWriter out, String[] args) { argument
536 out.print(prefix); out.print("mInitializing="); out.print(mInitializing);
537 out.print(" mDestroyed="); out.println(mDestroyed);
538 out.print(prefix); out.print("mVisible="); out.print(mVisible);
539 out
1271 dump(FileDescriptor fd, PrintWriter out, String[] args) argument
[all...]
/frameworks/rs/cpp/
H A DScriptIntrinsics.cpp81 void ScriptIntrinsicBlend::forEachClear(sp<Allocation> in, sp<Allocation> out) { argument
83 out->getType()->getElement()->isCompatible(mElement) == false) {
86 Script::forEach(0, in, out, NULL, 0);
89 void ScriptIntrinsicBlend::forEachSrc(sp<Allocation> in, sp<Allocation> out) { argument
91 out->getType()->getElement()->isCompatible(mElement) == false) {
94 Script::forEach(1, in, out, NULL, 0);
97 void ScriptIntrinsicBlend::forEachDst(sp<Allocation> in, sp<Allocation> out) { argument
99 out->getType()->getElement()->isCompatible(mElement) == false) {
102 Script::forEach(2, in, out, NULL, 0);
105 void ScriptIntrinsicBlend::forEachSrcOver(sp<Allocation> in, sp<Allocation> out) { argument
113 forEachDstOver(sp<Allocation> in, sp<Allocation> out) argument
121 forEachSrcIn(sp<Allocation> in, sp<Allocation> out) argument
129 forEachDstIn(sp<Allocation> in, sp<Allocation> out) argument
137 forEachSrcOut(sp<Allocation> in, sp<Allocation> out) argument
145 forEachDstOut(sp<Allocation> in, sp<Allocation> out) argument
153 forEachSrcAtop(sp<Allocation> in, sp<Allocation> out) argument
161 forEachDstAtop(sp<Allocation> in, sp<Allocation> out) argument
169 forEachXor(sp<Allocation> in, sp<Allocation> out) argument
178 forEachMultiply(sp<Allocation> in, sp<Allocation> out) argument
187 forEachAdd(sp<Allocation> in, sp<Allocation> out) argument
195 forEachSubtract(sp<Allocation> in, sp<Allocation> out) argument
228 forEach(sp<Allocation> out) argument
257 forEach(sp<Allocation> in, sp<Allocation> out) argument
368 forEach(sp<Allocation> out) argument
409 forEach(sp<Allocation> out) argument
431 setOutput(sp<Allocation> out) argument
593 forEach(sp<Allocation> out) argument
[all...]
/frameworks/base/nfc-extras/tests/src/com/android/nfc_extras/tests/
H A DBasicNfcEeTest.java60 byte[] out = mEe.transceive(SELECT_CARD_MANAGER_COMMAND);
61 assertTrue(out.length >= SELECT_CARD_MANAGER_RESPONSE.length);
62 byte[] trailing = Arrays.copyOfRange(out,
63 out.length - SELECT_CARD_MANAGER_RESPONSE.length,
64 out.length);
79 byte[] out = mEe.transceive(SELECT_CARD_MANAGER_COMMAND);
80 byte[] trailing = Arrays.copyOfRange(out,
81 out.length - SELECT_CARD_MANAGER_RESPONSE.length,
82 out.length);
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothMasInstance.java70 public void writeToParcel(Parcel out, int flags) { argument
71 out.writeInt(mId);
72 out.writeString(mName);
73 out.writeInt(mChannel);
74 out.writeInt(mMsgTypes);
/frameworks/base/core/java/android/net/
H A DScoredNetwork.java54 * the scorer may choose to issue an out-of-band update at any time.
76 public void writeToParcel(Parcel out, int flags) { argument
77 networkKey.writeToParcel(out, flags);
79 out.writeByte((byte) 1);
80 rssiCurve.writeToParcel(out, flags);
82 out.writeByte((byte) 0);
H A DNetworkMisc.java60 public void writeToParcel(Parcel out, int flags) { argument
61 out.writeInt(allowBypass ? 1 : 0);
62 out.writeInt(explicitlySelected ? 1 : 0);
/frameworks/base/core/java/android/service/notification/
H A DNotificationRankingUpdate.java53 public void writeToParcel(Parcel out, int flags) { argument
54 out.writeStringArray(mKeys);
55 out.writeInt(mFirstAmbientIndex);
56 out.writeStringArray(mInterceptedKeys);
57 out.writeBundle(mVisibilityOverrides);
/frameworks/base/core/java/android/hardware/
H A DCameraInfo.java38 public void writeToParcel(Parcel out, int flags) { argument
39 out.writeInt(info.facing);
40 out.writeInt(info.orientation);
/frameworks/base/graphics/tests/graphicstests/src/android/graphics/
H A DBitmapFactoryTest.java35 ByteArrayOutputStream out = new ByteArrayOutputStream();
36 bitmap1.compress(Bitmap.CompressFormat.PNG, 100, out);
37 ParcelFileDescriptor pfd = ParcelFileDescriptor.fromData(out.toByteArray(), null);

Completed in 655 milliseconds

1234567891011>>