HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 1251 - 1275 of 5424) sorted by null

<<51525354555657585960>>

  /external/zlib/src/contrib/inflate86/
inffas86.c 37 Decode literal, length, and distance codes and write out the resulting
54 LEN -- ran out of enough output space or enough available input
83 /* 32 16 */ unsigned char FAR *out; /* edi rdi local strm->next_out */ member in struct:inffast_ar
85 /* 48 24 */ unsigned char FAR *end; /* r10 while out < end */
112 ar.out = strm->next_out;
113 ar.beg = ar.out - (start - strm->avail_out);
114 ar.end = ar.out + (strm->avail_out - PAD_AVAIL_OUT);
141 " movq 32(%%rsp), %%rdi\n" /* rdi = out */
282 " subq 40(%%rsp), %%rax\n" /* nbytes = out - beg */
289 " subq %%r15, %%rsi\n" /* from = out - dist *
    [all...]
  /external/zlib/src/
crc32.c 21 DYNAMIC_CRC_TABLE and MAKECRCH can be #defined to write out crc32.h.
81 out is a one). We start with the highest power (least significant bit) of
141 /* write out CRC tables to crc32.h */
143 FILE *out; local
145 out = fopen("crc32.h", "w");
146 if (out == NULL) return;
147 fprintf(out, "/* crc32.h -- tables for rapid CRC calculation\n");
148 fprintf(out, " * Generated automatically by crc32.c\n */\n\n");
149 fprintf(out, "local const z_crc_t FAR ");
150 fprintf(out, "crc_table[TBLS][256] =\n{\n {\n")
    [all...]
  /external/zlib/src/examples/
zran.c 68 off_t out; /* corresponding offset in uncompressed data */ member in struct:point
90 /* Add an entry to the access point list. If out of memory, deallocate the
93 off_t in, off_t out, unsigned left, unsigned char *window)
125 next->out = out;
141 returns the number of access points on success (>= 1), Z_MEM_ERROR for out
191 /* inflate until out of input, output, or at end of block --
265 while (--ret && here[1].out <= offset)
291 offset -= here->out;
379 fprintf(stderr, "zran: out of memory\n")
    [all...]
  /frameworks/av/media/libaudioprocessing/tests/
resampler_tests.cpp 211 TO *out = reinterpret_cast<TO *>(reference); local
221 double passbandEnergy = signalEnergy(out, out + passbandFrame * channels, channels);
222 double stopbandEnergy = signalEnergy(out + stopbandFrame * channels,
223 out + outputFrames * channels, channels);
233 std::cout << out[i+passbandFrame*channels] << std::endl;
236 std::cout << out[i+stopbandFrame*channels] << std::endl;
  /frameworks/av/media/libstagefright/codecs/aacenc/src/
block_switch.c 300 Word32 out; local
307 out = accu3 - accu2;
310 states1 = out;
312 tempFiltered = extract_h(out);
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
dct_inline.h 29 int32 out; local
33 out = op2 * 724 + op3; /* op1 is not used here */
35 return out;
62 int32 out; local
66 out = k6 * 1338 + k1;
68 return out;
73 int32 out; local
77 out = k6 * 946 + k1;
79 return out;
113 int32 out; local
117 smlabb out, op1, op2, op3 local
149 int32 out; local
153 smlabb out, k6, k14, k1 local
161 int32 out; local
165 smlabb out, k6, k14, k1 local
176 int32 out; local
180 and out, op2, #0xFFFF local
181 mla out, op1, out, op3 local
215 int32 out; local
219 and out, k14, 0xFFFF local
220 mla out, k6, out, k1 local
228 int32 out; local
232 and out, k14, 0xFFFF local
233 mla out, k6, out, k1 local
271 register int32 out; local
287 register int32 out; local
303 register int32 out; local
319 register int32 out; local
334 register int32 out; local
    [all...]
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/base/core/java/android/app/
PictureInPictureArgs.java 323 public void writeToParcel(Parcel out, int flags) {
325 out.writeInt(1);
326 out.writeInt(mAspectRatio.getNumerator());
327 out.writeInt(mAspectRatio.getDenominator());
329 out.writeInt(0);
332 out.writeInt(1);
333 out.writeParcelableList(mUserActions, 0);
335 out.writeInt(0);
338 out.writeInt(1);
339 mSourceRectHint.writeToParcel(out, 0)
    [all...]
PictureInPictureParams.java 252 public void writeToParcel(Parcel out, int flags) {
254 out.writeInt(1);
255 out.writeInt(mAspectRatio.getNumerator());
256 out.writeInt(mAspectRatio.getDenominator());
258 out.writeInt(0);
261 out.writeInt(1);
262 out.writeParcelableList(mUserActions, 0);
264 out.writeInt(0);
267 out.writeInt(1);
268 mSourceRectHint.writeToParcel(out, 0)
    [all...]
  /frameworks/base/core/java/android/app/admin/
SystemUpdatePolicy.java 288 public void saveToXml(XmlSerializer out) throws IOException {
289 out.attribute(null, KEY_POLICY_TYPE, Integer.toString(mPolicyType));
290 out.attribute(null, KEY_INSTALL_WINDOW_START, Integer.toString(mMaintenanceWindowStart));
291 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 257 public void writeToParcel(Parcel out, int flags) {
258 out.writeParcelable(mDevice, 0);
259 out.writeInt(mId);
260 out.writeString(mUUID.toString());
261 out.writeInt(mState);
262 out.writeString(mNumber);
263 out.writeInt(mMultiParty ? 1 : 0);
264 out.writeInt(mOutgoing ? 1 : 0);
  /frameworks/base/core/java/android/content/
SyncAdaptersCache.java 143 public void writeAsXml(SyncAdapterType item, XmlSerializer out) throws IOException {
144 out.attribute(null, "authority", item.authority);
145 out.attribute(null, "accountType", item.accountType);
  /frameworks/base/core/java/android/content/pm/
EphemeralResolveInfo.java 143 public void writeToParcel(Parcel out, int flags) {
144 out.writeParcelable(mInstantAppResolveInfo, flags);
145 out.writeList(mLegacyFilters);
207 public void writeToParcel(Parcel out, int flags) {
208 out.writeParcelable(mInstantAppDigest, flags);
InstantAppResolveInfo.java 106 public void writeToParcel(Parcel out, int flags) {
107 out.writeParcelable(mDigest, flags);
108 out.writeString(mPackageName);
109 out.writeList(mFilters);
110 out.writeInt(mVersionCode);
225 public void writeToParcel(Parcel out, int flags) {
227 out.writeInt(-1);
229 out.writeInt(mDigestBytes.length);
231 out.writeByteArray(mDigestBytes[i]);
234 out.writeIntArray(mDigestPrefix)
    [all...]
ProviderInfo.java 139 @Override public void writeToParcel(Parcel out, int parcelableFlags) {
140 super.writeToParcel(out, parcelableFlags);
141 out.writeString(authority);
142 out.writeString(readPermission);
143 out.writeString(writePermission);
144 out.writeInt(grantUriPermissions ? 1 : 0);
145 out.writeTypedArray(uriPermissionPatterns, parcelableFlags);
146 out.writeTypedArray(pathPermissions, parcelableFlags);
147 out.writeInt(multiprocess ? 1 : 0);
148 out.writeInt(initOrder)
    [all...]
  /frameworks/base/core/java/android/os/
FileUtils.java 225 FileOutputStream out = new FileOutputStream(destFile); local
230 out.write(buffer, 0, bytesRead);
233 out.flush();
235 out.getFD().sync();
238 out.close();
  /frameworks/base/core/java/com/android/internal/backup/
LocalTransport.java 199 // Okay, now we've parsed out the delta's individual operations. We need to measure
205 // ... and now figure out the datastore size that will result from applying the
255 try (FileOutputStream out = new FileOutputStream(element)) {
256 out.write(op.value, 0, op.value.length);
626 BackupDataOutput out = new BackupDataOutput(outFd.getFileDescriptor()); local
636 out.writeEntityHeader(keyEntry.key, size);
637 out.writeEntityData(buf, size);
  /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/text/
DynamicLayoutBlocksTest.java 52 System.out.print(message);
54 System.out.print(" " + Integer.toString(dl.getBlockEndLines()[i]));
56 System.out.println();
  /frameworks/base/services/backup/java/com/android/server/backup/fullbackup/
FullBackupObbConnection.java 70 public boolean backupObbs(PackageInfo pkg, OutputStream out) {
82 FullBackupUtils.routeSocketDataToOutput(pipes[0], out);
88 out.flush();
  /frameworks/base/services/backup/java/com/android/server/backup/utils/
FullBackupUtils.java 46 * @param out - stream to write the data to.
49 public static void routeSocketDataToOutput(ParcelFileDescriptor inPipe, OutputStream out)
65 out.write(buffer, 0, nRead);
  /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

Completed in 697 milliseconds

<<51525354555657585960>>