Searched defs:out (Results 26 - 50 of 280) sorted by relevance

1234567891011>>

/frameworks/native/opengl/tools/glgen/src/
H A DGenerateGLES.java26 static void copy(String filename, PrintStream out) throws IOException { argument
30 out.println(s);
50 System.out.println("Special-casing function " + fname);
95 new PrintStream(new FileOutputStream("out/" + gl11Filename));
97 new PrintStream(new FileOutputStream("out/" + gl11cFilename));
/frameworks/rs/cpu_ref/linkloader/utils/
H A Draw_ostream.cpp24 llvm::raw_ostream &out() { function
/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 DAudioPeakingFilter.h31 // when they are out of supported range.
102 // out Output buffer.
104 void process(const audio_sample_t in[], audio_sample_t out[], argument
105 int frameCount) { mBiquad.process(in, out, frameCount); }
H A DAudioShelvingFilter.h31 // when they are out of supported range.
96 // out Output buffer.
98 void process(const audio_sample_t in[], audio_sample_t out[], argument
99 int frameCount) { mBiquad.process(in, out, frameCount); }
H A DEffectsMath.c114 int32_t out = 0; local
123 out = 0x4000;
133 tmp = (out << i) + (1 << ((i - 1)*2));
136 out += 1 << (i-1);
141 return out;
/frameworks/base/core/java/android/app/
H A DResultInfo.java53 public void writeToParcel(Parcel out, int flags) { argument
54 out.writeString(mResultWho);
55 out.writeInt(mRequestCode);
56 out.writeInt(mResultCode);
58 out.writeInt(1);
59 mData.writeToParcel(out, 0);
61 out.writeInt(0);
/frameworks/base/core/java/android/content/
H A DSyncAdaptersCache.java80 public void writeAsXml(SyncAdapterType item, XmlSerializer out) throws IOException { argument
81 out.attribute(null, "authority", item.authority);
82 out.attribute(null, "accountType", item.accountType);
/frameworks/base/core/java/android/net/
H A DNetworkQuotaInfo.java66 public void writeToParcel(Parcel out, int flags) { argument
67 out.writeLong(mEstimatedBytes);
68 out.writeLong(mSoftLimitBytes);
69 out.writeLong(mHardLimitBytes);
/frameworks/base/core/java/android/os/
H A DMessenger.java87 public void writeToParcel(Parcel out, int flags) { argument
88 out.writeStrongBinder(mTarget.asBinder());
109 * @param out Where to write the Messenger.
112 Parcel out) {
113 out.writeStrongBinder(messenger != null ? messenger.mTarget.asBinder()
111 writeMessengerOrNullToParcel(Messenger messenger, Parcel out) argument
/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/core/java/com/android/internal/http/multipart/
H A DStringPart.java121 * @param out the OutputStream to write to
125 protected void sendData(OutputStream out) throws IOException { argument
127 out.write(getContent());
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/model/
H A DDocumentStack.java123 public void write(DataOutputStream out) throws IOException { argument
124 out.writeInt(VERSION_ADD_ROOT);
126 out.writeBoolean(true);
127 root.write(out);
129 out.writeBoolean(false);
132 out.writeInt(size);
135 doc.write(out);
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/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/base/services/java/com/android/server/accounts/
H A DAccountAuthenticatorCache.java84 public void writeAsXml(AuthenticatorDescription item, XmlSerializer out) argument
86 out.attribute(null, "type", item.type);
/frameworks/native/services/surfaceflinger/
H A DColorizer.h41 void colorize(String8& out, color c) { argument
43 out.appendFormat("\e[%dm", c);
47 void bold(String8& out) { argument
49 out.append("\e[1m");
53 void reset(String8& out) { argument
55 out.append("\e[0m");
/frameworks/rs/java/tests/HelloComputeNDK/src/com/example/android/rs/hellocomputendk/
H A DHelloComputeNDK.java33 native void nativeMono(int X, int Y, Bitmap in, Bitmap out); argument
47 ImageView out = (ImageView) findViewById(R.id.displayout);
48 out.setImageBitmap(mBitmapOut);
/frameworks/av/cmds/stagefright/
H A DSineSource.cpp61 MediaBuffer **out, const ReadOptions *options) {
62 *out = NULL;
97 *out = buffer;
60 read( MediaBuffer **out, const ReadOptions *options) argument
/frameworks/av/libvideoeditor/lvpp/
H A DDummyAudioSource.cpp119 MediaBuffer **out, const MediaSource::ReadOptions *options) {
137 *out = NULL;
158 *out = buffer;
118 read( MediaBuffer **out, const MediaSource::ReadOptions *options) argument
H A DDummyVideoSource.cpp119 MediaBuffer **out,
137 *out = NULL;
167 *out = buffer;
118 read( MediaBuffer **out, const MediaSource::ReadOptions *options) argument
/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/libstagefright/foundation/
H A Dbase64.cpp43 uint8_t *out = buffer->data(); local
72 out[j++] = (accum >> 16);
74 if (j < outLen) { out[j++] = (accum >> 8) & 0xff; }
75 if (j < outLen) { out[j++] = accum & 0xff; }
99 const void *_data, size_t size, AString *out) {
100 out->clear();
110 out->append(encode6Bit(x1 >> 2));
111 out->append(encode6Bit((x1 << 4 | x2 >> 4) & 0x3f));
112 out->append(encode6Bit((x2 << 2 | x3 >> 6) & 0x3f));
113 out
98 encodeBase64( const void *_data, size_t size, AString *out) argument
[all...]
/frameworks/av/services/audioflinger/
H A DAudioResamplerCubic.cpp35 void AudioResamplerCubic::resample(int32_t* out, size_t outFrameCount, argument
44 resampleMono16(out, outFrameCount, provider);
47 resampleStereo16(out, outFrameCount, provider);
52 void AudioResamplerCubic::resampleStereo16(int32_t* out, size_t outFrameCount, argument
81 out[outputIndex++] += vl * interp(&left, x);
82 out[outputIndex++] += vr * interp(&right, x);
83 // out[outputIndex++] += vr * in[inputIndex*2];
118 void AudioResamplerCubic::resampleMono16(int32_t* out, size_t outFrameCount, argument
148 out[outputIndex++] += vl * sample;
149 out[outputInde
[all...]
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothHealthAppConfiguration.java159 public void writeToParcel(Parcel out, int flags) { argument
160 out.writeString(mName);
161 out.writeInt(mDataType);
162 out.writeInt(mRole);
163 out.writeInt(mChannelType);

Completed in 644 milliseconds

1234567891011>>