HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 2301 - 2325 of 4549) sorted by null

<<919293949596979899100>>

  /frameworks/av/media/libstagefright/mpeg2ts/
ESQueue.cpp 849 AString out; local
873 out.append(", ");
875 out.append(tmp);
888 ALOGV("accessUnit contains nal types %s", out.c_str());
    [all...]
  /frameworks/av/services/audioflinger/
AudioMixer.cpp 243 ALOGE("AudioMixer::getTrackName out of available tracks");
1448 int32_t *out = t1.mainBuffer; local
1542 int32_t *out = t1.mainBuffer; local
1599 int32_t* out = t.mainBuffer; local
1822 TO* out = reinterpret_cast<TO*>(t->mainBuffer); local
    [all...]
Effects.cpp 306 int16_t *out = mConfig.outputCfg.buffer.s16; local
308 out[i] = clamp16((int32_t)out[i] + (int32_t)in[i]);
    [all...]
  /frameworks/base/core/java/android/app/backup/
BackupAgent.java 558 // Now figure out which well-defined tree the file is placed in, working from
634 // Pull out the domain and set it aside to use when making the tarball.
984 FileOutputStream out = new FileOutputStream(data.getFileDescriptor()); local
    [all...]
  /frameworks/base/core/java/android/provider/
DocumentsContract.java 1082 final Bundle out = client.call(METHOD_CREATE_DOCUMENT, null, in); local
1094 final Bundle out = client.call(METHOD_IS_CHILD_DOCUMENT, null, in); local
1138 final Bundle out = client.call(METHOD_RENAME_DOCUMENT, null, in); local
1201 final Bundle out = client.call(METHOD_COPY_DOCUMENT, null, in); local
1237 final Bundle out = client.call(METHOD_MOVE_DOCUMENT, null, in); local
    [all...]
  /frameworks/base/core/jni/
AndroidRuntime.cpp 412 std::string out = language; local
414 out = out + "-" + country;
418 out = out + "-" + variant;
421 return out;
574 * buffer goes out of scope the option may be overwritten. It's best
793 // specific situation it is acceptable to *not* relocate and run out of the prebuilts
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
ExpandHelper.java 197 float out = target; local
198 out = out < mSmallSize ? mSmallSize : out;
199 out = out > mNaturalHeight ? mNaturalHeight : out;
200 return out;
  /frameworks/base/services/core/java/com/android/server/net/
NetworkStatsCollection.java 358 public void write(DataOutputStream out) throws IOException {
370 out.writeInt(FILE_MAGIC);
371 out.writeInt(VERSION_UNIFIED_INIT);
373 out.writeInt(keysByIdent.size());
376 ident.writeToStream(out);
378 out.writeInt(keys.size());
381 out.writeInt(key.uid);
382 out.writeInt(key.set);
383 out.writeInt(key.tag);
384 history.writeToStream(out);
    [all...]
  /frameworks/base/services/core/java/com/android/server/pm/
EphemeralApplicationRegistry.java 311 try (FileOutputStream out = new FileOutputStream(iconFile)) {
312 bitmap.compress(Bitmap.CompressFormat.PNG, 100, out);
635 FileOutputStream out = null; local
637 out = destination.startWrite();
640 serializer.setOutput(out, StandardCharsets.UTF_8.name());
663 destination.finishWrite(out);
666 destination.failWrite(out);
668 IoUtils.closeQuietly(out);
  /frameworks/base/services/core/java/com/android/server/wm/
DisplayContent.java 225 void getLogicalDisplayRect(Rect out) {
236 out.set(left, top, left + width, top + height);
239 void getContentRect(Rect out) {
240 out.set(mContentRect);
  /frameworks/base/tools/aapt2/compile/
Png.cpp 257 png_bytep out = outRows[j]; local
311 *out++ = idx;
392 png_bytep out = outRows[j]; local
400 *out++ = rr;
402 *out++ = (png_byte) (rr * 0.2126f + gg * 0.7152f + bb * 0.0722f);
405 *out++ = aa;
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/android/util/
PathParser_Delegate.java 116 PathParser_Delegate out = sManager.getDelegate(outDataPtr); local
119 if (out == null || from == null || to == null) {
129 if (out.mPathDataNodes.length != length) {
130 out.mPathDataNodes = new PathDataNode[length];
133 if (out.mPathDataNodes[i] == null) {
134 out.mPathDataNodes[i] = new PathDataNode(from.mPathDataNodes[i]);
136 out.mPathDataNodes[i].interpolatePathDataNode(from.mPathDataNodes[i],
160 PathParser_Delegate out = sManager.getDelegate(outDataPtr); local
162 if (from == null || out == null) {
165 out.mPathDataNodes = deepCopyNodes(from.mPathDataNodes)
    [all...]
  /frameworks/native/cmds/atrace/
atrace.cpp 855 uint8_t *in, *out; local
868 out = (uint8_t*)malloc(bufSize);
871 zs.next_out = out;
894 result = write(outFd, out, bufSize);
902 zs.next_out = out;
914 result = write(outFd, out, bytes);
927 free(out);
    [all...]
  /frameworks/native/libs/gui/
Surface.cpp 1246 ANativeWindowBuffer* out; local
    [all...]
  /frameworks/native/opengl/libagl/
primitives.cpp 600 // being culled out. So it's okay to light the vertices here, even though
873 vertex_t* out[2][MAX_CLIPPING_PLANES + MAX_VERTICES + 2]; local
895 vertex_t** const ovl = &out[outi][0];
961 vertex_t** const ovl = &out[outi][0];
    [all...]
  /frameworks/native/opengl/tests/hwc/
hwcCommit.cpp 195 ostringstream out; local
197 out << '[' << _l << ", " << _u << ']';
199 return out.str();
629 // are laid out on a diagonal starting from the upper left corner. With
1355 ostringstream out; local
1452 ostringstream out; local
1476 ostringstream out; local
    [all...]
  /frameworks/native/services/inputflinger/
EventHub.cpp 89 String8 out; local
91 out.appendFormat("%02x", digest[i]);
93 return out;
    [all...]
  /frameworks/native/services/sensorservice/
SensorService.cpp 565 sensors_event_t out; local
572 if (si->process(&out, event[i])) {
573 mSensorEventBuffer[count + k] = out;
    [all...]
  /frameworks/opt/calendar/tests/src/com/android/calendarcommon2/
RRuleTest.java 46 String[] out = new String[dates.length]; local
51 out[i] = time.format2445().substring(0, 8); // Just YYMMDD
53 out[i] = time.format2445().substring(0, 15); // YYMMDDThhmmss
57 return out;
118 long[] out = rp.expand(dtstart, recur, rangeStart.toMillis(false /* use isDst */), local
126 String[] actual = getFormattedDates(out, outCal, truncate);
    [all...]
  /hardware/bsp/intel/peripheral/audio/generic/
audio_hal.c 175 /* If pcm out then filename must end with 0p/0c */
332 void lock_output_stream(struct stream_out *out)
334 pthread_mutex_lock(&out->pre_lock);
335 pthread_mutex_lock(&out->lock);
336 pthread_mutex_unlock(&out->pre_lock);
344 * following order: hw device > out stream
348 * OUT functions
364 const struct stream_out* out = (const struct stream_out*)stream; local
366 proxy_get_period_size(&out->proxy) * audio_stream_out_frame_size(&(out->stream))
372 const struct stream_out *out = (const struct stream_out*)stream; local
394 struct stream_out *out = (struct stream_out *)stream; local
416 struct stream_out *out = (struct stream_out *)stream; local
457 struct stream_out *out = (struct stream_out *)stream; local
491 struct stream_out *out = (struct stream_out *)stream; local
554 struct stream_out *out = (struct stream_out *)stream; \/\/ discard const qualifier local
594 struct stream_out *out; local
716 struct stream_out *out = (struct stream_out *)stream; local
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/mips/dspr2/
vp9_itrans32_dspr2.c 955 int r, out; local
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/x86/
vp9_loopfilter_intrin_sse2.c 1540 unsigned char *out = dst[idx8x8]; local
    [all...]
  /hardware/invensense/6515/libsensors_iio/software/simple_apps/stress_iio/
stress_iio.c 508 bool g, a, out; local
525 out = rand()%2;
526 enable_quaternion(out);
527 enable_gyro_output(!out);
626 bool g, a, out; local
643 enable_gyro_output(!out);
  /hardware/libhardware/modules/usbaudio/
audio_hal.c 203 * card A pointer to a variable to receive the parsed-out card number.
204 * device A pointer to a variable to receive the parsed-out device number.
282 * following order: hw device > out stream
286 * OUT functions
302 const struct stream_out* out = (const struct stream_out*)stream; local
304 proxy_get_period_size(&out->proxy) * audio_stream_out_frame_size(&(out->stream));
310 const struct stream_out *out = (const struct stream_out*)stream; local
311 return out->hal_channel_mask;
332 struct stream_out *out = (struct stream_out *)stream local
363 struct stream_out *out = (struct stream_out *)stream; local
404 struct stream_out *out = (struct stream_out *)stream; local
437 struct stream_out *out = (struct stream_out *)stream; local
500 struct stream_out *out = (struct stream_out *)stream; \/\/ discard const qualifier local
536 struct stream_out *out; local
667 struct stream_out *out = (struct stream_out *)stream; local
    [all...]
  /hardware/ti/omap3/omx/system/src/openmax_il/common/inc/
OMX_TI_Debug.h 144 FILE *out; /* standard output file */ member in struct:OMX_TI_Debug
177 (dbg).out = stdout; \
192 (dbg).out = stdout; \
198 char line[80], *ptr, *end, out[75], err[75]; \
199 out[0] = err[0] = '\0'; \
213 strcpy(out, ptr); \
222 if (!strcmp(out, "stdout")) {} \
223 else if (!strcmp(out, "stderr")) (dbg).out = stderr; \
224 else if (!strcmp(out, "null")) (dbg).out = NULL;
    [all...]

Completed in 1518 milliseconds

<<919293949596979899100>>