HomeSort by relevance Sort by last modified time
    Searched full:stream (Results 1151 - 1175 of 9695) sorted by null

<<41424344454647484950>>

  /external/mesa3d/src/gallium/auxiliary/draw/
draw_so_emit_tmp.h 21 debug_assert(!"unexpected primitive type in stream output"); \
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/http/
Transport.java 26 * Returns an output stream where the request body can be written. The
27 * returned stream will of one of two types:
31 * bodies. The returned stream may be buffered; the caller must call
58 // TODO: make this the content stream?
  /external/opencv/otherlibs/highgui/
bitstrm.h 52 #define RBS_THROW_EOS -123 /* <end of stream> exception code */
95 // class RLByteStream - uchar-oriented stream.
108 // class RMBitStream - uchar-oriented stream.
119 // class RLBitStream - bit-oriented stream.
139 // class RMBitStream - bit-oriented stream.
189 // class WLByteStream - uchar-oriented stream.
203 // class WLByteStream - uchar-oriented stream.
215 // class WLBitStream - bit-oriented stream.
233 // class WMBitStream - bit-oriented stream.
  /external/proguard/src/proguard/io/
JarWriter.java 156 // Finish the entire ZIP stream, if any.
162 // Finish the entire ZIP stream.
173 // Close the parent stream.
181 * Makes sure the current output stream is set up for the given entry.
185 // Get the parent stream, new or exisiting.
186 // This may finish our own jar output stream.
190 // Did we get a stream?
196 // Do we need a new stream?
201 // Create a new jar stream, with a manifest, if set.
  /external/qemu/distrib/sdl-1.2.15/test/
loopwave.c 35 void SDLCALL fillerup(void *unused, Uint8 *stream, int len)
46 SDL_memcpy(stream, waveptr, waveleft);
47 stream += waveleft;
53 SDL_memcpy(stream, waveptr, len);
  /external/skia/include/animator/
SkAnimatorView.h 25 bool decodeStream(SkStream* stream);
  /external/skia/include/images/
SkForceLinking.h 12 * a stream.
  /external/skia/src/images/
SkImageRef.cpp 21 SkImageRef::SkImageRef(SkStream* stream, SkBitmap::Config config,
24 SkASSERT(stream);
25 stream->ref();
26 fStream = stream;
35 this, config, (int)stream->getLength());
82 bool SkImageRef::onDecode(SkImageDecoder* codec, SkStream* stream,
85 return codec->decode(stream, bitmap, config, mode);
111 SkDEBUGF(("Failed to rewind SkImageRef stream!"));
194 SkDEBUGF(("Failed to rewind SkImageRef stream!"));
SkImageRef_GlobalPool.cpp 27 SkImageRef_GlobalPool::SkImageRef_GlobalPool(SkStream* stream,
30 : SkImageRef(stream, config, sampleSize, &gGlobalPoolMutex) {
47 bool SkImageRef_GlobalPool::onDecode(SkImageDecoder* codec, SkStream* stream,
50 if (!this->INHERITED::onDecode(codec, stream, bitmap, config, mode)) {
  /external/skia/src/pdf/
SkPDFTypes.h 57 void emit(SkWStream* stream, SkPDFCatalog* catalog, bool indirect);
61 * @param stream The writable output stream to send the output to.
63 void emitIndirectObject(SkWStream* stream, SkPDFCatalog* catalog);
97 * @param stream The writable output stream to send the output to.
99 virtual void emitObject(SkWStream* stream, SkPDFCatalog* catalog,
120 virtual void emitObject(SkWStream* stream, SkPDFCatalog* catalog,
145 virtual void emitObject(SkWStream* stream, SkPDFCatalog* catalog,
169 virtual void emitObject(SkWStream* stream, SkPDFCatalog* catalog
    [all...]
  /external/skia/src/ports/
SkFontHost_linux.cpp 28 bool find_name_and_attributes(SkStream* stream, SkString* name,
283 SkStream* stream, bool isFixedPitch)
285 stream->ref();
286 fStream = stream;
340 SkAutoTUnref<SkStream> stream(SkStream::NewFromFile(path));
341 if (stream.get()) {
342 return find_name_and_attributes(stream, name, style, isFixedPitch);
498 SkTypeface* SkFontHost::CreateTypefaceFromStream(SkStream* stream) {
499 if (NULL == stream || stream->getLength() <= 0)
    [all...]
  /external/smack/asmack-master/patch/
35-pin-jbosh-boddy-parser.patch 11 * Size of the internal buffer when copying from a stream.
  /external/svox/pico/lib/
picokfst.c 58 picoos_uint8 * fstStream; /* the byte stream base address */
75 /* primitives for reading from byte stream */
78 /* Converts 'nrBytes' bytes starting at position '*pos' in byte stream 'stream' into unsigned number 'num'.
80 static void FixedBytesToUnsignedNum (picoos_uint8 * stream, picoos_uint8 nrBytes, picoos_uint32 * pos, picoos_uint32 * num)
86 (*num) = ((*num) << 8) + (picoos_uint32)stream[*pos];
92 /* Converts 'nrBytes' bytes starting at position '*pos' in byte stream 'stream' into signed number 'num'.
94 static void FixedBytesToSignedNum (picoos_uint8 * stream, picoos_uint8 nrBytes, picoos_uint32 * pos, picoos_int32 * num)
101 val = (val << 8) + (picoos_uint32)stream[*pos]
    [all...]
  /frameworks/av/libvideoeditor/vss/inc/
M4PTO3GPP_InternalTypes.h 68 * @brief State of a media stream encoding (audio or video).
73 M4PTO3GPP_kStreamState_NOSTREAM = 0, /**< No stream present */
74 M4PTO3GPP_kStreamState_STARTED = 1, /**< The stream encoding is in progress */
75 M4PTO3GPP_kStreamState_FINISHED = 2 /**< The stream has finished encoding */
129 M4_AudioStreamHandler* m_pReaderAudioStream;/**< Description of the read audio stream */
138 video stream */
140 audio stream */
142 video stream */
144 audio stream */
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_byte_stream.c 56 Extracts one NAL unit from the byte stream buffer. Removes
57 emulation prevention bytes if present. The original stream buffer
59 bytes are present in the stream.
61 Stream buffer is assumed to contain either exactly one NAL unit
63 stream format described in the Annex B of the standard. Function
67 pByteStream pointer to byte stream buffer
68 len length of the stream buffer (in bytes)
71 pStrmData stream information is stored here
72 readBytes number of bytes "consumed" from the stream buffer
76 HANTRO_NOK error in byte stream
    [all...]
  /frameworks/av/services/camera/libcameraservice/device3/
Camera3IOStreamBase.cpp 45 ALOGE("%s: Bad format for size-only stream: %d", __FUNCTION__,
57 ALOGV("%s: Stream %d: Has %d outstanding buffers,"
116 ALOGV("%s: Stream %d: Already disconnected",
141 buffer.stream = this;
162 ALOGE("%s: Stream %d: Can't get buffers in unconfigured state %d",
170 ALOGE("%s: Stream %d: Already dequeued maximum number of simultaneous"
183 ALOGE("%s: Stream %d: Can't return buffers in unconfigured state %d",
188 ALOGE("%s: Stream %d: No buffers outstanding to return", __FUNCTION__,
228 ALOGV("%s: Stream %d: All buffers returned; now idle", __FUNCTION__,
  /frameworks/base/services/java/com/android/server/
RandomBlock.java 43 InputStream stream = null; local
45 stream = new FileInputStream(filename);
46 return fromStream(stream);
48 close(stream);
  /frameworks/base/services/java/com/android/server/updates/
SELinuxPolicyInstallReceiver.java 88 private void installFile(File destination, BufferedInputStream stream, int length)
91 stream.read(chunk, 0, length);
96 BufferedInputStream stream = new BufferedInputStream(new FileInputStream(updateContent)); local
98 int[] chunkLengths = readChunkLengths(stream);
99 installFile(new File(updateDir, seappContextsPath), stream, chunkLengths[0]);
100 installFile(new File(updateDir, propertyContextsPath), stream, chunkLengths[1]);
101 installFile(new File(updateDir, fileContextsPath), stream, chunkLengths[2]);
102 installFile(new File(updateDir, sepolicyPath), stream, chunkLengths[3]);
104 IoUtils.closeQuietly(stream);
  /frameworks/base/services/java/com/android/server/wm/
DisplaySettings.java 98 FileInputStream stream; local
100 stream = mFile.openRead();
109 parser.setInput(stream, null);
154 stream.close();
184 FileOutputStream stream; local
186 stream = mFile.startWrite();
194 out.setOutput(stream, "utf-8");
218 mFile.finishWrite(stream);
221 mFile.failWrite(stream);
  /libcore/crypto/src/main/java/org/conscrypt/
Logger.java 30 public static class Stream extends PrintStream {
34 public Stream(String name) {
100 public static Stream getStream(String name) {
103 return new Stream(name);
OpenSSLSecretKey.java 124 private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException {
125 stream.defaultReadObject();
130 private void writeObject(ObjectOutputStream stream) throws IOException {
135 stream.defaultWriteObject();
  /libcore/luni/src/main/java/java/io/
FileInputStream.java 33 * An input stream that reads bytes from a file.
47 * <p>This stream is <strong>not buffered</strong>. Most callers should wrap
48 * this stream with a {@link BufferedInputStream}.
70 * the file from which this stream reads.
87 * the FileDescriptor from which this stream reads.
98 // FileDescriptor is not owned by the stream.
131 * Ensures that all resources for this stream are released when it is about
135 * if an error occurs attempting to finalize this stream.
156 * this stream.
OutputStreamWriter.java 29 * A class for turning a character stream into a byte stream. Data written to
30 * the target input stream is converted into bytes by either a default or a
33 * of bytes to be written to target stream and converts these into characters as
48 * stream to write converted characters to. The default character encoding
52 * the non-null target stream to write converted bytes to.
60 * stream to write converted characters to and {@code charsetName} as the character
65 * the target stream to write converted bytes to.
91 * stream to write converted characters to and {@code cs} as the character
95 * the target stream to write converted bytes to
    [all...]
  /libcore/luni/src/main/java/java/security/cert/
CertificateFactorySpi.java 41 * stream.
44 * the stream from which the data is read to create the
55 * input stream.
58 * the stream from where data is read to create the certificates.
68 * the provided input stream.
71 * the stream from where data is read to create the CRL.
81 * List</i> (CRL) from the provided input stream.
84 * the stream from which the data is read to create the CRLs.
97 * an input stream with encoded data.
  /libcore/luni/src/test/java/libcore/java/util/zip/
OldAndroidZipStressTest.java 45 // We must read the stream for the JarEntry to retrieve its certificates.
86 InputStream stream = zip.getInputStream(entry); local
87 int j = stream.read(buffer);
89 j = stream.read(buffer);
91 stream.close();
105 InputStream stream = zip.getInputStream(entries.nextElement()); local
106 int j = stream.read(buffer);
108 j = stream.read(buffer);
110 stream.close();

Completed in 858 milliseconds

<<41424344454647484950>>