Searched refs:stream (Results 1 - 25 of 2073) sorted by relevance

1234567891011>>

/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3intstream.c2 /// Implementation of superclass elements of an ANTLR3 int stream.
38 static void freeStream (pANTLR3_INT_STREAM stream);
43 pANTLR3_INT_STREAM stream; local
47 stream = (pANTLR3_INT_STREAM) ANTLR3_CALLOC(1, sizeof(ANTLR3_INT_STREAM));
49 if (stream == NULL)
54 stream->free = freeStream;
56 return stream;
60 freeStream (pANTLR3_INT_STREAM stream) argument
62 ANTLR3_FREE(stream);
H A Dantlr3rewritestreams.c38 // Static support function forward declarations for the stream types.
40 static void reset (pANTLR3_REWRITE_RULE_ELEMENT_STREAM stream);
41 static void add (pANTLR3_REWRITE_RULE_ELEMENT_STREAM stream, void * el, void (ANTLR3_CDECL *freePtr)(void *));
42 static void * next (pANTLR3_REWRITE_RULE_ELEMENT_STREAM stream);
43 static pANTLR3_BASE_TREE nextTree (pANTLR3_REWRITE_RULE_ELEMENT_STREAM stream);
44 static void * nextToken (pANTLR3_REWRITE_RULE_ELEMENT_STREAM stream);
45 static void * _next (pANTLR3_REWRITE_RULE_ELEMENT_STREAM stream);
46 static void * dupTok (pANTLR3_REWRITE_RULE_ELEMENT_STREAM stream, void * el);
47 static void * dupTree (pANTLR3_REWRITE_RULE_ELEMENT_STREAM stream, void * el);
48 static void * dupTreeNode (pANTLR3_REWRITE_RULE_ELEMENT_STREAM stream, voi
65 freeRS(pANTLR3_REWRITE_RULE_ELEMENT_STREAM stream) argument
108 freeNodeRS(pANTLR3_REWRITE_RULE_ELEMENT_STREAM stream) argument
174 expungeRS(pANTLR3_REWRITE_RULE_ELEMENT_STREAM stream) argument
189 pANTLR3_REWRITE_RULE_ELEMENT_STREAM stream; local
259 pANTLR3_REWRITE_RULE_ELEMENT_STREAM stream; local
282 pANTLR3_REWRITE_RULE_ELEMENT_STREAM stream; local
311 pANTLR3_REWRITE_RULE_TOKEN_STREAM stream; local
335 pANTLR3_REWRITE_RULE_TOKEN_STREAM stream; local
354 pANTLR3_REWRITE_RULE_TOKEN_STREAM stream; local
375 pANTLR3_REWRITE_RULE_SUBTREE_STREAM stream; local
397 pANTLR3_REWRITE_RULE_SUBTREE_STREAM stream; local
420 pANTLR3_REWRITE_RULE_SUBTREE_STREAM stream; local
444 pANTLR3_REWRITE_RULE_NODE_STREAM stream; local
468 pANTLR3_REWRITE_RULE_NODE_STREAM stream; local
487 pANTLR3_REWRITE_RULE_NODE_STREAM stream; local
510 reset(pANTLR3_REWRITE_RULE_ELEMENT_STREAM stream) argument
519 add(pANTLR3_REWRITE_RULE_ELEMENT_STREAM stream, void * el, void (ANTLR3_CDECL *freePtr)(void *)) argument
568 nextTree(pANTLR3_REWRITE_RULE_ELEMENT_STREAM stream) argument
592 nextToken(pANTLR3_REWRITE_RULE_ELEMENT_STREAM stream) argument
601 next(pANTLR3_REWRITE_RULE_ELEMENT_STREAM stream) argument
625 _next(pANTLR3_REWRITE_RULE_ELEMENT_STREAM stream) argument
682 dupTok(pANTLR3_REWRITE_RULE_ELEMENT_STREAM stream, void * el) argument
696 dupTree(pANTLR3_REWRITE_RULE_ELEMENT_STREAM stream, void * element) argument
710 dupTreeNode(pANTLR3_REWRITE_RULE_ELEMENT_STREAM stream, void * element) argument
721 toTree(pANTLR3_REWRITE_RULE_ELEMENT_STREAM stream, void * element) argument
738 toTreeNode(pANTLR3_REWRITE_RULE_ELEMENT_STREAM stream, void * element) argument
750 hasNext(pANTLR3_REWRITE_RULE_ELEMENT_STREAM stream) argument
767 nextNodeToken(pANTLR3_REWRITE_RULE_ELEMENT_STREAM stream) argument
773 nextNodeNode(pANTLR3_REWRITE_RULE_ELEMENT_STREAM stream) argument
788 nextNode(pANTLR3_REWRITE_RULE_ELEMENT_STREAM stream) argument
811 size(pANTLR3_REWRITE_RULE_ELEMENT_STREAM stream) argument
836 getDescription(pANTLR3_REWRITE_RULE_ELEMENT_STREAM stream) argument
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/token-rewrite/
H A Dbasic.rb27 rewrite( 'abc', '0abc' ) do |stream|
28 stream.insert_before( 0, '0' )
33 rewrite( 'abc', 'abcx' ) do |stream|
34 stream.insert_after( 2, 'x' )
39 rewrite( 'abc', 'axbxc' ) do |stream|
40 stream.insert_before 1, 'x'
41 stream.insert_after 1, 'x'
46 rewrite( 'abc', 'xbc' ) do |stream|
47 stream.replace( 0, 'x' )
52 rewrite( 'abc', 'abx' ) do |stream|
[all...]
/external/curl/src/
H A Dtool_binmode.c38 void set_binmode(FILE *stream) argument
42 _setmode(stream, O_BINARY);
44 (void)setmode(fileno(stream), O_BINARY);
47 (void)stream;
/external/sonic/
H A Dsonic.h22 the input stream is pointed to by "samples", and the current output stream
72 /* Create a sonic stream. Return NULL only if we are out of memory and cannot
73 allocate the stream. Set numChannels to 1 for mono, and 2 for stereo. */
75 /* Destroy the sonic stream. */
76 void sonicDestroyStream(sonicStream stream);
77 /* Use this to write floating point data to be speed up or down into the stream.
79 int sonicWriteFloatToStream(sonicStream stream, float *samples, int numSamples);
80 /* Use this to write 16-bit data to be speed up or down into the stream.
82 int sonicWriteShortToStream(sonicStream stream, shor
[all...]
H A Dsonic.c87 /* Get the speed of the stream. */
89 sonicStream stream)
91 return stream->speed;
94 /* Set the speed of the stream. */
96 sonicStream stream,
99 stream->speed = speed;
102 /* Get the pitch of the stream. */
104 sonicStream stream)
106 return stream->pitch;
109 /* Set the pitch of the stream
88 sonicGetSpeed( sonicStream stream) argument
95 sonicSetSpeed( sonicStream stream, float speed) argument
103 sonicGetPitch( sonicStream stream) argument
110 sonicSetPitch( sonicStream stream, float pitch) argument
118 sonicGetRate( sonicStream stream) argument
125 sonicSetRate( sonicStream stream, float rate) argument
136 sonicGetChordPitch( sonicStream stream) argument
143 sonicSetChordPitch( sonicStream stream, int useChordPitch) argument
151 sonicGetQuality( sonicStream stream) argument
158 sonicSetQuality( sonicStream stream, int quality) argument
166 sonicGetVolume( sonicStream stream) argument
173 sonicSetVolume( sonicStream stream, float volume) argument
181 freeStreamBuffers( sonicStream stream) argument
199 sonicDestroyStream( sonicStream stream) argument
207 allocateStreamBuffers( sonicStream stream, int sampleRate, int numChannels) argument
256 sonicStream stream = (sonicStream)calloc(1, sizeof(struct sonicStreamStruct)); local
276 sonicGetSampleRate( sonicStream stream) argument
284 sonicSetSampleRate( sonicStream stream, int sampleRate) argument
293 sonicGetNumChannels( sonicStream stream) argument
301 sonicSetNumChannels( sonicStream stream, int numChannels) argument
310 enlargeOutputBufferIfNeeded( sonicStream stream, int numSamples) argument
326 enlargeInputBufferIfNeeded( sonicStream stream, int numSamples) argument
342 addFloatSamplesToInputBuffer( sonicStream stream, float *samples, int numSamples) argument
365 addShortSamplesToInputBuffer( sonicStream stream, short *samples, int numSamples) argument
383 addUnsignedCharSamplesToInputBuffer( sonicStream stream, unsigned char *samples, int numSamples) argument
406 removeInputSamples( sonicStream stream, int position) argument
420 copyToOutput( sonicStream stream, short *samples, int numSamples) argument
436 copyInputToOutput( sonicStream stream, int position) argument
455 sonicReadFloatFromStream( sonicStream stream, float *samples, int maxSamples) argument
487 sonicReadShortFromStream( sonicStream stream, short *samples, int maxSamples) argument
513 sonicReadUnsignedCharFromStream( sonicStream stream, unsigned char *samples, int maxSamples) argument
546 sonicFlushStream( sonicStream stream) argument
578 sonicSamplesAvailable( sonicStream stream) argument
587 downSampleInput( sonicStream stream, short *samples, int skip) argument
651 prevPeriodBetter( sonicStream stream, int period, int minDiff, int maxDiff, int preferNewPeriod) argument
682 findPitchPeriod( sonicStream stream, short *samples, int preferNewPeriod) argument
798 moveNewSamplesToPitchBuffer( sonicStream stream, int originalNumOutputSamples) argument
822 removePitchSamples( sonicStream stream, int numSamples) argument
841 adjustPitch( sonicStream stream, int originalNumOutputSamples) argument
882 interpolate( sonicStream stream, short *in, int oldSampleRate, int newSampleRate) argument
900 adjustRate( sonicStream stream, float rate, int originalNumOutputSamples) argument
956 skipPitchPeriod( sonicStream stream, short *samples, float speed, int period) argument
981 insertPitchPeriod( sonicStream stream, short *samples, float speed, int period) argument
1010 changeSpeed( sonicStream stream, float speed) argument
1047 processStreamInput( sonicStream stream) argument
1086 sonicWriteFloatToStream( sonicStream stream, float *samples, int numSamples) argument
1099 sonicWriteShortToStream( sonicStream stream, short *samples, int numSamples) argument
1112 sonicWriteUnsignedCharToStream( sonicStream stream, unsigned char *samples, int numSamples) argument
1135 sonicStream stream = sonicCreateStream(sampleRate, numChannels); local
1162 sonicStream stream = sonicCreateStream(sampleRate, numChannels); local
[all...]
/external/bison/lib/
H A Dclose-stream.h2 int close_stream (FILE *stream);
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
H A Dlexer.ml7 | [< ' (' ' | '\n' | '\r' | '\t'); stream >] -> lex stream
10 | [< ' ('A' .. 'Z' | 'a' .. 'z' as c); stream >] ->
13 lex_ident buffer stream
16 | [< ' ('0' .. '9' as c); stream >] ->
19 lex_number buffer stream
22 | [< ' ('#'); stream >] ->
23 lex_comment stream
26 | [< 'c; stream >] ->
27 [< 'Token.Kwd c; lex stream >]
[all...]
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
H A Dlexer.ml7 | [< ' (' ' | '\n' | '\r' | '\t'); stream >] -> lex stream
10 | [< ' ('A' .. 'Z' | 'a' .. 'z' as c); stream >] ->
13 lex_ident buffer stream
16 | [< ' ('0' .. '9' as c); stream >] ->
19 lex_number buffer stream
22 | [< ' ('#'); stream >] ->
23 lex_comment stream
26 | [< 'c; stream >] ->
27 [< 'Token.Kwd c; lex stream >]
[all...]
/external/opencv3/3rdparty/zlib/
H A Duncompr.c30 z_stream stream; local
33 stream.next_in = (z_const Bytef *)source;
34 stream.avail_in = (uInt)sourceLen;
36 if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR;
38 stream.next_out = dest;
39 stream.avail_out = (uInt)*destLen;
40 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
42 stream.zalloc = (alloc_func)0;
43 stream.zfree = (free_func)0;
45 err = inflateInit(&stream);
[all...]
/external/pdfium/third_party/zlib_v128/
H A Duncompr.c30 z_stream stream; local
33 stream.next_in = (z_const Bytef *)source;
34 stream.avail_in = (uInt)sourceLen;
36 if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR;
38 stream.next_out = dest;
39 stream.avail_out = (uInt)*destLen;
40 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
42 stream.zalloc = (alloc_func)0;
43 stream.zfree = (free_func)0;
45 err = inflateInit(&stream);
[all...]
/external/zlib/src/
H A Duncompr.c30 z_stream stream; local
33 stream.next_in = (z_const Bytef *)source;
34 stream.avail_in = (uInt)sourceLen;
36 if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR;
38 stream.next_out = dest;
39 stream.avail_out = (uInt)*destLen;
40 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR;
42 stream.zalloc = (alloc_func)0;
43 stream.zfree = (free_func)0;
45 err = inflateInit(&stream);
[all...]
/external/antlr/antlr-3.4/runtime/Python/unittests/
H A Dteststreams.py15 stream = antlr3.StringStream('foo')
17 self.failUnlessEqual(stream.size(), 3)
23 stream = antlr3.StringStream('foo')
25 self.failUnlessEqual(stream.index(), 0)
31 stream = antlr3.StringStream('foo\nbar')
33 stream.consume() # f
34 self.failUnlessEqual(stream.index(), 1)
35 self.failUnlessEqual(stream.charPositionInLine, 1)
36 self.failUnlessEqual(stream.line, 1)
38 stream
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
H A DScenarioStatusTable.java28 private PrintStream stream; field in class:ScenarioStatusTable
35 public ScenarioStatusTable(String name, PrintStream stream) { argument
37 this.stream = stream;
41 * Prints the HTML representation of scenario status table into the given stream.
51 this.stream.print("<table border=\"1\">\n");
52 this.stream.print("<tr>\n");
53 this.stream.print("<td><h4>All ");
54 this.stream.print(computeSize(scenarios));
55 this.stream
[all...]
/external/mesa3d/src/gallium/drivers/i915/
H A Di915_debug.c71 struct debug_stream *stream,
83 static boolean debug( struct debug_stream *stream, const char *name, unsigned len ) argument
86 unsigned *ptr = (unsigned *)(stream->ptr + stream->offset);
89 PRINTF(stream, "Error - zero length packet (0x%08x)\n", stream->ptr[0]);
94 if (stream->print_addresses)
95 PRINTF(stream, "%08x: ", stream->offset);
98 PRINTF(stream, "
70 PRINTF( struct debug_stream *stream, const char *fmt, ... ) argument
128 debug_prim( struct debug_stream *stream, const char *name, boolean dump_floats, unsigned len ) argument
158 debug_program( struct debug_stream *stream, const char *name, unsigned len ) argument
179 debug_chain( struct debug_stream *stream, const char *name, unsigned len ) argument
226 BITS( struct debug_stream *stream, unsigned dw, unsigned hi, unsigned lo, const char *fmt, ... ) argument
260 FLAG( struct debug_stream *stream, unsigned dw, unsigned bit, const char *fmt, ... ) argument
280 debug_load_immediate( struct debug_stream *stream, const char *name, unsigned len ) argument
387 debug_load_indirect( struct debug_stream *stream, const char *name, unsigned len ) argument
445 BR13( struct debug_stream *stream, unsigned val ) argument
456 BR22( struct debug_stream *stream, unsigned val ) argument
464 BR23( struct debug_stream *stream, unsigned val ) argument
472 BR09( struct debug_stream *stream, unsigned val ) argument
478 BR26( struct debug_stream *stream, unsigned val ) argument
486 BR11( struct debug_stream *stream, unsigned val ) argument
493 BR12( struct debug_stream *stream, unsigned val ) argument
499 BR16( struct debug_stream *stream, unsigned val ) argument
505 debug_copy_blit( struct debug_stream *stream, const char *name, unsigned len ) argument
528 debug_color_blit( struct debug_stream *stream, const char *name, unsigned len ) argument
549 debug_modes4( struct debug_stream *stream, const char *name, unsigned len ) argument
570 debug_map_state( struct debug_stream *stream, const char *name, unsigned len ) argument
622 debug_sampler_state( struct debug_stream *stream, const char *name, unsigned len ) argument
682 debug_dest_vars( struct debug_stream *stream, const char *name, unsigned len ) argument
717 debug_buf_info( struct debug_stream *stream, const char *name, unsigned len ) argument
902 struct debug_stream stream; local
[all...]
/external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
H A Dlexer.ml7 | [< ' (' ' | '\n' | '\r' | '\t'); stream >] -> lex stream
10 | [< ' ('A' .. 'Z' | 'a' .. 'z' as c); stream >] ->
13 lex_ident buffer stream
16 | [< ' ('0' .. '9' as c); stream >] ->
19 lex_number buffer stream
22 | [< ' ('#'); stream >] ->
23 lex_comment stream
26 | [< 'c; stream >] ->
27 [< 'Token.Kwd c; lex stream >]
[all...]
/external/freetype/src/base/
H A Dftstream.c5 /* I/O stream support (body). */
35 FT_Stream_OpenMemory( FT_Stream stream, argument
39 stream->base = (FT_Byte*) base;
40 stream->size = size;
41 stream->pos = 0;
42 stream->cursor = NULL;
43 stream->read = NULL;
44 stream->close = NULL;
49 FT_Stream_Close( FT_Stream stream )
51 if ( stream
215 FT_Stream_ReleaseFrame( FT_Stream stream, FT_Byte** pbytes ) argument
[all...]
/external/pdfium/third_party/freetype/src/base/
H A Dftstream.c5 /* I/O stream support (body). */
35 FT_Stream_OpenMemory( FT_Stream stream, argument
39 stream->base = (FT_Byte*) base;
40 stream->size = size;
41 stream->pos = 0;
42 stream->cursor = NULL;
43 stream->read = NULL;
44 stream->close = NULL;
49 FT_Stream_Close( FT_Stream stream )
51 if ( stream
215 FT_Stream_ReleaseFrame( FT_Stream stream, FT_Byte** pbytes ) argument
[all...]
/external/antlr/antlr-3.4/runtime/ActionScript/project/test/org/antlr/runtime/test/
H A DTestANTLRStringStream.as15 var stream:CharStream = new ANTLRStringStream("abc");
16 assertEquals(stream.size, 3);
17 assertEquals(stream.charPositionInLine, 0);
18 assertEquals(stream.line, 1);
19 assertEquals(stream.index, 0);
21 for (var i:int = 0; i < stream.size; i++) {
22 stream.consume();
24 assertEquals(stream.size, 3); // invariant
25 assertEquals(stream.charPositionInLine, i + 1);
26 assertEquals(stream
[all...]
/external/deqp/framework/delibs/destream/
H A DdeIOStream.h23 * \brief Input-output stream abstraction.
30 /* Result of operation on stream */
48 /* Type for pointer to internal stream psecifig data */
52 typedef deStreamResult (*deIOStreamReadFunc) (deStreamData* stream, void* buf, deInt32 bufSize, deInt32* numRead);
53 typedef deStreamResult (*deIOStreamWriteFunc) (deStreamData* stream, const void* buf, deInt32 bufSize, deInt32* numWritten);
54 typedef const char* (*deIOStreamGetErrorFunc) (deStreamData* stream);
55 typedef deStreamResult (*deIOStreamFlushFunc) (deStreamData* stream);
56 typedef deStreamResult (*deIOStreamDeinitFunc) (deStreamData* stream);
57 typedef deStreamStatus (*deIOStreamStatusFunc) (deStreamData* stream);
59 /* Virtual table type for specifying stream specifi
86 deIOStream_write(deIOStream* stream, const void* buf, deInt32 bufSize, deInt32* numWritten) argument
95 deIOStream_read(deIOStream* stream, void* buf, deInt32 bufSize, deInt32* numRead) argument
104 deIOStream_getError(deIOStream* stream) argument
113 deIOStream_flush(deIOStream* stream) argument
122 deIOStream_deinit(deIOStream* stream) argument
137 deIOStream_getStatus(deIOStream* stream) argument
[all...]
H A DdeInStream.h23 * \brief Input stream abstraction.
32 /* Input stream struct, implemented as a wrapper to io stream */
38 DE_INLINE deStreamResult deInStream_read (deInStream* stream, void* buf, deInt32 bufSize, deInt32* numWritten);
39 DE_INLINE deStreamResult deInStream_deinit (deInStream* stream);
40 DE_INLINE const char* deInStream_getError (deInStream* stream);
41 DE_INLINE deStreamStatus deInStream_getStatus(deInStream* stream);
44 DE_INLINE deStreamResult deInStream_read (deInStream* stream, void* buf, deInt32 bufSize, deInt32* numWritten) argument
46 return deIOStream_read(&(stream->ioStream), buf, bufSize, numWritten);
49 DE_INLINE deStreamResult deInStream_deinit (deInStream* stream) argument
54 deInStream_getError(deInStream* stream) argument
59 deInStream_getStatus(deInStream* stream) argument
[all...]
/external/skia/tools/
H A Dskdiff_html.cpp28 static void print_table_header(SkFILEWStream* stream, argument
35 stream->writeText("<table>\n");
36 stream->writeText("<tr><th>");
37 stream->writeText("select image</th>\n<th>");
41 stream->writeText("SkDiff run at ");
42 stream->writeDecAsText(dt.fHour);
43 stream->writeText(":");
45 stream->writeText("0");
47 stream->writeDecAsText(dt.fMinute);
48 stream
79 print_pixel_count(SkFILEWStream* stream, const DiffRecord& diff) argument
93 print_checkbox_cell(SkFILEWStream* stream, const DiffRecord& diff) argument
99 print_label_cell(SkFILEWStream* stream, const DiffRecord& diff) argument
163 print_image_cell(SkFILEWStream* stream, const SkString& path, int height) argument
173 print_link_cell(SkFILEWStream* stream, const SkString& path, const char* text) argument
181 print_diff_resource_cell(SkFILEWStream* stream, DiffResource& resource, const SkString& relativePath, bool local) argument
212 print_diff_row(SkFILEWStream* stream, DiffRecord& diff, const SkString& relativePath) argument
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/test/unit/
H A Dtest-streams.rb13 @stream = StringStream.new( "oh\nhey!\n" )
17 @stream.size.should == 8
21 @stream.index.should == 0
25 @stream.consume # o
26 @stream.index.should == 1
27 @stream.column.should == 1
28 @stream.line.should == 1
30 @stream.consume # h
31 @stream.index.should == 2
32 @stream
[all...]
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_dump_state.c43 util_stream_writef(FILE *stream, const char *format, ...) argument
51 fwrite(buf, len, 1, stream);
55 util_dump_bool(FILE *stream, int value) argument
57 util_stream_writef(stream, "%c", value ? '1' : '0');
61 util_dump_int(FILE *stream, long long int value) argument
63 util_stream_writef(stream, "%lli", value);
67 util_dump_uint(FILE *stream, long long unsigned value) argument
69 util_stream_writef(stream, "%llu", value);
73 util_dump_float(FILE *stream, double value) argument
75 util_stream_writef(stream, "
79 util_dump_string(FILE *stream, const char *str) argument
87 util_dump_enum(FILE *stream, const char *value) argument
93 util_dump_array_begin(FILE *stream) argument
99 util_dump_array_end(FILE *stream) argument
105 util_dump_elem_begin(FILE *stream) argument
110 util_dump_elem_end(FILE *stream) argument
116 util_dump_struct_begin(FILE *stream, const char *name) argument
122 util_dump_struct_end(FILE *stream) argument
128 util_dump_member_begin(FILE *stream, const char *name) argument
134 util_dump_member_end(FILE *stream) argument
140 util_dump_null(FILE *stream) argument
146 util_dump_ptr(FILE *stream, const void *value) argument
226 util_dump_format(FILE *stream, enum pipe_format format) argument
233 util_dump_enum_blend_factor(FILE *stream, unsigned value) argument
239 util_dump_enum_blend_func(FILE *stream, unsigned value) argument
245 util_dump_enum_func(FILE *stream, unsigned value) argument
257 util_dump_template(FILE *stream, const struct pipe_resource *templat) argument
295 util_dump_rasterizer_state(FILE *stream, const struct pipe_rasterizer_state *state) argument
346 util_dump_poly_stipple(FILE *stream, const struct pipe_poly_stipple *state) argument
364 util_dump_viewport_state(FILE *stream, const struct pipe_viewport_state *state) argument
381 util_dump_scissor_state(FILE *stream, const struct pipe_scissor_state *state) argument
400 util_dump_clip_state(FILE *stream, const struct pipe_clip_state *state) argument
426 util_dump_shader_state(FILE *stream, const struct pipe_shader_state *state) argument
469 util_dump_depth_stencil_alpha_state(FILE *stream, const struct pipe_depth_stencil_alpha_state *state) argument
524 util_dump_rt_blend_state(FILE *stream, const struct pipe_rt_blend_state *state) argument
545 util_dump_blend_state(FILE *stream, const struct pipe_blend_state *state) argument
577 util_dump_blend_color(FILE *stream, const struct pipe_blend_color *state) argument
592 util_dump_stencil_ref(FILE *stream, const struct pipe_stencil_ref *state) argument
607 util_dump_framebuffer_state(FILE *stream, const struct pipe_framebuffer_state *state) argument
622 util_dump_sampler_state(FILE *stream, const struct pipe_sampler_state *state) argument
651 util_dump_surface(FILE *stream, const struct pipe_surface *state) argument
676 util_dump_transfer(FILE *stream, const struct pipe_transfer *state) argument
698 util_dump_vertex_buffer(FILE *stream, const struct pipe_vertex_buffer *state) argument
716 util_dump_vertex_element(FILE *stream, const struct pipe_vertex_element *state) argument
736 util_dump_draw_info(FILE *stream, const struct pipe_draw_info *state) argument
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DDEROctetStringParser.java12 private DefiniteLengthInputStream stream; field in class:DEROctetStringParser
15 DefiniteLengthInputStream stream)
17 this.stream = stream;
27 return stream;
39 return new DEROctetString(stream.toByteArray());
55 throw new ASN1ParsingException("IOException converting stream to byte array: " + e.getMessage(), e);
14 DEROctetStringParser( DefiniteLengthInputStream stream) argument

Completed in 1462 milliseconds

1234567891011>>