HomeSort by relevance Sort by last modified time
    Searched refs:stream (Results 51 - 75 of 3648) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/skia/third_party/harfbuzz/src/
harfbuzz-stream-private.h 30 #include "harfbuzz-stream.h"
35 _hb_close_stream( HB_Stream stream );
38 _hb_stream_pos( HB_Stream stream );
41 _hb_stream_seek( HB_Stream stream,
45 _hb_stream_frame_enter( HB_Stream stream,
49 _hb_stream_frame_exit( HB_Stream stream );
56 #define FILE_Pos() _hb_stream_pos( stream )
57 #define FILE_Seek(pos) SET_ERR( _hb_stream_seek( stream, pos ) )
58 #define ACCESS_Frame(size) SET_ERR( _hb_stream_frame_enter( stream, size ) )
59 #define FORGET_Frame() _hb_stream_frame_exit( stream )
    [all...]
  /external/freetype/src/base/
ftapi.c 47 FT_Stream stream )
51 FT_Stream_OpenMemory( stream, base, size );
56 FT_Seek_Stream( FT_Stream stream,
59 return FT_Stream_Seek( stream, pos );
64 FT_Skip_Stream( FT_Stream stream,
67 return FT_Stream_Skip( stream, distance );
72 FT_Read_Stream( FT_Stream stream,
76 return FT_Stream_Read( stream, buffer, count );
81 FT_Read_Stream_At( FT_Stream stream,
86 return FT_Stream_ReadAt( stream, pos, buffer, count )
    [all...]
  /external/nanopb-c/tests/missing_fields/
missing_fields.c 16 pb_ostream_t stream = pb_ostream_from_buffer(buffer, sizeof(buffer)); local
18 if (!pb_encode(&stream, MissingField_fields, &msg))
24 size = stream.bytes_written;
30 pb_istream_t stream = pb_istream_from_buffer(buffer, size); local
32 if (!pb_decode(&stream, MissingField_fields, &msg))
34 printf("Decode failed: %s\n", PB_GET_ERROR(&stream));
42 pb_istream_t stream = pb_istream_from_buffer(buffer, size); local
44 if (pb_decode(&stream, AllFields_fields, &msg))
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/base/
ftapi.c 47 FT_Stream stream )
51 FT_Stream_OpenMemory( stream, base, size );
56 FT_Seek_Stream( FT_Stream stream,
59 return FT_Stream_Seek( stream, pos );
64 FT_Skip_Stream( FT_Stream stream,
67 return FT_Stream_Skip( stream, distance );
72 FT_Read_Stream( FT_Stream stream,
76 return FT_Stream_Read( stream, buffer, count );
81 FT_Read_Stream_At( FT_Stream stream,
86 return FT_Stream_ReadAt( stream, pos, buffer, count )
    [all...]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
lexer.ml 7 | [< ' (' ' | '\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/Chapter3/
lexer.ml 7 | [< ' (' ' | '\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/Chapter4/
lexer.ml 7 | [< ' (' ' | '\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/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/
i915_debug_fp.c 37 struct debug_stream *stream,
133 print_reg_type_nr(struct debug_stream *stream, unsigned type, unsigned nr)
139 PRINTF(stream, "T_DIFFUSE");
142 PRINTF(stream, "T_SPECULAR");
145 PRINTF(stream, "T_FOG_W");
148 PRINTF(stream, "T_TEX%d", nr);
153 PRINTF(stream, "oC");
159 PRINTF(stream, "oD");
167 PRINTF(stream, "%s[%d]", regname[type], nr);
180 print_reg_neg_swizzle(struct debug_stream *stream, unsigned reg
    [all...]
  /external/mesa3d/src/gallium/drivers/i915/
i915_debug_fp.c 37 struct debug_stream *stream,
133 print_reg_type_nr(struct debug_stream *stream, unsigned type, unsigned nr)
139 PRINTF(stream, "T_DIFFUSE");
142 PRINTF(stream, "T_SPECULAR");
145 PRINTF(stream, "T_FOG_W");
148 PRINTF(stream, "T_TEX%d", nr);
153 PRINTF(stream, "oC");
159 PRINTF(stream, "oD");
167 PRINTF(stream, "%s[%d]", regname[type], nr);
180 print_reg_neg_swizzle(struct debug_stream *stream, unsigned reg
    [all...]
  /external/bison/lib/
close-stream.c 1 /* Close a stream, with nicer error checking than fclose's.
20 #include "close-stream.h"
31 /* Close STREAM. Return 0 if successful, EOF (setting errno)
39 If a program writes *anything* to STREAM, that program should close
40 STREAM and make sure that it succeeds before exiting. Otherwise,
42 of every function that does an explicit write to STREAM. The last
43 printf can succeed in writing to the internal stream buffer, and yet
44 the fclose(STREAM) could still fail (due e.g., to a disk full error)
52 that writes to STREAM -- just let the internal stream state recor
    [all...]
  /external/ltrace/
read_config_file.h 26 int read_config_file(FILE *stream, const char *name, struct protolib *plib);
  /external/lzma/CPP/7zip/Common/
StreamUtils.h 8 HRESULT ReadStream(ISequentialInStream *stream, void *data, size_t *size);
9 HRESULT ReadStream_FALSE(ISequentialInStream *stream, void *data, size_t size);
10 HRESULT ReadStream_FAIL(ISequentialInStream *stream, void *data, size_t size);
11 HRESULT WriteStream(ISequentialOutStream *stream, const void *data, size_t size);
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
vlc_decode.h 94 PV_STATUS DecodeUserData(BitstreamDecVideo *stream);
96 PV_STATUS PV_DecodeMBVec(BitstreamDecVideo *stream, MOT *mv_x, MOT *mv_y, int f_code_f);
99 PV_STATUS PV_VlcDecMV(BitstreamDecVideo *stream, int *mv);
100 int PV_VlcDecMCBPC_com_intra(BitstreamDecVideo *stream);
101 int PV_VlcDecMCBPC_com_inter(BitstreamDecVideo *stream);
103 int PV_VlcDecMCBPC_com_inter_H263(BitstreamDecVideo *stream);
104 PV_STATUS VlcDecTCOEFShortHeader_AnnexI(BitstreamDecVideo *stream, Tcoef *pTcoef);
105 PV_STATUS VlcDecTCOEFShortHeader_AnnexT(BitstreamDecVideo *stream, Tcoef *pTcoef); /* ANNEX_T */
106 PV_STATUS VlcDecTCOEFShortHeader_AnnexIT(BitstreamDecVideo *stream, Tcoef *pTcoef);
108 int PV_VlcDecCBPY(BitstreamDecVideo *stream, int intra)
    [all...]
packet_util.cpp 33 BitstreamDecVideo *stream = video->bitstream; local
47 status = PV_BitstreamShowBitsByteAlign(stream, resync_marker_length, &tmpvar32);
51 // DecNextStartCode(stream);
52 PV_BitstreamByteAlign(stream);
53 BitstreamReadBits32(stream, resync_marker_length);
55 *next_MB = (int) BitstreamReadBits16(stream, nbits);
65 quantizer = (int16) BitstreamReadBits16(stream, currVol->quantPrecision);
72 if (BitstreamRead1Bits(stream))
80 tmpvar16 = BitstreamRead1Bits(stream);
85 BitstreamRead1Bits(stream);
148 BitstreamDecVideo *stream = video->bitstream; local
199 BitstreamDecVideo *stream = video->bitstream; local
    [all...]
  /external/nanopb-c/examples/simple/
simple.c 21 /* Create a stream that will write to our buffer. */
22 pb_ostream_t stream = pb_ostream_from_buffer(buffer, sizeof(buffer)); local
28 status = pb_encode(&stream, SimpleMessage_fields, &message);
29 message_length = stream.bytes_written;
34 printf("Encoding failed: %s\n", PB_GET_ERROR(&stream));
49 /* Create a stream that reads from the buffer. */
50 pb_istream_t stream = pb_istream_from_buffer(buffer, message_length); local
53 status = pb_decode(&stream, SimpleMessage_fields, &message);
58 printf("Decoding failed: %s\n", PB_GET_ERROR(&stream));
  /device/asus/fugu/libaudio/
HDMIAudioOutput.cpp 41 status_t HDMIAudioOutput::setupForStream(const AudioStreamOut& stream)
43 mFramesPerChunk = stream.framesPerChunk();
44 mFramesPerSec = stream.outputSampleRate();
45 mBufferChunks = stream.nomChunksInFlight();
46 mChannelCnt = audio_channel_count_from_out_mask(stream.chanMask());
48 ALOGI("setupForStream format %08x, rate = %u", stream.format(), mFramesPerSec);
51 stream.format(),
52 stream.sampleRate(),
55 stream.format(), mFramesPerSec, mChannelCnt);
59 if (stream.isEncoded())
    [all...]
  /external/chromium_org/third_party/skia/src/images/
SkImageDecoder_FactoryDefault.cpp 15 SkImageDecoder* SkImageDecoder::Factory(SkStreamRewindable* stream) {
16 return image_decoder_from_stream(stream);
23 SkMovie* SkMovie::DecodeStream(SkStreamRewindable* stream) {
26 SkMovie* movie = curr->factory()(stream);
30 // we must rewind only if we got NULL, since we gave the stream to the
32 stream->rewind();
  /external/nanopb-c/tests/basic_buffer/
encode_buffer.c 14 pb_ostream_t stream; local
23 stream = pb_ostream_from_buffer(buffer, sizeof(buffer));
26 if (pb_encode(&stream, Person_fields, &person))
30 fwrite(buffer, 1, stream.bytes_written, stdout);
35 fprintf(stderr, "Encoding failed: %s\n", PB_GET_ERROR(&stream));
  /external/skia/src/images/
SkImageDecoder_FactoryDefault.cpp 15 SkImageDecoder* SkImageDecoder::Factory(SkStreamRewindable* stream) {
16 return image_decoder_from_stream(stream);
23 SkMovie* SkMovie::DecodeStream(SkStreamRewindable* stream) {
26 SkMovie* movie = curr->factory()(stream);
30 // we must rewind only if we got NULL, since we gave the stream to the
32 stream->rewind();
  /external/chromium_org/third_party/zlib/
compress.c 29 z_stream stream; local
32 stream.next_in = (Bytef*)source;
33 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;
44 stream.opaque = (voidpf)0
    [all...]
  /external/deqp/framework/delibs/destream/
deOutStream.h 4 * drawElements Stream Library
23 * \brief Output stream abstraction.
32 /* Output stream struct, implemented as a wrapper to io stream */
38 DE_INLINE deStreamResult deOutStream_write (deOutStream* stream, const void* buf, deInt32 bufSize, deInt32* numWritten);
39 DE_INLINE deStreamResult deOutStream_flush (deOutStream* stream);
40 DE_INLINE deStreamResult deOutStream_deinit (deOutStream* stream);
41 DE_INLINE const char* deOutStream_getError (deOutStream* stream);
42 DE_INLINE deStreamStatus deOutStream_getStatus (deOutStream* stream);
45 DE_INLINE deStreamResult deOutStream_write (deOutStream* stream, const void* buf, deInt32 bufSize, deInt32* numWritten
    [all...]
  /external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
fx_zlib_compress.c 29 z_stream stream; local
32 stream.next_in = (z_const Bytef *)source;
33 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;
44 stream.opaque = (voidpf)0
    [all...]
  /external/qemu/distrib/zlib-1.2.8/
compress.c 29 z_stream stream; local
32 stream.next_in = (z_const Bytef *)source;
33 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;
44 stream.opaque = (voidpf)0
    [all...]
  /external/zlib/src/
compress.c 29 z_stream stream; local
32 stream.next_in = (z_const Bytef *)source;
33 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;
44 stream.opaque = (voidpf)0
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_dump.h 94 util_dump_template(FILE *stream,
98 util_dump_rasterizer_state(FILE *stream,
102 util_dump_poly_stipple(FILE *stream,
106 util_dump_viewport_state(FILE *stream,
110 util_dump_scissor_state(FILE *stream,
114 util_dump_clip_state(FILE *stream,
118 util_dump_shader_state(FILE *stream,
122 util_dump_depth_stencil_alpha_state(FILE *stream,
126 util_dump_rt_blend_state(FILE *stream,
130 util_dump_blend_state(FILE *stream,
    [all...]

Completed in 945 milliseconds

1 23 4 5 6 7 8 91011>>