HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 1776 - 1800 of 3019) sorted by null

<<71727374757677787980>>

  /frameworks/base/core/java/android/net/
NetworkStatsHistory.java 136 public void writeToParcel(Parcel out, int flags) {
137 out.writeLong(bucketDuration);
138 writeLongArray(out, bucketStart, bucketCount);
139 writeLongArray(out, activeTime, bucketCount);
140 writeLongArray(out, rxBytes, bucketCount);
141 writeLongArray(out, rxPackets, bucketCount);
142 writeLongArray(out, txBytes, bucketCount);
143 writeLongArray(out, txPackets, bucketCount);
144 writeLongArray(out, operations, bucketCount);
145 out.writeLong(totalBytes)
    [all...]
  /frameworks/base/core/java/android/nfc/cardemulation/
ApduServiceInfo.java 370 StringBuilder out = new StringBuilder("ApduService: "); local
371 out.append(getComponent());
372 out.append(", description: " + mDescription);
373 out.append(", Static AID Groups: ");
375 out.append(aidGroup.toString());
377 out.append(", Dynamic AID Groups: ");
379 out.append(aidGroup.toString());
381 return out.toString();
  /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/wm/
DisplayContent.java 178 void getLogicalDisplayRect(Rect out) {
189 out.set(left, top, left + width, top + height);
  /frameworks/compile/mclinker/lib/Object/
ObjectLinker.cpp 369 SectionMap::iterator out, outBegin, outEnd; local
372 for (out = outBegin; out != outEnd; ++out) {
374 LDSection* out_sect = (*out)->getSection();
376 inBegin = (*out)->begin();
377 inEnd = (*out)->end();
380 if ((*out)->prolog().hasSubAlign()) {
381 evaluator.eval((*out)->prolog().subAlign(), in_align);
386 if ((*out)->prolog().hasSubAlign()
    [all...]
  /frameworks/ex/variablespeed/tests/src/com/android/ex/variablespeed/
MediaPlayerProxyTestCase.java 553 public void copyBetweenStreams(InputStream in, OutputStream out) throws IOException {
557 out.write(buffer, 0, bytesRead);
  /frameworks/native/cmds/atrace/
atrace.cpp 648 uint8_t *in, *out; local
661 out = (uint8_t*)malloc(bufSize);
664 zs.next_out = out;
687 result = write(STDOUT_FILENO, out, bufSize);
695 zs.next_out = out;
707 result = write(STDOUT_FILENO, out, bytes);
720 free(out);
  /frameworks/native/libs/gui/
SurfaceComposerClient.cpp 263 ComposerState* const out = mComposerStates.editArray(); local
264 return &(out[index].state);
  /frameworks/native/opengl/tests/hwc/
hwcTestLib.cpp 163 ostringstream out; local
165 out << '[' << this->c1() << ", "
169 return out.str();
175 ostringstream out; local
177 out << '[' << this->width() << ", "
180 return out.str();
199 ostringstream out; local
201 out << '[';
202 out << rect.left << ", ";
203 out << rect.top << ", "
    [all...]
  /frameworks/native/opengl/tools/glgen/src/
JniCodeEmitter.java 130 public void emitNativeDeclaration(JFunc jfunc, PrintStream out) {
132 out.println(" /* @hide C function " + jfunc.getCFunc().getOriginal() + " */");
133 out.println();
135 out.println(" // C function " + jfunc.getCFunc().getOriginal());
136 out.println();
139 emitFunction(jfunc, out, true, false);
142 public void emitJavaInterfaceCode(JFunc jfunc, PrintStream out) {
143 emitFunction(jfunc, out, false, true);
146 public void emitJavaCode(JFunc jfunc, PrintStream out) {
147 emitFunction(jfunc, out, false, false)
    [all...]
  /frameworks/rs/cpu_ref/
rsCpuCore.h 44 void *out; member in struct:android::renderscript::__anon19009
  /frameworks/support/v4/java/android/support/v4/app/
ShareCompat.java 57 * to call out the app that the content was shared from.
92 StringBuilder out = new StringBuilder(); local
93 withinStyle(out, text, 0, text.length());
94 return out.toString();
97 private static void withinStyle(StringBuilder out, CharSequence text,
103 out.append("&lt;");
105 out.append("&gt;");
107 out.append("&amp;");
109 out.append("&#" + ((int) c) + ";");
112 out.append("&nbsp;")
    [all...]
  /frameworks/support/v4/jellybean/android/support/v4/media/routing/
MediaRouterJellybean.java 49 List out = new ArrayList(count); local
51 out.add(router.getRouteAt(i));
53 return out;
60 List out = new ArrayList(count); local
62 out.add(router.getCategoryAt(i));
64 return out;
186 List out = new ArrayList(count); local
188 out.add(group.getRouteAt(i));
190 return out;
245 ArrayList out = new ArrayList() local
    [all...]
  /frameworks/support/v7/mediarouter/jellybean/android/support/v7/media/
MediaRouterJellybean.java 49 List out = new ArrayList(count); local
51 out.add(router.getRouteAt(i));
53 return out;
60 List out = new ArrayList(count); local
62 out.add(router.getCategoryAt(i));
64 return out;
186 List out = new ArrayList(count); local
188 out.add(group.getRouteAt(i));
190 return out;
245 ArrayList out = new ArrayList() local
    [all...]
  /hardware/intel/audio_media/hdmi/
tinyaudio_hw.c 45 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
147 * following order: hw device > out stream
239 static int start_output_stream(struct stream_out *out)
241 struct audio_device *adev = out->dev;
255 out->pcm_config.channels,
256 out->pcm_config.rate,
257 out->pcm_config.period_size,
258 out->pcm_config.period_count,
259 out->pcm_config.format);
261 out->pcm_config.start_threshold = 0
297 struct stream_out *out = (struct stream_out *)stream; local
311 struct stream_out *out = (struct stream_out *)stream; local
341 struct stream_out *out = (struct stream_out *)stream; local
363 struct stream_out *out = (struct stream_out *)stream; local
394 struct stream_out *out = (struct stream_out *)stream; local
489 struct stream_out *out = (struct stream_out *)stream; local
512 struct stream_out *out = (struct stream_out *)stream; local
566 struct stream_out *out = (struct stream_out *)stream; local
585 struct stream_out *out = (struct stream_out *)stream; local
702 struct stream_out *out; local
806 struct stream_out *out = (struct stream_out *)stream; local
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/mips/dspr2/
vp9_itrans16_dspr2.c 1222 int32_t out; local
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
vp9_idct.c 120 int16_t out[4 * 4]; local
121 int16_t *outptr = out;
135 temp_in[j] = out[j * 4 + i];
146 int16_t out = dct_const_round_shift(input[0] * cospi_16_64); local
147 out = dct_const_round_shift(out * cospi_16_64);
148 a1 = ROUND_POWER_OF_TWO(out, 4);
205 int16_t out[8 * 8]; local
206 int16_t *outptr = out;
220 temp_in[j] = out[j * 8 + i]
231 int16_t out = dct_const_round_shift(input[0] * cospi_16_64); local
293 int16_t out[4 * 4]; local
401 int16_t out[8 * 8]; local
425 int16_t out[8 * 8] = { 0 }; local
615 int16_t out[16 * 16]; local
819 int16_t out[16 * 16]; local
843 int16_t out[16 * 16] = { 0 }; local
870 int16_t out = dct_const_round_shift(input[0] * cospi_16_64); local
1248 int16_t out[32 * 32]; local
1285 int16_t out[32 * 32] = {0}; local
1313 int16_t out = dct_const_round_shift(input[0] * cospi_16_64); local
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_dct.c 57 int16_t *out = intermediate; local
87 out[0] = fdct_round_shift(temp1);
88 out[2] = fdct_round_shift(temp2);
91 out[1] = fdct_round_shift(temp1);
92 out[3] = fdct_round_shift(temp2);
95 out += 4;
97 // Setup in/out for next pass.
99 out = output;
163 int16_t out[4 * 4]; local
164 int16_t *outptr = &out[0]
325 int16_t *out = intermediate; local
575 int16_t out[64]; local
972 int16_t out[256]; local
    [all...]
  /hardware/libhardware_legacy/audio/
audio_hw_hal.cpp 121 const struct legacy_stream_out *out = local
123 return out->legacy_out->sampleRate();
128 struct legacy_stream_out *out = local
138 const struct legacy_stream_out *out = local
140 return out->legacy_out->bufferSize();
145 const struct legacy_stream_out *out = local
147 return (audio_channel_mask_t) out->legacy_out->channels();
152 const struct legacy_stream_out *out = local
155 return (audio_format_t) out->legacy_out->format();
160 struct legacy_stream_out *out local
169 struct legacy_stream_out *out = local
176 const struct legacy_stream_out *out = local
184 struct legacy_stream_out *out = local
202 const struct legacy_stream_out *out = local
222 const struct legacy_stream_out *out = local
230 struct legacy_stream_out *out = local
238 struct legacy_stream_out *out = local
246 const struct legacy_stream_out *out = local
254 const struct legacy_stream_out *out = local
496 struct legacy_stream_out *out; local
545 struct legacy_stream_out *out = reinterpret_cast<struct legacy_stream_out *>(stream); local
    [all...]
  /hardware/qcom/audio/legacy/alsa_sound/
audio_hw_hal.cpp 144 const struct qcom_stream_out *out = local
146 return out->qcom_out->sampleRate();
151 struct qcom_stream_out *out = local
161 const struct qcom_stream_out *out = local
163 return out->qcom_out->bufferSize();
168 const struct qcom_stream_out *out = local
170 return out->qcom_out->channels();
175 const struct qcom_stream_out *out = local
177 return (audio_format_t)out->qcom_out->format();
182 struct qcom_stream_out *out local
191 struct qcom_stream_out *out = local
198 const struct qcom_stream_out *out = local
206 struct qcom_stream_out *out = local
224 const struct qcom_stream_out *out = local
244 const struct qcom_stream_out *out = local
252 struct qcom_stream_out *out = local
260 struct qcom_stream_out *out = local
268 const struct qcom_stream_out *out = local
286 const struct qcom_stream_out *out = local
525 struct qcom_stream_out *out; local
562 struct qcom_stream_out *out; local
613 struct qcom_stream_out *out = reinterpret_cast<struct qcom_stream_out *>(stream); local
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
SerializationStressTest3.java 347 private void writeObject(java.io.ObjectOutputStream out)
349 ObjectOutputStream.PutField fields = out.putFields();
352 // Use fields.write() instead of out.writeFields();
353 fields.write(out);
366 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
367 DataOutputStream dos = new DataOutputStream(out);
379 new ByteArrayInputStream(out.toByteArray()));
391 System.out.println("Error " + err + " when testing BLOCKDATALONG");
407 System.out.println("Obj = " + objToSave);
419 System.out.println("Error when obj = " + objToSave)
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/xml/parsers/
SAXParserTestSupport.java 107 // System.out.println(str.toString());
127 System.out.println("IOException during processing the file: "
152 System.out.println("for "+KEYS[i]+": original:" +
154 System.out.println();
155 System.out.println(" result:" + result.get(KEYS[i]));
156 System.out.println();
200 System.out.print(data_isStartDocument.toString() + SEPARATOR_DATA +
361 System.out.print(data_isStartDocument.toString() + SEPARATOR_DATA +
  /libcore/luni/src/main/java/java/awt/font/
NumericShaper.java 535 * System.out.println(NumericShaper.getShaper(NumericShaper.EASTERN_ARABIC));
538 * System.out.println(NumericShaper.getContextualShaper(
542 * System.out.println(NumericShaper.getContextualShaper(
818 * @param out the out
822 private void writeObject(java.io.ObjectOutputStream out)
825 out.defaultWriteObject();
    [all...]
  /libcore/luni/src/main/java/java/lang/
System.java 77 public static final PrintStream out; field in class:System
106 out = new PrintStream(new FileOutputStream(FileDescriptor.out));
132 setFieldImpl("out", "Ljava/io/PrintStream;", newOut);
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/
OldThreadGroupTest.java 368 private void populateGroupsWithThreads(ThreadGroup group, int threadCount, List<MyThread> out) {
370 out.add(new MyThread(group, "MyThread " + i + " of " + threadCount));
376 populateGroupsWithThreads(element, threadCount, out);

Completed in 819 milliseconds

<<71727374757677787980>>