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

<<919293949596979899100>>

  /external/webrtc/webrtc/p2p/base/
stun_unittest.cc 746 // But when written out, the buffers should look different.
878 rtc::ByteBuffer out; local
907 rtc::ByteBuffer out; local
936 rtc::ByteBuffer out; local
966 rtc::ByteBuffer out; local
1064 rtc::ByteBuffer out; local
1087 rtc::ByteBuffer out; local
1107 rtc::ByteBuffer out; local
1430 rtc::ByteBuffer out; local
    [all...]
  /external/wpa_supplicant_8/src/crypto/
tls_gnutls.c 814 const char *label, u8 *out, size_t out_len)
821 (char *) out);
826 u8 *out, size_t out_len)
1033 goto out;
1048 goto out;
1059 goto out;
1071 goto out;
1080 goto out;
1088 goto out;
1094 goto out;
1448 struct wpabuf *out; local
    [all...]
tls_openssl_ocsp.c 227 static char * mem_bio_to_str(BIO *out)
233 rlen = BIO_ctrl_pending(out);
236 BIO_free(out);
240 res = BIO_read(out, txt, rlen);
241 BIO_free(out);
254 BIO *out; local
256 out = BIO_new(BIO_s_mem());
257 if (!out)
260 if (!ASN1_GENERALIZEDTIME_print(out, t)) {
261 BIO_free(out);
271 BIO *out; local
295 BIO *out; local
308 BIO *out; local
321 BIO *out; local
334 BIO *out; local
    [all...]
  /external/zopfli/src/zopfli/
deflate.c 39 unsigned char* bp, unsigned char** out, size_t* outsize) {
40 if (*bp == 0) ZOPFLI_APPEND_DATA(0, out, outsize);
41 (*out)[*outsize - 1] |= bit << *bp;
46 unsigned char* bp, unsigned char** out, size_t* outsize) {
51 if (*bp == 0) ZOPFLI_APPEND_DATA(0, out, outsize);
52 (*out)[*outsize - 1] |= bit << *bp;
62 unsigned char* bp, unsigned char** out,
68 if (*bp == 0) ZOPFLI_APPEND_DATA(0, out, outsize);
69 (*out)[*outsize - 1] |= bit << *bp;
102 Encodes the Huffman tree and returns how many bits its encoding takes. If out
325 bp, out, outsize); local
329 bp, out, outsize); local
    [all...]
  /external/zopfli/src/zopflipng/lodepng/
lodepng_util.cpp 360 void inflate(std::vector<unsigned char>& out, const std::vector<unsigned char>& in, size_t inpos = 0)
375 else if(BTYPE == 0) inflateNoCompression(out, &in[inpos], bp, pos, in.size());
376 else inflateHuffmanBlock(out, &in[inpos], bp, pos, in.size(), BTYPE);
480 void inflateHuffmanBlock(std::vector<unsigned char>& out,
500 out.push_back((unsigned char)(code));
517 out.push_back(out[back++]);
533 void inflateNoCompression(std::vector<unsigned char>& out,
544 out.push_back(in[p++]); //read LEN bytes of literal data
550 int decompress(std::vector<unsigned char>& out, const std::vector<unsigned char>& in) //returns error valu
607 std::vector<unsigned char> out; \/\/now the out buffer will be filled local
    [all...]
  /frameworks/av/media/libaudioprocessing/
AudioResamplerSinc.cpp 150 int32_t out; local
152 asm( "smultb %[out], %[in], %[vRL] \n"
153 : [out]"=r"(out)
157 asm( "smultt %[out], %[in], %[vRL] \n"
158 : [out]"=r"(out)
162 return out;
173 int32_t out; local
174 asm( "smlawb %[out], %[v], %[in], %[a] \n
188 int32_t out; local
    [all...]
  /frameworks/av/media/libmediaplayerservice/nuplayer/
NuPlayerDriver.cpp 896 FILE *out = fdopen(dup(fd), "w"); local
897 fprintf(out, "%s", logString.c_str());
898 fclose(out);
899 out = NULL;
932 // The renderer has stopped the sink at the end in order to play out
  /frameworks/av/media/libstagefright/
MPEG2TSWriter.cpp 192 sp<ABuffer> out = new ABuffer(1024); local
193 out->setRange(0, 0);
211 CHECK_LE(out->size() + 4 + length, out->capacity());
212 memcpy(out->data() + out->size(), "\x00\x00\x00\x01", 4);
213 memcpy(out->data() + out->size() + 4, ptr, length);
214 out->setRange(0, out->size() + length + 4)
    [all...]
avc_utils.cpp 397 uint8_t *out = csd->data(); local
399 *out++ = 0x01; // configurationVersion
400 memcpy(out, seqParamSet->data() + 1, 3); // profile/level...
402 uint8_t profile = out[0];
403 uint8_t level = out[2];
405 out += 3;
406 *out++ = (0x3f << 2) | 1; // lengthSize == 2 bytes
407 *out++ = 0xe0 | 1;
409 *out++ = seqParamSet->size() >> 8;
410 *out++ = seqParamSet->size() & 0xff
    [all...]
  /frameworks/av/media/libstagefright/rtsp/
ARTSPConnection.cpp 374 // Timed out. Not yet connected.
917 static void H(const AString &s, AString *out) {
918 out->clear();
934 out->append(&nibble, 1);
942 out->append(&nibble, 1);
973 AString out; local
974 encodeBase64(tmp.c_str(), tmp.size(), &out);
978 fragment.append(out);
  /frameworks/base/core/java/android/content/
ContentProviderNative.java 152 Uri out = insert(callingPkg, url, values); local
154 Uri.writeToParcel(reply, out);
330 Uri out = canonicalize(callingPkg, url); local
332 Uri.writeToParcel(reply, out);
342 Uri out = uncanonicalize(callingPkg, url); local
344 Uri.writeToParcel(reply, out);
356 boolean out = refresh(callingPkg, url, args, signal);
358 reply.writeInt(out ? 0 : -1);
454 String out = reply.readString(); local
455 return out;
477 Uri out = Uri.CREATOR.createFromParcel(reply); local
674 String[] out = reply.createStringArray(); local
743 Uri out = Uri.CREATOR.createFromParcel(reply); local
764 Uri out = Uri.CREATOR.createFromParcel(reply); local
    [all...]
  /frameworks/base/core/java/android/ddm/
DdmHandleViewDebug.java 171 ByteBuffer out = ByteBuffer.allocate(responseLength); local
172 out.order(ChunkHandler.CHUNK_ORDER);
174 out.putInt(windowNames.length);
176 out.putInt(name.length());
177 putString(out, name);
180 return new Chunk(CHUNK_VULW, out);
  /frameworks/base/core/java/android/net/
NetworkStatsHistory.java 140 public void writeToParcel(Parcel out, int flags) {
141 out.writeLong(bucketDuration);
142 writeLongArray(out, bucketStart, bucketCount);
143 writeLongArray(out, activeTime, bucketCount);
144 writeLongArray(out, rxBytes, bucketCount);
145 writeLongArray(out, rxPackets, bucketCount);
146 writeLongArray(out, txBytes, bucketCount);
147 writeLongArray(out, txPackets, bucketCount);
148 writeLongArray(out, operations, bucketCount);
149 out.writeLong(totalBytes)
    [all...]
  /frameworks/base/core/java/android/nfc/cardemulation/
ApduServiceInfo.java 433 StringBuilder out = new StringBuilder("ApduService: "); local
434 out.append(getComponent());
435 out.append(", description: " + mDescription);
436 out.append(", Static AID Groups: ");
438 out.append(aidGroup.toString());
440 out.append(", Dynamic AID Groups: ");
442 out.append(aidGroup.toString());
444 return out.toString();
  /frameworks/base/core/java/android/util/
Half.java 40 * <p>The format is laid out as follows:</p>
913 int out = (s << 16) | (outE << FP32_EXPONENT_SHIFT) | outM; local
971 int out = (outE << FP16_EXPONENT_SHIFT) | outM; local
    [all...]
  /frameworks/base/core/java/com/android/internal/app/procstats/
SparseMappingTable.java 294 * Clear out the table, and reset the sequence numbers so future writes
298 // Clear out our table.
312 public void writeToParcel(Parcel out) {
313 out.writeInt(mSequence);
314 out.writeInt(mSize);
316 out.writeInt(mTable[i]);
341 // Clear it out
485 * Wipe out all the data.
488 // Clear out mLongs, and prime it with a new array of data
493 // Increment out sequence counter, because all of the tables wil
    [all...]
  /frameworks/base/core/java/com/android/internal/os/
RuntimeInit.java 314 * Redirect System.out and System.err to the Android log.
317 System.out.close();
318 System.setOut(new AndroidPrintStream(Log.INFO, "System.out"));
  /frameworks/base/core/java/com/android/server/backup/
AccountSyncSettingsBackupHelper.java 304 DataOutputStream out = new DataOutputStream(fOutput); local
305 out.writeUTF(jsonString);
  /frameworks/base/core/jni/
android_hardware_camera2_CameraMetadata.cpp 82 /*out*/CameraMetadata* metadata) {
409 * and then read back out (and logged) via the read side.
455 * Read out a byte until stream is complete. Write completed lines
459 char out[] = {'\0', '\0'}; // large enough to append as a string local
464 while ((res = TEMP_FAILURE_RETRY(read(readFd, &out[0], /*count*/1))) > 0) {
465 if (out[0] == '\n') {
469 logLine.append(out);
856 status_t err = getService(NAME, /*out*/&cameraService);
865 binder::Status res = cameraService->getCameraVendorTagDescriptor(/*out*/desc.get());
881 binder::Status res = cameraService->getCameraVendorTagCache(/*out*/cache.get())
    [all...]
  /frameworks/base/core/tests/coretests/src/android/content/pm/
RegisteredServicesCacheTest.java 308 public void writeAsXml(TestServiceType item, XmlSerializer out) throws IOException {
309 out.attribute(null, "type", item.type);
310 out.attribute(null, "value", item.value);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/car/
UserGridView.java 266 Bitmap out = Bitmap.createBitmap(mPodImageAvatarWidth, mPodImageAvatarHeight, local
268 Canvas canvas = new Canvas(out);
289 // the different is actually a sum. The "half" operation is then factored out.
293 return out;
  /frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
ExifOutputStream.java 42 * // Write the original jpeg out, the header will be add into the file.
114 * Writes the image out. The input data should be a valid JPEG format. After
129 out.write(buffer, offset, byteToProcess);
149 out.write(mBuffer.array(), 0, 2);
164 out.write(mBuffer.array(), 0, 2);
177 out.write(mBuffer.array(), 0, 4);
180 out.write(mBuffer.array(), 0, 4);
187 out.write(buffer, offset, length);
192 * Writes the one bytes out. The input data should be a valid JPEG format.
222 OrderedDataOutputStream dataOutputStream = new OrderedDataOutputStream(out);
    [all...]
  /frameworks/base/services/core/java/com/android/server/connectivity/
NetdEventListenerService.java 196 WakeupEvent[] out = new WakeupEvent[length]; local
199 int outIdx = out.length - 1;
201 out[outIdx--] = mWakeupEvents[wakeupEventIndex(inCursor--)];
203 return out;
246 private static <T> void flushProtos(List<IpConnectivityEvent> out, SparseArray<T> in,
249 out.add(mapper.apply(in.valueAt(i)));
  /frameworks/base/telecomm/java/android/telecom/
ParcelableCallAnalytics.java 87 public void writeToParcel(Parcel out, int flags) {
88 out.writeInt(mEventName);
89 out.writeLong(mTimeSinceLastEvent);
90 out.writeInt(mVideoState);
179 public void writeToParcel(Parcel out, int flags) {
180 out.writeInt(mEventName);
181 out.writeLong(mTimeSinceLastEvent);
242 public void writeToParcel(Parcel out, int flags) {
243 out.writeInt(mName);
244 out.writeLong(mTime)
    [all...]
PhoneAccount.java 822 public void writeToParcel(Parcel out, int flags) {
824 out.writeInt(0);
826 out.writeInt(1);
827 mAccountHandle.writeToParcel(out, flags);
830 out.writeInt(0);
832 out.writeInt(1);
833 mAddress.writeToParcel(out, flags);
836 out.writeInt(0);
838 out.writeInt(1);
839 mSubscriptionAddress.writeToParcel(out, flags)
    [all...]

Completed in 1042 milliseconds

<<919293949596979899100>>