HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 1126 - 1150 of 4560) sorted by null

<<41424344454647484950>>

  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
fastquant_inline.h 431 register int32 out; local
441 : "=&r"(out)
446 return out;
451 register int32 out; local
460 : "=&r"(out),
466 return out;
485 register int32 out; local
500 : "=&r"(out),
507 return out;
512 register int32 out; local
527 register int32 out; local
540 register int32 out; local
569 register int32 out; local
600 register int32 out; local
    [all...]
  /frameworks/av/services/audioflinger/tests/
resampler_tests.cpp 197 TO *out = reinterpret_cast<TO *>(reference); local
205 double passbandEnergy = signalEnergy(out, out + passbandFrame * channels, channels);
206 double stopbandEnergy = signalEnergy(out + stopbandFrame * channels,
207 out + outputFrames * channels, channels);
217 std::cout << out[i+passbandFrame*channels] << std::endl;
220 std::cout << out[i+stopbandFrame*channels] << std::endl;
  /frameworks/base/core/java/android/app/admin/
SystemUpdatePolicy.java 265 public void saveToXml(XmlSerializer out) throws IOException {
266 out.attribute(null, KEY_POLICY_TYPE, Integer.toString(mPolicyType));
267 out.attribute(null, KEY_INSTALL_WINDOW_START, Integer.toString(mMaintenanceWindowStart));
268 out.attribute(null, KEY_INSTALL_WINDOW_END, Integer.toString(mMaintenanceWindowEnd));
  /frameworks/base/core/java/android/bluetooth/
BluetoothActivityEnergyInfo.java 90 public void writeToParcel(Parcel out, int flags) {
91 out.writeLong(mTimestamp);
92 out.writeInt(mBluetoothStackState);
93 out.writeLong(mControllerTxTimeMs);
94 out.writeLong(mControllerRxTimeMs);
95 out.writeLong(mControllerIdleTimeMs);
96 out.writeLong(mControllerEnergyUsed);
97 out.writeTypedArray(mUidTraffic, flags);
BluetoothGattDescriptor.java 166 public void writeToParcel(Parcel out, int flags) {
167 out.writeParcelable(new ParcelUuid(mUuid), 0);
168 out.writeInt(mInstance);
169 out.writeInt(mPermissions);
BluetoothHeadsetClientCall.java 245 public void writeToParcel(Parcel out, int flags) {
246 out.writeParcelable(mDevice, 0);
247 out.writeInt(mId);
248 out.writeString(mUUID.toString());
249 out.writeInt(mState);
250 out.writeString(mNumber);
251 out.writeInt(mMultiParty ? 1 : 0);
252 out.writeInt(mOutgoing ? 1 : 0);
  /frameworks/base/core/java/android/content/
SyncAdaptersCache.java 142 public void writeAsXml(SyncAdapterType item, XmlSerializer out) throws IOException {
143 out.attribute(null, "authority", item.authority);
144 out.attribute(null, "accountType", item.accountType);
  /frameworks/base/core/java/android/content/pm/
EphemeralResolveInfo.java 89 public void writeToParcel(Parcel out, int flags) {
90 out.writeParcelable(mDigest, flags);
91 out.writeString(mPackageName);
92 out.writeList(mFilters);
213 public void writeToParcel(Parcel out, int flags) {
215 out.writeInt(-1);
217 out.writeInt(mDigestBytes.length);
219 out.writeByteArray(mDigestBytes[i]);
222 out.writeIntArray(mDigestPrefix);
  /frameworks/base/core/java/android/os/
FileUtils.java 226 FileOutputStream out = new FileOutputStream(destFile); local
231 out.write(buffer, 0, bytesRead);
234 out.flush();
236 out.getFD().sync();
239 out.close();
327 FileWriter out = new FileWriter(filename); local
329 out.write(string);
331 out.close();
  /frameworks/base/core/java/com/android/internal/util/
XmlUtils.java 179 * @param out Where to write the XML data.
186 public static final void writeMapXml(Map val, OutputStream out)
189 serializer.setOutput(out, StandardCharsets.UTF_8.name());
201 * @param out Where to write the XML data.
208 public static final void writeListXml(List val, OutputStream out)
212 serializer.setOutput(out, StandardCharsets.UTF_8.name());
226 * @param out XmlSerializer to write the map into.
233 public static final void writeMapXml(Map val, String name, XmlSerializer out)
235 writeMapXml(val, name, out, null);
245 * @param out XmlSerializer to write the map into
300 writeValueXml(e.getValue(), (String)e.getKey(), out, callback); local
335 writeValueXml(val.get(i), null, out); local
    [all...]
  /frameworks/base/core/tests/coretests/src/android/net/http/
CookiesTest.java 56 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
58 StreamHandler handler = new StreamHandler(out, new SimpleFormatter());
65 String log = out.toString("UTF-8");
  /frameworks/base/core/tests/coretests/src/android/text/
DynamicLayoutBlocksTest.java 46 System.out.print(message);
48 System.out.print(" " + Integer.toString(dl.getBlockEndLines()[i]));
50 System.out.println();
  /frameworks/base/core/tests/coretests/src/com/android/internal/net/
NetworkStatsFactoryTest.java 136 OutputStream out = null; local
139 out = new FileOutputStream(file);
140 Streams.copy(in, out);
143 IoUtils.closeQuietly(out);
149 FileWriter out = null; local
151 out = new FileWriter(file);
152 out.write(Long.toString(value));
154 IoUtils.closeQuietly(out);
  /frameworks/base/libs/hwui/
TreeInfo.h 79 // textures if we run out of cache space.
109 struct Out {
124 } out; member in class:android::uirenderer::TreeInfo
  /frameworks/base/services/tests/servicestests/src/com/android/server/pm/
UserRestrictionsUtilsTest.java 33 -r out/target/product/hammerhead/data/app/FrameworksServicesTests/FrameworksServicesTests.apk &&
41 Bundle out = UserRestrictionsUtils.nonNull(null); local
42 assertNotNull(out);
43 out.putBoolean("a", true); // Should not be Bundle.EMPTY.
57 Bundle out = UserRestrictionsUtils.clone(in); local
58 assertNotSame(in, out);
59 DpmTestUtils.assertRestrictions(out, new Bundle());
61 out = UserRestrictionsUtils.clone(null);
62 assertNotNull(out);
63 out.putBoolean("a", true); // Should not be Bundle.EMPTY
    [all...]
  /frameworks/base/telephony/java/android/telephony/
PreciseDataConnectionState.java 167 public void writeToParcel(Parcel out, int flags) {
168 out.writeInt(mState);
169 out.writeInt(mNetworkType);
170 out.writeString(mAPNType);
171 out.writeString(mAPN);
172 out.writeString(mReason);
173 out.writeParcelable(mLinkProperties, flags);
174 out.writeString(mFailCause);
  /frameworks/base/tests/HugeBackup/src/com/android/hugebackup/
HugeAgent.java 128 // out of the buffering stream object and send it off.
190 * Write out the new state file: the version number, followed by the
195 DataOutputStream out = new DataOutputStream(outstream); local
197 out.writeInt(AGENT_VERSION);
198 out.writeInt(mFilling);
199 out.writeBoolean(mAddMayo);
200 out.writeBoolean(mAddTomato);
207 * be running while we change its data out from under it. That, in
208 * turn, means that there is no need to send out any sort of notification
  /frameworks/base/tools/aapt/
pseudolocalize.cpp 41 String16 out; local
79 out.append(chunk);
82 out.append(mImpl->end());
84 out.append(mImpl->start());
90 return out;
  /frameworks/base/tools/preload/
PrintCsv.java 42 printHeaders(System.out);
51 printRow(System.out, baseline, loadedClass);
55 static void printHeaders(PrintStream out) {
56 out.println("Name"
70 static void printRow(PrintStream out, MemoryUsage baseline,
72 out.print(loadedClass.name);
73 out.print(',');
74 out.print(loadedClass.preloaded);
75 out.print(',');
76 out.print(loadedClass.medianLoadTimeMicros())
    [all...]
Root.java 135 FileOutputStream out = new FileOutputStream(fileName); local
137 new BufferedOutputStream(out));
  /frameworks/compile/mclinker/lib/Object/
SectionMap.cpp 159 iterator out, outBegin = begin(), outEnd = end(); local
160 for (out = outBegin; out != outEnd; ++out) {
161 if (*out != NULL) {
162 Output::iterator in, inBegin = (*out)->begin(), inEnd = (*out)->end();
167 delete *out;
175 const_iterator out, outBegin = begin(), outEnd = end(); local
176 for (out = outBegin; out != outEnd; ++out)
188 iterator out, outBegin = begin(), outEnd = end(); local
202 const_iterator out, outBegin = begin(), outEnd = end(); local
211 iterator out, outBegin = begin(), outEnd = end(); local
223 iterator out, outBegin = begin(), outEnd = end(); local
255 iterator out, outBegin = begin(), outEnd = end(); local
    [all...]
  /frameworks/rs/api/
Utilities.cpp 100 string out; local
104 out += in.substr(start);
107 out += in.substr(start, lt - start);
115 out += '<';
118 out = stringReplace(out, "&gt;", ">");
119 out = stringReplace(out, "&lt;", "<");
120 out = stringReplace(out, "&nbsp;", " ")
    [all...]
  /frameworks/rs/cpu_ref/
rsCpuIntrinsicYuvToRGB.cpp 126 uchar4 *out = (uchar4 *)info->outPtr[0] + xstart; local
160 *out = rsYuvToRGBA_uchar4(Y[x1], u[cx], v[cx]);
161 out++;
171 out += len;
180 out += len;
184 out += len;
194 *out = rsYuvToRGBA_uchar4(Y[x1], u[cx], v[cx]);
195 out++;
197 *out = rsYuvToRGBA_uchar4(Y[x1], u[cx], v[cx]);
198 out++
    [all...]
  /frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/
UnitTest.java 124 String out = name; local
126 out += " - PASSED";
129 out += " - FAILED";
131 return out;
  /frameworks/rs/java/tests/RSTest_CompatLibLegacy/src/com/android/rs/test/
UnitTest.java 124 String out = name; local
126 out += " - PASSED";
129 out += " - FAILED";
131 return out;

Completed in 562 milliseconds

<<41424344454647484950>>