Searched refs:stream (Results 151 - 175 of 2457) sorted by relevance

1234567891011>>

/external/clang/test/CodeGen/
H A D2002-06-25-FWriteInterfaceFailure.c5 int fprintf(FILE * restrict stream, const char * restrict format, ...);
/external/freetype/src/gzip/
H A Dftgzip.c172 FT_Stream source; /* parent/source stream */
173 FT_Stream stream; /* embedding stream */ member in struct:FT_GZipFileRec_
175 z_stream zstream; /* zlib input stream */
199 ft_gzip_check_header( FT_Stream stream )
274 FT_Stream stream,
281 zip->stream = stream;
283 zip->memory = stream->memory;
291 stream
273 ft_gzip_file_init( FT_GZipFile zip, FT_Stream stream, FT_Stream source ) argument
343 FT_Stream stream = zip->source; local
372 FT_Stream stream = zip->source; local
565 ft_gzip_stream_io( FT_Stream stream, FT_ULong pos, FT_Byte* buffer, FT_ULong count ) argument
699 z_stream stream; local
[all...]
/external/mesa3d/src/gallium/drivers/i915/
H A Di915_debug_private.h42 void i915_disassemble_program(struct debug_stream *stream,
/external/nanopb-c/tests/basic_stream/
H A Ddecode_stream.c12 bool print_person(pb_istream_t *stream) argument
17 if (!pb_decode(stream, Person_fields, &person))
58 bool callback(pb_istream_t *stream, uint8_t *buf, size_t count) argument
60 FILE *file = (FILE*)stream->state;
66 stream->bytes_left = 0;
73 pb_istream_t stream = {&callback, NULL, SIZE_MAX}; local
74 stream.state = stdin;
77 if (!print_person(&stream))
79 printf("Parsing failed: %s\n", PB_GET_ERROR(&stream));
/external/oprofile/libutil++/
H A Dbfd_spu_support.cpp27 FILE * stream; member in struct:spu_elf
52 spu_bfd_iovec_close(bfd * nbfd, void * stream) argument
54 spu_elf * my_stream = (spu_elf *) stream;
56 fclose(my_stream->stream);
68 spu_bfd_iovec_pread(bfd * abfd, void * stream, void * buf, argument
71 spu_elf * my_stream = (spu_elf *) stream;
72 fseek(my_stream->stream, my_stream->spu_offset + offset,
74 nbytes = fread(buf, sizeof(char), nbytes, my_stream->stream);
94 spu_elf_stream->stream = fp;
/external/skia/include/utils/
H A DSkFrontBufferedStream.h14 * Specialized stream that buffers the first X bytes of a stream,
16 * stream APIs, once more bytes than can fit in the buffer are read,
17 * no more buffering is done. This stream is designed for a use case
19 * X bytes (inclusive), and the wrapped stream is not necessarily
25 * Creates a new stream that wraps and buffers an SkStream.
26 * @param stream SkStream to buffer. If stream is NULL, NULL is
29 * stream, so it should be unreffed and no longer used directly.
34 static SkStreamRewindable* Create(SkStream* stream, size_
[all...]
/external/skia/src/images/
H A DSkImageEncoder.cpp15 bool SkImageEncoder::encodeStream(SkWStream* stream, const SkBitmap& bm, argument
18 return this->onEncode(stream, bm, quality);
24 SkFILEWStream stream(file);
25 return this->onEncode(&stream, bm, quality);
29 SkDynamicMemoryWStream stream; local
31 if (this->onEncode(&stream, bm, quality)) {
32 return stream.copyToData();
43 bool SkImageEncoder::EncodeStream(SkWStream* stream, const SkBitmap& bm, Type t, argument
46 return enc.get() && enc.get()->encodeStream(stream, bm, quality);
/external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
H A Darith_routines.c16 * terminate and return byte stream;
17 * returns the number of bytes in the stream
24 /* point to the right place in the stream buffer */
25 stream_ptr = streamdata->stream + streamdata->stream_index;
37 stream_ptr = streamdata->stream + streamdata->stream_index;
51 stream_ptr = streamdata->stream + streamdata->stream_index;
58 /* calculate stream length */
59 return (int)(stream_ptr - streamdata->stream);
/external/chromium_org/third_party/skia/tools/skpdiff/
H A DSkDiffContext.cpp223 void SkDiffContext::outputRecords(SkWStream& stream, bool useJSONP) { argument
228 stream.writeText("var SkPDiffRecords = {\n");
230 stream.writeText("{\n");
232 stream.writeText(" \"records\": [\n");
234 stream.writeText(" {\n");
240 stream.writeText(" \"commonName\": \"");
241 stream.writeText(currentRecord->fCommonName.c_str());
242 stream.writeText("\",\n");
244 stream.writeText(" \"differencePath\": \"");
245 stream
301 outputCsv(SkWStream& stream) argument
[all...]
/external/skia/tools/skpdiff/
H A DSkDiffContext.cpp223 void SkDiffContext::outputRecords(SkWStream& stream, bool useJSONP) { argument
228 stream.writeText("var SkPDiffRecords = {\n");
230 stream.writeText("{\n");
232 stream.writeText(" \"records\": [\n");
234 stream.writeText(" {\n");
240 stream.writeText(" \"commonName\": \"");
241 stream.writeText(currentRecord->fCommonName.c_str());
242 stream.writeText("\",\n");
244 stream.writeText(" \"differencePath\": \"");
245 stream
301 outputCsv(SkWStream& stream) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/
H A Di915_debug.c35 debug(struct debug_stream *stream, const char *name, GLuint len) argument
38 GLuint *ptr = (GLuint *)(stream->ptr + stream->offset);
41 printf("Error - zero length packet (0x%08x)\n", stream->ptr[0]);
46 if (stream->print_addresses)
47 printf("%08x: ", stream->offset);
55 stream->offset += len * sizeof(GLuint);
81 debug_prim(struct debug_stream *stream, const char *name, argument
84 GLuint *ptr = (GLuint *)(stream->ptr + stream
111 debug_program(struct debug_stream *stream, const char *name, GLuint len) argument
133 debug_chain(struct debug_stream *stream, const char *name, GLuint len) argument
158 debug_variable_length_prim(struct debug_stream *stream) argument
206 debug_load_immediate(struct debug_stream *stream, const char *name, GLuint len) argument
312 debug_load_indirect(struct debug_stream *stream, const char *name, GLuint len) argument
368 BR13( struct debug_stream *stream, GLuint val ) argument
379 BR2223( struct debug_stream *stream, GLuint val22, GLuint val23 ) argument
400 BR09( struct debug_stream *stream, GLuint val ) argument
406 BR26( struct debug_stream *stream, GLuint val ) argument
414 BR11( struct debug_stream *stream, GLuint val ) argument
421 BR12( struct debug_stream *stream, GLuint val ) argument
427 BR16( struct debug_stream *stream, GLuint val ) argument
434 debug_copy_blit(struct debug_stream *stream, const char *name, GLuint len) argument
456 debug_color_blit(struct debug_stream *stream, const char *name, GLuint len) argument
476 debug_modes4(struct debug_stream *stream, const char *name, GLuint len) argument
496 debug_map_state(struct debug_stream *stream, const char *name, GLuint len) argument
547 debug_sampler_state(struct debug_stream *stream, const char *name, GLuint len) argument
606 debug_dest_vars(struct debug_stream *stream, const char *name, GLuint len) argument
640 debug_buf_info(struct debug_stream *stream, const char *name, GLuint len) argument
669 i915_debug_packet(struct debug_stream *stream) argument
819 struct debug_stream stream; local
[all...]
/external/mesa3d/src/mesa/drivers/dri/i915/
H A Di915_debug.c35 debug(struct debug_stream *stream, const char *name, GLuint len) argument
38 GLuint *ptr = (GLuint *)(stream->ptr + stream->offset);
41 printf("Error - zero length packet (0x%08x)\n", stream->ptr[0]);
46 if (stream->print_addresses)
47 printf("%08x: ", stream->offset);
55 stream->offset += len * sizeof(GLuint);
81 debug_prim(struct debug_stream *stream, const char *name, argument
84 GLuint *ptr = (GLuint *)(stream->ptr + stream
111 debug_program(struct debug_stream *stream, const char *name, GLuint len) argument
133 debug_chain(struct debug_stream *stream, const char *name, GLuint len) argument
158 debug_variable_length_prim(struct debug_stream *stream) argument
206 debug_load_immediate(struct debug_stream *stream, const char *name, GLuint len) argument
312 debug_load_indirect(struct debug_stream *stream, const char *name, GLuint len) argument
368 BR13( struct debug_stream *stream, GLuint val ) argument
379 BR2223( struct debug_stream *stream, GLuint val22, GLuint val23 ) argument
400 BR09( struct debug_stream *stream, GLuint val ) argument
406 BR26( struct debug_stream *stream, GLuint val ) argument
414 BR11( struct debug_stream *stream, GLuint val ) argument
421 BR12( struct debug_stream *stream, GLuint val ) argument
427 BR16( struct debug_stream *stream, GLuint val ) argument
434 debug_copy_blit(struct debug_stream *stream, const char *name, GLuint len) argument
456 debug_color_blit(struct debug_stream *stream, const char *name, GLuint len) argument
476 debug_modes4(struct debug_stream *stream, const char *name, GLuint len) argument
496 debug_map_state(struct debug_stream *stream, const char *name, GLuint len) argument
547 debug_sampler_state(struct debug_stream *stream, const char *name, GLuint len) argument
606 debug_dest_vars(struct debug_stream *stream, const char *name, GLuint len) argument
640 debug_buf_info(struct debug_stream *stream, const char *name, GLuint len) argument
669 i915_debug_packet(struct debug_stream *stream) argument
819 struct debug_stream stream; local
[all...]
/external/chromium_org/third_party/webrtc/test/w3c/
H A Dgetusermedia_conformance_test.js33 function verifyMediaStream(stream) {
36 assert_own_property(stream, 'id');
37 assert_true(typeof stream.id === 'string');
38 assert_readonly(stream, 'id');
42 assert_inherits(stream, 'getAudioTracks');
43 assert_true(typeof stream.getAudioTracks === 'function');
47 assert_inherits(stream, 'getVideoTracks');
48 assert_true(typeof stream.getVideoTracks === 'function');
52 assert_inherits(stream, 'getTrackById');
53 assert_true(typeof stream
[all...]
/external/chromium_org/net/spdy/
H A Dspdy_write_queue.cc23 const base::WeakPtr<SpdyStream>& stream)
26 stream(stream),
27 has_stream(stream.get() != NULL) {}
48 const base::WeakPtr<SpdyStream>& stream) {
52 if (stream.get())
53 DCHECK_EQ(stream->priority(), priority);
55 PendingWrite(frame_type, frame_producer.release(), stream));
60 base::WeakPtr<SpdyStream>* stream) {
68 *stream
20 PendingWrite( SpdyFrameType frame_type, SpdyBufferProducer* frame_producer, const base::WeakPtr<SpdyStream>& stream) argument
45 Enqueue(RequestPriority priority, SpdyFrameType frame_type, scoped_ptr<SpdyBufferProducer> frame_producer, const base::WeakPtr<SpdyStream>& stream) argument
58 Dequeue(SpdyFrameType* frame_type, scoped_ptr<SpdyBufferProducer>* frame_producer, base::WeakPtr<SpdyStream>* stream) argument
77 RemovePendingWritesForStream( const base::WeakPtr<SpdyStream>& stream) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/
H A Doverlay.js29 token: function(stream, state) {
30 if (stream.start == state.basePos) {
31 state.baseCur = base.token(stream, state.base);
32 state.basePos = stream.pos;
34 if (stream.start == state.overlayPos) {
35 stream.pos = stream.start;
36 state.overlayCur = overlay.token(stream, state.overlay);
37 state.overlayPos = stream.pos;
39 stream
[all...]
/external/deqp/framework/delibs/destream/
H A DdeThreadStream.c83 static deStreamResult threadInStream_read (deStreamData* stream, void* buf, deInt32 bufSize, deInt32* numRead) argument
85 deThreadInStream* threadStream = (deThreadInStream*)stream;
89 static const char* threadInStream_getError (deStreamData* stream) argument
91 deThreadInStream* threadStream = (deThreadInStream*)stream;
93 /* \todo [mika] Add handling for errors on thread stream */
97 static deStreamStatus threadInStream_getStatus (deStreamData* stream) argument
99 deThreadInStream* threadStream = (deThreadInStream*)stream;
101 /* \todo [mika] Add handling for status on thread stream */
105 /* \note [mika] Used by both in and out stream */
106 static deStreamResult threadStream_deinit (deStreamData* stream) argument
132 deThreadInStream_init(deInStream* stream, deInStream* input, int ringbufferBlockSize, int ringbufferBlockCount) argument
152 threadOutStream_write(deStreamData* stream, const void* buf, deInt32 bufSize, deInt32* numWritten) argument
158 threadOutStream_getError(deStreamData* stream) argument
166 threadOutStream_getStatus(deStreamData* stream) argument
174 threadOutStream_flush(deStreamData* stream) argument
190 deThreadOutStream_init(deOutStream* stream, deOutStream* output, int ringbufferBlockSize, int ringbufferBlockCount) argument
[all...]
/external/ltrace/
H A Dlens_default.c74 return fprintf(stream, "%#"PRIx64, v); \
77 return fprintf(stream, "%"PRIi##BITS, i); \
79 return fprintf(stream, "%"PRIu64, v); \
81 return fprintf(stream, "0%"PRIo64, v); \
96 format_integer(FILE *stream, struct value *value, enum int_fmt_t format, argument
118 acc_fprintf(int *countp, FILE *stream, const char *format, ...) argument
122 int i = account_output(countp, vfprintf(stream, format, pa));
129 print_char(FILE *stream, int c) argument
170 return fprintf(stream, fmt, c);
174 format_char(FILE *stream, struc argument
183 format_naked(FILE *stream, struct value *value, struct value_dict *arguments, int (*what)(FILE *, struct value *, struct value_dict *)) argument
198 format_double(FILE *stream, double value, enum int_fmt_t format) argument
207 format_floating(FILE *stream, struct value *value, struct value_dict *arguments, enum int_fmt_t format) argument
233 format_argument_cb(FILE *stream, void *ptr) argument
240 format_struct(FILE *stream, struct value *value, struct value_dict *arguments) argument
269 format_pointer(FILE *stream, struct value *value, struct value_dict *arguments) argument
351 format_array(FILE *stream, struct value *value, struct value_dict *arguments, struct expr_node *length, size_t maxlen, int before, const char *open, const char *close, const char *delim) argument
396 toplevel_format_lens(struct lens *lens, FILE *stream, struct value *value, struct value_dict *arguments, enum int_fmt_t int_fmt) argument
445 default_lens_format_cb(struct lens *lens, FILE *stream, struct value *value, struct value_dict *arguments) argument
458 blind_lens_format_cb(struct lens *lens, FILE *stream, struct value *value, struct value_dict *arguments) argument
470 octal_lens_format_cb(struct lens *lens, FILE *stream, struct value *value, struct value_dict *arguments) argument
482 hex_lens_format_cb(struct lens *lens, FILE *stream, struct value *value, struct value_dict *arguments) argument
494 dec_lens_format_cb(struct lens *lens, FILE *stream, struct value *value, struct value_dict *arguments) argument
506 guess_lens_format_cb(struct lens *lens, FILE *stream, struct value *value, struct value_dict *arguments) argument
519 bool_lens_format_cb(struct lens *lens, FILE *stream, struct value *value, struct value_dict *arguments) argument
555 redispatch_as_array(struct lens *lens, FILE *stream, struct value *value, struct value_dict *arguments, int (*cb)(struct lens *, FILE *, struct value *, struct value_dict *)) argument
578 format_wchar(FILE *stream, struct value *value, struct value_dict *arguments) argument
601 string_lens_format_cb(struct lens *lens, FILE *stream, struct value *value, struct value_dict *arguments) argument
661 out_bits(FILE *stream, size_t low, size_t high) argument
670 bitvect_lens_format_cb(struct lens *lens, FILE *stream, struct value *value, struct value_dict *arguments) argument
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DSerialization.java49 static int readCount(ObjectInputStream stream) throws IOException { argument
50 return stream.readInt();
54 * Stores the contents of a map in an output stream, as part of serialization.
61 static <K, V> void writeMap(Map<K, V> map, ObjectOutputStream stream) argument
63 stream.writeInt(map.size());
65 stream.writeObject(entry.getKey());
66 stream.writeObject(entry.getValue());
71 * Populates a map by reading an input stream, as part of deserialization.
74 static <K, V> void populateMap(Map<K, V> map, ObjectInputStream stream) argument
76 int size = stream
85 populateMap(Map<K, V> map, ObjectInputStream stream, int size) argument
104 writeMultiset( Multiset<E> multiset, ObjectOutputStream stream) argument
118 populateMultiset( Multiset<E> multiset, ObjectInputStream stream) argument
130 populateMultiset( Multiset<E> multiset, ObjectInputStream stream, int distinctElements) argument
151 writeMultimap( Multimap<K, V> multimap, ObjectOutputStream stream) argument
167 populateMultimap( Multimap<K, V> multimap, ObjectInputStream stream) argument
179 populateMultimap( Multimap<K, V> multimap, ObjectInputStream stream, int distinctKeys) argument
[all...]
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/test/
H A Dfakemediastreamsignaling.h89 virtual void OnAddRemoteStream(webrtc::MediaStreamInterface* stream) { argument
91 virtual void OnRemoveRemoteStream(webrtc::MediaStreamInterface* stream) { argument
95 virtual void OnAddLocalAudioTrack(webrtc::MediaStreamInterface* stream, argument
99 virtual void OnAddLocalVideoTrack(webrtc::MediaStreamInterface* stream, argument
103 virtual void OnAddRemoteAudioTrack(webrtc::MediaStreamInterface* stream, argument
108 virtual void OnAddRemoteVideoTrack(webrtc::MediaStreamInterface* stream, argument
114 webrtc::MediaStreamInterface* stream,
119 webrtc::MediaStreamInterface* stream,
124 webrtc::MediaStreamInterface* stream,
129 webrtc::MediaStreamInterface* stream,
113 OnRemoveRemoteAudioTrack( webrtc::MediaStreamInterface* stream, webrtc::AudioTrackInterface* audio_track) argument
118 OnRemoveRemoteVideoTrack( webrtc::MediaStreamInterface* stream, webrtc::VideoTrackInterface* video_track) argument
123 OnRemoveLocalAudioTrack( webrtc::MediaStreamInterface* stream, webrtc::AudioTrackInterface* audio_track, uint32 ssrc) argument
128 OnRemoveLocalVideoTrack( webrtc::MediaStreamInterface* stream, webrtc::VideoTrackInterface* video_track) argument
132 OnRemoveLocalStream(webrtc::MediaStreamInterface* stream) argument
[all...]
/external/chromium_org/content/browser/streams/
H A Dstream_registry.cc7 #include "content/browser/streams/stream.h"
25 void StreamRegistry::RegisterStream(scoped_refptr<Stream> stream) { argument
27 DCHECK(stream.get());
28 DCHECK(!stream->url().is_empty());
29 streams_[stream->url()] = stream;
34 StreamMap::const_iterator stream = streams_.find(url); local
35 if (stream != streams_.end())
36 return stream->second;
43 scoped_refptr<Stream> stream(GetStrea
[all...]
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DInfoSink.h45 TPersistStringStream stream; local
46 stream << t;
47 sink.append(stream.str());
74 TPersistStringStream stream; local
76 stream.precision(1);
77 stream << std::showpoint << std::fixed << f;
79 stream.unsetf(std::ios::fixed);
80 stream.unsetf(std::ios::scientific);
81 stream.precision(8);
82 stream <<
[all...]
/external/blktrace/btreplay/
H A Dbtrecord.c222 * @stream: Output file information
225 static void write_file_hdr(struct io_stream *stream, struct io_file_hdr *hdr) argument
231 stream->file_name,
238 fseek(stream->ofp, 0, SEEK_SET);
239 if (fwrite(hdr, sizeof(*hdr), 1, stream->ofp) != 1) {
240 fatal(stream->file_name, ERR_SYSCALL, "Hdr write failed\n");
247 * @io_stream: IO stream being added to
251 static inline void io_bunch_create(struct io_stream *stream, __u64 start_time) argument
258 cur->hdr.time_stamp = stream->start_time = start_time;
260 stream
270 io_bunch_add(struct io_stream *stream, struct io_spec *spec) argument
571 bunch_output_hdr(struct io_stream *stream) argument
597 bunch_output_pkts(struct io_stream *stream) argument
624 stream_flush(struct io_stream *stream) argument
646 bunch_done(struct io_stream *stream, struct io_spec *spec) argument
662 stream_add_io(struct io_stream *stream, struct io_spec *spec) argument
682 struct io_stream *stream = malloc(sizeof(*stream)); local
728 stream_close(struct io_stream *stream) argument
765 struct io_stream *stream; local
[all...]
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRMismatchedRangeException.h37 + (id) exceptionWithRange:(NSRange) aRange stream:(id<ANTLRIntStream>) theInput;
38 - (id) initWithRange:(NSRange) aRange stream:(id<ANTLRIntStream>) theInput;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRMismatchedRangeException.h37 + (id) exceptionWithRange:(NSRange) aRange stream:(id<ANTLRIntStream>) theInput;
38 - (id) initWithRange:(NSRange) aRange stream:(id<ANTLRIntStream>) theInput;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRMismatchedRangeException.h37 + (id) exceptionWithRange:(NSRange) aRange stream:(id<ANTLRIntStream>) theInput;
38 - (id) initWithRange:(NSRange) aRange stream:(id<ANTLRIntStream>) theInput;

Completed in 1159 milliseconds

1234567891011>>