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

<<71727374757677787980>>

  /frameworks/rs/cpu_ref/
rsCpuIntrinsicBlend.cpp 93 extern "C" int rsdIntrinsicBlend_K(uchar4 *out, uchar4 const *in, int slot,
118 uchar4 *out = (uchar4 *)info->outPtr[0]; local
127 if (rsdIntrinsicBlend_K(out, in, info->slot, x1, x2) >= 0)
133 for (;x1 < x2; x1++, out++) {
134 *out = 0;
138 for (;x1 < x2; x1++, out++, in++) {
139 *out = *in;
150 rsdIntrinsicBlendSrcOver_K(out, in, len);
152 out += len << 3;
157 for (;x1 < x2; x1++, out++, in++)
    [all...]
rsCpuIntrinsicResize.cpp 341 uchar4 *out = ((uchar4 *)info->outPtr[0]) + xstart; local
362 out, len,
367 out += len;
374 *out = OneBiCubic(yp0, yp1, yp2, yp3, xf, yf, srcWidth);
375 out++;
408 uchar2 *out = ((uchar2 *)info->outPtr[0]) + xstart; local
429 out, len,
434 out += len;
441 *out = OneBiCubic(yp0, yp1, yp2, yp3, xf, yf, srcWidth);
442 out++
475 uchar *out = ((uchar *)info->outPtr[0]) + xstart; local
542 float4 *out = ((float4 *)info->outPtr[0]) + xstart; local
582 float2 *out = ((float2 *)info->outPtr[0]) + xstart; local
622 float *out = ((float *)info->outPtr[0]) + xstart; local
    [all...]
rsCpuScriptGroup2.cpp 67 const Allocation* out = closure->mReturnValue; local
68 const uint32_t ostep = out->mHal.state.elementSizeBytes;
69 const uint8_t* ptr = (uint8_t *)(out->mHal.drvState.lod[0].mallocPtr) +
72 ptr += out->mHal.drvState.lod[0].stride * kinfo->current.y;
304 // The output filename has to be the last, in case we need to pop it out and
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
convolve_test.cc 260 uint8_t* const out = output(); local
264 UUT_->h8_(in, kInputStride, out, kOutputStride, filter8, 16, filter8, 16,
271 ASSERT_EQ(out[y * kOutputStride + x], in[y * kInputStride + x])
277 uint8_t* const out = output(); local
281 UUT_->v8_(in, kInputStride, out, kOutputStride, filter8, 16, filter8, 16,
288 ASSERT_EQ(out[y * kOutputStride + x], in[y * kInputStride + x])
294 uint8_t* const out = output(); local
298 UUT_->hv8_(in, kInputStride, out, kOutputStride, filter8, 16, filter8, 16,
305 ASSERT_EQ(out[y * kOutputStride + x], in[y * kInputStride + x])
343 uint8_t* const out = output() local
388 uint8_t* const out = output(); local
467 uint8_t* const out = output(); local
555 uint8_t* const out = output(); local
    [all...]
  /hardware/libhardware/modules/audio/
audio_hw.c 84 // out->last_write_time_us = 0; unnecessary as a stale write time has same effect
125 struct stub_stream_out *out = (struct stub_stream_out *)stream; local
129 const int64_t elapsed_time_since_last_write = now - out->last_write_time_us;
138 out->last_write_time_us = now + sleep_time;
301 struct stub_stream_out *out; local
304 out = (struct stub_stream_out *)calloc(1, sizeof(struct stub_stream_out));
305 if (!out)
308 out->stream.common.get_sample_rate = out_get_sample_rate;
309 out->stream.common.set_sample_rate = out_set_sample_rate;
310 out->stream.common.get_buffer_size = out_get_buffer_size
    [all...]
  /hardware/qcom/audio/legacy/alsa_sound/
AudioHardwareALSA.cpp 735 AudioStreamOutALSA *out = 0; local
741 return out;
771 return out;
827 out = new AudioStreamOutALSA(this, &(*it));
828 err = out->set(format, channels, sampleRate, devices);
834 return out;
903 out = new AudioStreamOutALSA(this, &(*it));
904 err = out->set(format, channels, sampleRate, devices);
907 return out;
1006 AudioStreamOutALSA *out = 0; local
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
SystemTest.java 49 PrintStream orgOut = System.out;
50 PrintStream out = new PrintStream(new ByteArrayOutputStream()); local
51 System.setOut(out);
52 assertTrue("out not set", System.out == out);
  /libcore/luni/src/test/java/libcore/java/io/
OldOutputStreamWriterTest.java 125 Support_OutputStream out = new Support_OutputStream(); local
136 writer = new OutputStreamWriter(out, (Charset) null);
142 writer = new OutputStreamWriter(out, cs);
151 Support_OutputStream out = new Support_OutputStream(); local
163 writer = new OutputStreamWriter(out, (CharsetEncoder) null);
169 writer = new OutputStreamWriter(out, cs);
239 System.out.println(e);
341 Support_OutputStream out = new Support_OutputStream(500); local
344 writer = new OutputStreamWriter(out, "utf-8");
399 out.setThrowsException(true)
434 Support_OutputStream out = new Support_OutputStream(500); local
486 Support_OutputStream out = new Support_OutputStream(500); local
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/
OldRuntimeTest.java 478 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
481 Runtime.getRuntime().getLocalizedOutputStream(out);
486 byte[] returned = out.toByteArray();
  /libcore/luni/src/test/java/libcore/java/text/
DecimalFormatSymbolsTest.java 49 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
50 new ObjectOutputStream(out).writeObject(originalDfs);
51 byte[] bytes = out.toByteArray();
98 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
99 new ObjectOutputStream(out).writeObject(dfs);
100 byte[] bytes = out.toByteArray();
OldNumberFormatTest.java 212 String out = nf1.format(1234567890.0123456789); local
213 assertEquals("Wrong result for double : " + out, "1,234,567,890.012",
214 out.toString());
216 out = nf1.format(-1234567890.0123456789);
217 assertEquals("Wrong result for double : " + out, "-1,234,567,890.012",
218 out.toString());
222 out = nf2.format(-1234567890.0123456789);
224 // assertEquals("Wrong result for double : " + out, "1,234,567,890.012-",
225 // out.toString());
226 assertEquals("Wrong result for double : " + out, "-1'234'567'890.012", out.toString())
239 String out = nf1.format(Long.MAX_VALUE); local
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/io/
ObjectInputStreamTest.java 869 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
878 out.write(begStream, 0, begStream.length);
879 out.write(cName.length); // second byte for C class name length
880 out.write(cName, 0, cName.length); // C class name
892 out.write(midStream, 0, midStream.length);
893 out.write(aName.length); // second byte for A class name length
894 out.write(aName, 0, aName.length); // A class name
925 out.write(endStream, 0, endStream.length);
926 out.flush();
930 out.toByteArray()))
1003 ObjectOutputStream out = new ObjectOutputStream(new FileOutputStream( local
1273 ObjectOutputStream out = new ObjectOutputStream(pout); local
1406 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
DigestOutputStreamTest.java 80 MyOutputStream out = new MyOutputStream(); local
82 MyDigestOutputStream dos = new MyDigestOutputStream(out, md);
83 assertSame(out, dos.myOutputStream());
95 dos = new MyDigestOutputStream(out, null);
106 OutputStream out = new MyOutputStream(); local
109 DigestOutputStream dos = new DigestOutputStream(out, digest);
113 dos = new DigestOutputStream(out, null);
123 OutputStream out = new MyOutputStream(); local
125 DigestOutputStream dos = new DigestOutputStream(out, null);
605 public MyDigestOutputStream(OutputStream out, MessageDigest digest)
    [all...]
  /libcore/ojluni/src/main/java/java/io/
ObjectOutputStream.java 109 * <p>Serialization does not write out the fields of any object that does not
229 * @param out output stream to write to
233 * @throws NullPointerException if <code>out</code> is <code>null</code>
239 public ObjectOutputStream(OutputStream out) throws IOException {
241 bout = new BlockDataOutputStream(out);
1798 private final OutputStream out; field in class:ObjectOutputStream.BlockDataOutputStream
    [all...]
  /libcore/ojluni/src/main/java/java/lang/
ThreadGroup.java     [all...]
  /libcore/ojluni/src/main/java/java/util/
Properties.java 178 * out across several adjacent natural lines by escaping
360 //System.out.println("line=<" + new String(lineBuf, 0, limit) + ">");
398 * and blank lines and filter out those leading whitespace characters
542 char[] out = convtBuf; local
573 out[outLen++] = (char)value;
579 out[outLen++] = aChar;
582 out[outLen++] = aChar;
585 return new String (out, 0, outLen);
692 * Calls the <code>store(OutputStream out, String comments)</code> method
697 * properties list is via the <code>store(OutputStream out,
    [all...]
  /libcore/ojluni/src/main/java/sun/security/x509/
X509CRLEntryImpl.java 314 DerOutputStream out = new DerOutputStream(); local
315 out.putOctetString(extValue);
316 extValue = out.toByteArray();
425 DerOutputStream out = new DerOutputStream();
426 out.putOctetString(extData);
427 return out.toByteArray();
  /ndk/sources/android/support/src/stdio/
vfwprintf.c 20 TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
177 static void out(FILE *f, const wchar_t *s, size_t l) function
230 if (f) out(f, a, l);
328 out(f, a, p);
387 FakeFILE out[1]; local
388 fake_file_init_file(out, f);
395 ret = wprintf_core(out, fmt, &ap2, nl_arg, nl_type);
406 FakeFILE out[1]; local
407 fake_file_init_wbuffer(out, s, l);
409 ret = wprintf_core(out, fmt, &ap2, nl_arg, nl_type)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
ios.cpp 120 const ios_base::openmode ios_base::out; member in class:ios_base
  /ndk/sources/host-tools/make-3.81/
misc.c 78 register char *in, *out, *p;
86 out = in;
87 while (out > line && out[-1] == '\\')
88 --out;
105 if (in == out - 1)
111 *out++ = '\\';
121 while (out > line && isblank ((unsigned char)out[-1]))
122 --out;
77 register char *in, *out, *p; local
390 register char *out = (char *) xmalloc (length + 1); local
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
fstream_test.cpp 175 basic_fstream<char,char_traits<char> > f( "test_file.txt", ios_base::in | ios_base::out | ios_base::trunc );
210 basic_fstream<char,char_traits<char> > f( "test_file.txt", ios_base::in | ios_base::out | ios_base::trunc );
232 ofstream of("test_file.txt", ios_base::out | ios_base::binary | ios_base::trunc);
299 CPPUNIT_CHECK( o.rdbuf()->pubseekoff( 0, ios_base::cur, ios_base::out ) == ofstream::pos_type(6) );
307 CPPUNIT_CHECK( o.rdbuf()->pubseekoff( 0, ios_base::cur, ios_base::out ) == ofstream::pos_type(9) );
311 ofstream o( "test_file.txt", ios_base::app | ios_base::out )
338 ofstream o( "test_file.txt", ios_base::app | ios_base::out );
339 CPPUNIT_CHECK( o.rdbuf()->pubseekoff( 0, ios_base::cur, ios_base::out ) == ofstream::pos_type(expected_pos) );
356 ofstream o( "test_file.txt", ios_base::app | ios_base::out );
358 CPPUNIT_CHECK( o.rdbuf()->pubseekoff( 0, ios_base::cur, ios_base::out ) == ofstream::pos_type(10) )
644 result out(state_type&, function in class:std::codecvt
    [all...]
  /ndk/tests/device/test-stlport/unit/
fstream_test.cpp 175 basic_fstream<char,char_traits<char> > f( "test_file.txt", ios_base::in | ios_base::out | ios_base::trunc );
210 basic_fstream<char,char_traits<char> > f( "test_file.txt", ios_base::in | ios_base::out | ios_base::trunc );
232 ofstream of("test_file.txt", ios_base::out | ios_base::binary | ios_base::trunc);
299 CPPUNIT_CHECK( o.rdbuf()->pubseekoff( 0, ios_base::cur, ios_base::out ) == ofstream::pos_type(6) );
307 CPPUNIT_CHECK( o.rdbuf()->pubseekoff( 0, ios_base::cur, ios_base::out ) == ofstream::pos_type(9) );
311 ofstream o( "test_file.txt", ios_base::app | ios_base::out )
338 ofstream o( "test_file.txt", ios_base::app | ios_base::out );
339 CPPUNIT_CHECK( o.rdbuf()->pubseekoff( 0, ios_base::cur, ios_base::out ) == ofstream::pos_type(expected_pos) );
356 ofstream o( "test_file.txt", ios_base::app | ios_base::out );
358 CPPUNIT_CHECK( o.rdbuf()->pubseekoff( 0, ios_base::cur, ios_base::out ) == ofstream::pos_type(10) )
644 result out(state_type&, function in class:std::codecvt
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppLauncherActivity.java 29 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
105 // EXTRA_TEXT, we will try send this TEXT out; Currently in
354 StringBuilder out = new StringBuilder(); local
358 out.append(text.substring(end, start));
364 out.append("&nbsp;");
366 out.append(' ');
368 out.append("<br>");
370 out.append("&lt;");
372 out.append("&gt;");
374 out.append("&amp;")
    [all...]
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/
VendorPolicyLoader.java 296 Bundle out = getPolicy(FIND_PROVIDER, params); local
297 if (out != null && !out.isEmpty()) {
302 p.incomingUriTemplate = out.getString(FIND_PROVIDER_IN_URI);
303 p.incomingUsernameTemplate = out.getString(FIND_PROVIDER_IN_USER);
304 p.outgoingUriTemplate = out.getString(FIND_PROVIDER_OUT_URI);
305 p.outgoingUsernameTemplate = out.getString(FIND_PROVIDER_OUT_USER);
306 p.note = out.getString(FIND_PROVIDER_NOTE);
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
VideoUtils.java 107 IsoFile out = new DefaultMp4Builder().build(movie); local
110 out.getBox(fc); // This one build up the memory.

Completed in 2257 milliseconds

<<71727374757677787980>>