/third_party/skia/third_party/externals/freetype/src/base/ |
H A D | ftrfork.c | 51 FT_Stream stream, in FT_BASE_DEF() 65 error = FT_Stream_Seek( stream, (FT_ULong)rfork_offset ); in FT_BASE_DEF() 69 error = FT_Stream_Read( stream, (FT_Byte*)head, 16 ); in FT_BASE_DEF() 113 /* check whether end of rdata or map exceeds stream size */ in FT_BASE_DEF() 120 (FT_ULong)( rfork_offset + *rdata_pos + rdata_len ) > stream->size || in FT_BASE_DEF() 121 (FT_ULong)( rfork_offset + map_pos + map_len ) > stream->size ) in FT_BASE_DEF() 127 error = FT_Stream_Seek( stream, (FT_ULong)map_pos ); in FT_BASE_DEF() 133 error = FT_Stream_Read( stream, (FT_Byte*)head2, 16 ); in FT_BASE_DEF() 161 error = FT_Stream_Seek( stream, (FT_ULong)( map_pos + type_list ) ); in FT_BASE_DEF() 180 FT_Stream stream, in FT_BASE_DEF() 443 FT_Raccess_Guess( FT_Library library, FT_Stream stream, char* base_name, char **new_names, FT_Long *offsets, FT_Error *errors ) FT_Raccess_Guess() argument 509 raccess_guess_apple_double( FT_Library library, FT_Stream stream, char *base_file_name, char **result_file_name, FT_Long *result_offset ) raccess_guess_apple_double() argument 531 raccess_guess_apple_single( FT_Library library, FT_Stream stream, char *base_file_name, char **result_file_name, FT_Long *result_offset ) raccess_guess_apple_single() argument 553 raccess_guess_darwin_ufs_export( FT_Library library, FT_Stream stream, char *base_file_name, char **result_file_name, FT_Long *result_offset ) raccess_guess_darwin_ufs_export() argument 583 raccess_guess_darwin_hfsplus( FT_Library library, FT_Stream stream, char *base_file_name, char **result_file_name, FT_Long *result_offset ) raccess_guess_darwin_hfsplus() argument 619 raccess_guess_darwin_newvfs( FT_Library library, FT_Stream stream, char *base_file_name, char **result_file_name, FT_Long *result_offset ) raccess_guess_darwin_newvfs() argument 655 raccess_guess_vfat( FT_Library library, FT_Stream stream, char *base_file_name, char **result_file_name, FT_Long *result_offset ) raccess_guess_vfat() argument 682 raccess_guess_linux_cap( FT_Library library, FT_Stream stream, char *base_file_name, char **result_file_name, FT_Long *result_offset ) raccess_guess_linux_cap() argument 708 raccess_guess_linux_double( FT_Library library, FT_Stream stream, char *base_file_name, char **result_file_name, FT_Long *result_offset ) raccess_guess_linux_double() argument 739 raccess_guess_linux_netatalk( FT_Library library, FT_Stream stream, char *base_file_name, char **result_file_name, FT_Long *result_offset ) raccess_guess_linux_netatalk() argument 771 raccess_guess_apple_generic( FT_Library library, FT_Stream stream, char *base_file_name, FT_Int32 magic, FT_Long *result_offset ) raccess_guess_apple_generic() argument 910 FT_Raccess_Guess( FT_Library library, FT_Stream stream, char *base_name, char **new_names, FT_Long *offsets, FT_Error *errors ) FT_Raccess_Guess() argument [all...] |
/foundation/multimedia/audio_framework/services/audio_service/test/unittest/ |
H A D | pa_renderer_stream_impl_unit_test_p2.cpp | 72 pa_stream *stream = adapterManager->InitPaStream(processConfig, sessionId, false); in CreatePaRendererStreamImpl() local 73 std::shared_ptr<IRendererStream> rendererStream = adapterManager->CreateRendererStream(processConfig, stream); in CreatePaRendererStreamImpl() 92 pa_stream *stream = adapterManager->InitPaStream(processConfig, sessionId, false); in HWTEST_F() local 93 unit->paStream_ = stream; in HWTEST_F() 94 if (stream == nullptr) { in HWTEST_F() 95 std::cout << "stream is nullptr" << std::endl; in HWTEST_F() 120 pa_stream *stream = adapterManager->InitPaStream(processConfig, sessionId, false); in HWTEST_F() local 121 unit->paStream_ = stream; in HWTEST_F() 122 if (stream == nullptr) { in HWTEST_F() 123 std::cout << "stream i in HWTEST_F() 144 pa_stream *stream = adapterManager->InitPaStream(processConfig, sessionId, false); HWTEST_F() local 167 pa_stream *stream = adapterManager->InitPaStream(processConfig, sessionId, false); HWTEST_F() local 192 pa_stream *stream = adapterManager->InitPaStream(processConfig, sessionId, false); HWTEST_F() local 217 pa_stream *stream = adapterManager->InitPaStream(processConfig, sessionId, false); HWTEST_F() local 241 pa_stream *stream = adapterManager->InitPaStream(processConfig, sessionId, false); HWTEST_F() local 260 pa_stream *stream = adapterManager->InitPaStream(processConfig, sessionId, false); HWTEST_F() local 280 pa_stream *stream = adapterManager->InitPaStream(processConfig, sessionId, false); HWTEST_F() local 303 pa_stream *stream = adapterManager->InitPaStream(processConfig, sessionId, false); HWTEST_F() local 342 pa_stream *stream = adapterManager->InitPaStream(processConfig, sessionId, false); HWTEST_F() local 363 pa_stream *stream = adapterManager->InitPaStream(processConfig, sessionId, false); HWTEST_F() local 388 pa_stream *stream = adapterManager->InitPaStream(processConfig, sessionId, false); HWTEST_F() local 413 pa_stream *stream = adapterManager->InitPaStream(processConfig, sessionId, false); HWTEST_F() local [all...] |
/third_party/skia/third_party/externals/freetype/include/freetype/internal/ |
H A D | ftstream.h | 174 * FT_GET_XXX stream->cursor yes yes yes no 175 * FT_READ_XXX stream->pos yes yes no yes 281 * The `FT_GET_XXX` macros use an implicit 'stream' variable. 284 * effect on `FT_GET_XXX`! They operate on `stream->pos`, while 285 * `FT_GET_XXX` use `stream->cursor`. 288 #define FT_GET_MACRO( type ) FT_NEXT_ ## type ( stream->cursor ) 306 #define FT_GET_MACRO( func, type ) ( (type)func( stream ) ) 325 ( var = (type)func( stream, &error ), \ 329 * The `FT_READ_XXX' macros use implicit `stream' and `error' variables. 351 /* initialize a stream fo 378 FT_Stream_Close( FT_Stream stream ); global() variable 393 FT_Stream_Pos( FT_Stream stream ); global() variable 432 FT_Stream_ExitFrame( FT_Stream stream ); global() variable 459 FT_Stream_GetByte( FT_Stream stream ); global() variable 463 FT_Stream_GetUShort( FT_Stream stream ); global() variable 467 FT_Stream_GetUOffset( FT_Stream stream ); global() variable 471 FT_Stream_GetULong( FT_Stream stream ); global() variable 475 FT_Stream_GetUShortLE( FT_Stream stream ); global() variable 479 FT_Stream_GetULongLE( FT_Stream stream ); global() variable [all...] |
/third_party/skia/third_party/externals/dng_sdk/source/ |
H A D | dng_exif.cpp | 751 bool dng_exif::ParseTag (dng_stream &stream, in ParseTag() argument 764 if (Parse_ifd0 (stream, in ParseTag() 782 if (Parse_ifd0_main (stream, in ParseTag() 801 if (Parse_ifd0_exif (stream, in ParseTag() 819 if (Parse_gps (stream, in ParseTag() 837 if (Parse_interoperability (stream, in ParseTag() 860 bool dng_exif::Parse_ifd0 (dng_stream &stream, in Parse_ifd0() argument 877 ParseStringTag (stream, in Parse_ifd0() 907 ParseStringTag (stream, in Parse_ifd0() 937 ParseStringTag (stream, in Parse_ifd0() 1254 Parse_ifd0_main(dng_stream &stream, dng_shared & , uint32 parentCode, uint32 tagCode, uint32 tagType, uint32 tagCount, uint64 ) Parse_ifd0_main() argument 1383 Parse_ifd0_exif(dng_stream &stream, dng_shared & , uint32 parentCode, uint32 tagCode, uint32 tagType, uint32 tagCount, uint64 ) Parse_ifd0_exif() argument 3561 Parse_gps(dng_stream &stream, dng_shared & , uint32 parentCode, uint32 tagCode, uint32 tagType, uint32 tagCount, uint64 ) Parse_gps() argument 4023 Parse_interoperability(dng_stream &stream, dng_shared & , uint32 parentCode, uint32 tagCode, uint32 tagType, uint32 tagCount, uint64 ) Parse_interoperability() argument [all...] |
/third_party/cJSON/tests/unity/auto/ |
H A D | stylize_as_junit.rb | 175 def write_xml_header(stream) 176 stream.puts "<?xml version='1.0' encoding='utf-8' ?>" 179 def write_suites_header(stream) 180 stream.puts '<testsuites>' 183 def write_suite_header(counts, stream) 184 stream.puts "\t<testsuite errors=\"0\" skipped=\"#{counts[:ignored]}\" failures=\"#{counts[:failed]}\" tests=\"#{counts[:total]}\" name=\"unity\">" 187 def write_failures(results, stream) 191 stream.puts "\t\t<testcase classname=\"#{@unit_name}\" name=\"#{item[:test]}\" time=\"0\">" 192 stream.puts "\t\t\t<failure message=\"#{item[:message]}\" type=\"Assertion\"/>" 193 stream [all...] |
/third_party/node/deps/npm/node_modules/cacache/lib/ |
H A D | get.js | 57 const stream = new Minipass() 58 stream.on('newListener', function (ev, cb) { 63 stream.end(memoized.data) 64 return stream 74 const stream = new Pipeline() 75 // Set all this up to run on the stream and then just return the stream 82 stream.emit('metadata', entry.metadata) 83 stream.emit('integrity', entry.integrity) 84 stream [all...] |
/third_party/unity/auto/ |
H A D | stylize_as_junit.rb | 172 def write_xml_header(stream) 173 stream.puts "<?xml version='1.0' encoding='utf-8' ?>" 176 def write_suites_header(stream) 177 stream.puts '<testsuites>' 180 def write_suite_header(counts, stream) 181 stream.puts "\t<testsuite errors=\"0\" skipped=\"#{counts[:ignored]}\" failures=\"#{counts[:failed]}\" tests=\"#{counts[:total]}\" name=\"unity\">" 184 def write_failures(results, stream) 188 stream.puts "\t\t<testcase classname=\"#{@unit_name}\" name=\"#{item[:test]}\" time=\"0\">" 189 stream.puts "\t\t\t<failure message=\"#{item[:message]}\" type=\"Assertion\"/>" 190 stream [all...] |
/third_party/ltp/testcases/kernel/fs/stream/ |
H A D | stream01.c | 25 >WHAT: < 1) check that freopen substitutes the named file in place of stream. 26 >HOW: < 1) open a stream, write something to it, perform freopen and 27 < write some more. Check that second write to stream went to 52 FILE *stream; in main() local 70 if ((stream = fopen(tempfile1, "a+")) == NULL) { in main() 75 fwrite("a", 1, 1, stream); in main() 76 if ((stream = freopen(tempfile2, "a+", stream)) == NULL) { in main() 80 fwrite("a", 1, 1, stream); in main() 81 fclose(stream); in main() [all...] |
/third_party/node/test/fixtures/wpt/streams/piping/ |
H A D | multiple-propagation.any.js | 21 return promise_rejects_exactly(t, error2, writer.closed, 'the writable stream must be errored with error2') 42 // Trying to abort a stream that is erroring will give the writable's error 43 return promise_rejects_exactly(t, error2, rs.pipeTo(ws), 'pipeTo must reject with the writable stream\'s error').then(() => { 48 promise_rejects_exactly(t, error1, rs.getReader().closed, 'the readable stream must be errored with error1'), 49 promise_rejects_exactly(t, error2, ws.getWriter().closed, 'the writable stream must be errored with error2') 53 }, 'Piping from an errored readable stream to an erroring writable stream'); 63 .then(ws => promise_rejects_exactly(t, error1, rs.pipeTo(ws), 'pipeTo must reject with the readable stream\'s error')) 67 return promise_rejects_exactly(t, error1, rs.getReader().closed, 'the readable stream must be errored with error1'); 69 }, 'Piping from an errored readable stream t [all...] |
/third_party/node/lib/internal/streams/ |
H A D | readable.js | 49 const eos = require('internal/streams/end-of-stream'); 51 let debug = require('internal/util/debuglog').debuglog('stream', (fn) => { 143 // Indicates whether the stream has finished destroying. 154 function ReadableState(options, stream, isDuplex) { 158 // values for the readable and the writable sides of the duplex stream. 161 isDuplex = stream instanceof Stream.Duplex; 166 // Object stream flag. Used to make read(n) ignore n and to 196 // Indicates whether the stream has errored. When true no further 199 // stream has failed. 286 function readableAddChunk(stream, chun [all...] |
/third_party/mesa3d/src/gallium/drivers/etnaviv/ |
H A D | etnaviv_context.c | 62 etna_emit_nop_with_data(struct etna_cmd_stream *stream, uint32_t value) in etna_emit_nop_with_data() argument 64 etna_cmd_stream_emit(stream, VIV_FE_NOP_HEADER_OP_NOP); in etna_emit_nop_with_data() 65 etna_cmd_stream_emit(stream, value); in etna_emit_nop_with_data() 72 struct etna_cmd_stream *stream = ctx->stream; in etna_emit_string_marker() local 75 etna_cmd_stream_reserve(stream, len * 2); in etna_emit_string_marker() 78 etna_emit_nop_with_data(stream, *buf); in etna_emit_string_marker() 87 etna_emit_nop_with_data(stream, w); in etna_emit_string_marker() 119 if (ctx->stream) in etna_context_destroy() 120 etna_cmd_stream_del(ctx->stream); in etna_context_destroy() 425 struct etna_cmd_stream *stream = ctx->stream; etna_reset_gpu_state() local 540 etna_context_force_flush(struct etna_cmd_stream *stream, void *priv) etna_context_force_flush() argument [all...] |
/third_party/protobuf/java/core/src/test/java/com/google/protobuf/ |
H A D | CodedOutputStreamTest.java | 53 CodedOutputStream stream(); in stream() method 61 private final CodedOutputStream stream; field in CodedOutputStreamTest.OutputStreamCoder 66 stream = CodedOutputStream.newInstance(output, size); in OutputStreamCoder() 70 public CodedOutputStream stream() { in stream() method in CodedOutputStreamTest.OutputStreamCoder 71 return stream; in stream() 86 private final CodedOutputStream stream; field in CodedOutputStreamTest.ArrayCoder 91 stream = CodedOutputStream.newInstance(bytes); in ArrayCoder() 95 public CodedOutputStream stream() { in stream() method in CodedOutputStreamTest.ArrayCoder 96 return stream; in stream() 101 return Arrays.copyOf(bytes, stream in toByteArray() 111 private final CodedOutputStream stream; global() field in CodedOutputStreamTest.NioHeapCoder 127 public CodedOutputStream stream() { stream() method in CodedOutputStreamTest.NioHeapCoder 150 private final CodedOutputStream stream; global() field in CodedOutputStreamTest.NioDirectCoder 170 public CodedOutputStream stream() { stream() method in CodedOutputStreamTest.NioDirectCoder [all...] |
/third_party/node/test/parallel/ |
H A D | test-stream-readable-flow-recursion.js | 27 // will push up the highWaterMark, and cause the stream to read 31 const Readable = require('stream').Readable; 36 const stream = new Readable({ highWaterMark: 2 }); 39 stream._read = function(size) { 44 stream.push(null); 46 stream.push(Buffer.allocUnsafe(size)); 51 function flow(stream, size, callback) { 53 const chunk = stream.read(size); 56 stream.once('readable', flow.bind(null, stream, siz [all...] |
/third_party/glslang/SPIRV/ |
H A D | disassemble.cpp | 86 // Container class for a single instance of a SPIR-V stream, with methods for disassembly. 89 SpirvStream(std::ostream& out, const std::vector<unsigned int>& stream) : out(out), stream(stream), word(0), nextNestedControl(0) { } in SpirvStream() argument 98 Op getOpCode(int id) const { return idInstruction[id] ? (Op)(stream[idInstruction[id]] & OpCodeMask) : OpNop; } in getOpCode() 115 const std::vector<unsigned int>& stream; // the actual word stream member in spv::SpirvStream 116 int size; // the size of the word stream 117 int word; // the next word of the stream to read 121 std::vector<unsigned int> idInstruction; // the word offset into the stream wher 285 out << stream[word++]; disassembleImmediates() local 814 Disassemble(std::ostream& out, const std::vector<unsigned int>& stream) Disassemble() argument [all...] |
/third_party/PyYAML/tests/lib/ |
H A D | test_input_output.py | 58 stream = io.StringIO() 59 yaml.dump(value, stream, encoding=encoding, allow_unicode=allow_unicode) 60 data2 = stream.getvalue() 65 stream = io.BytesIO() 68 yaml.dump(value, stream, encoding=encoding, allow_unicode=allow_unicode) 76 yaml.dump(value, stream, encoding=encoding, allow_unicode=allow_unicode) 77 data4 = stream.getvalue() 93 stream = io.StringIO() 94 yaml.dump(data, stream, allow_unicode=True) 95 data1 = stream [all...] |
/third_party/node/deps/npm/node_modules/@sigstore/core/dist/asn1/ |
H A D | obj.js | 19 const stream_1 = require("../stream"); 102 // Internal stream parsing functions 103 function parseStream(stream) { 104 // Parse tag, length, and value from stream 105 const tag = new tag_1.ASN1Tag(stream.getUint8()); 106 const len = (0, length_1.decodeLength)(stream); 107 const value = stream.slice(stream.position, len); 108 const start = stream.position; 114 subs = collectSubs(stream, le [all...] |
/third_party/mesa3d/src/gallium/auxiliary/util/ |
H A D | u_dump_defines.c | 94 util_dump_flags_continuous(FILE *stream, unsigned value, unsigned num_names, in util_dump_flags_continuous() argument 105 fputs("|", stream); in util_dump_flags_continuous() 106 fputs(names[i], stream); in util_dump_flags_continuous() 112 fputs("|", stream); in util_dump_flags_continuous() 113 fprintf(stream, "%x", unknown); in util_dump_flags_continuous() 118 fputs("0", stream); in util_dump_flags_continuous() 123 util_dump_##_name(FILE *stream, unsigned value) \ 125 util_dump_flags_continuous(stream, value, ARRAY_SIZE(util_##_name##_names), \ 497 util_dump_query_type(FILE *stream, unsigned value) in DEFINE_UTIL_STR_CONTINUOUS() 500 fprintf(stream, "PIPE_QUERY_DRIVER_SPECIFI in DEFINE_UTIL_STR_CONTINUOUS() 507 util_dump_query_value_type(FILE *stream, unsigned value) util_dump_query_value_type() argument 513 util_dump_query_flags(FILE *stream, unsigned value) util_dump_query_flags() argument [all...] |
/third_party/node/deps/openssl/openssl/providers/implementations/ciphers/ |
H A D | cipher_aes.c | 65 IMPLEMENT_generic_cipher(aes, AES, ofb, OFB, 0, 256, 8, 128, stream) 67 IMPLEMENT_generic_cipher(aes, AES, ofb, OFB, 0, 192, 8, 128, stream) 69 IMPLEMENT_generic_cipher(aes, AES, ofb, OFB, 0, 128, 8, 128, stream) 71 IMPLEMENT_generic_cipher(aes, AES, cfb, CFB, 0, 256, 8, 128, stream) 73 IMPLEMENT_generic_cipher(aes, AES, cfb, CFB, 0, 192, 8, 128, stream) 75 IMPLEMENT_generic_cipher(aes, AES, cfb, CFB, 0, 128, 8, 128, stream) 77 IMPLEMENT_generic_cipher(aes, AES, cfb1, CFB, 0, 256, 8, 128, stream) 79 IMPLEMENT_generic_cipher(aes, AES, cfb1, CFB, 0, 192, 8, 128, stream) 81 IMPLEMENT_generic_cipher(aes, AES, cfb1, CFB, 0, 128, 8, 128, stream) 83 IMPLEMENT_generic_cipher(aes, AES, cfb8, CFB, 0, 256, 8, 128, stream) [all...] |
H A D | cipher_aria.c | 58 IMPLEMENT_generic_cipher(aria, ARIA, ofb, OFB, 0, 256, 8, 128, stream) 60 IMPLEMENT_generic_cipher(aria, ARIA, ofb, OFB, 0, 192, 8, 128, stream) 62 IMPLEMENT_generic_cipher(aria, ARIA, ofb, OFB, 0, 128, 8, 128, stream) 64 IMPLEMENT_generic_cipher(aria, ARIA, cfb, CFB, 0, 256, 8, 128, stream) 66 IMPLEMENT_generic_cipher(aria, ARIA, cfb, CFB, 0, 192, 8, 128, stream) 68 IMPLEMENT_generic_cipher(aria, ARIA, cfb, CFB, 0, 128, 8, 128, stream) 70 IMPLEMENT_generic_cipher(aria, ARIA, cfb1, CFB, 0, 256, 8, 128, stream) 72 IMPLEMENT_generic_cipher(aria, ARIA, cfb1, CFB, 0, 192, 8, 128, stream) 74 IMPLEMENT_generic_cipher(aria, ARIA, cfb1, CFB, 0, 128, 8, 128, stream) 76 IMPLEMENT_generic_cipher(aria, ARIA, cfb8, CFB, 0, 256, 8, 128, stream) [all...] |
H A D | cipher_camellia.c | 64 IMPLEMENT_generic_cipher(camellia, CAMELLIA, ofb, OFB, 0, 256, 8, 128, stream) 66 IMPLEMENT_generic_cipher(camellia, CAMELLIA, ofb, OFB, 0, 192, 8, 128, stream) 68 IMPLEMENT_generic_cipher(camellia, CAMELLIA, ofb, OFB, 0, 128, 8, 128, stream) 70 IMPLEMENT_generic_cipher(camellia, CAMELLIA, cfb, CFB, 0, 256, 8, 128, stream) 72 IMPLEMENT_generic_cipher(camellia, CAMELLIA, cfb, CFB, 0, 192, 8, 128, stream) 74 IMPLEMENT_generic_cipher(camellia, CAMELLIA, cfb, CFB, 0, 128, 8, 128, stream) 76 IMPLEMENT_generic_cipher(camellia, CAMELLIA, cfb1, CFB, 0, 256, 8, 128, stream) 78 IMPLEMENT_generic_cipher(camellia, CAMELLIA, cfb1, CFB, 0, 192, 8, 128, stream) 80 IMPLEMENT_generic_cipher(camellia, CAMELLIA, cfb1, CFB, 0, 128, 8, 128, stream) 82 IMPLEMENT_generic_cipher(camellia, CAMELLIA, cfb8, CFB, 0, 256, 8, 128, stream) [all...] |
/third_party/openssl/providers/implementations/ciphers/ |
H A D | cipher_aes.c | 65 IMPLEMENT_generic_cipher(aes, AES, ofb, OFB, 0, 256, 8, 128, stream) 67 IMPLEMENT_generic_cipher(aes, AES, ofb, OFB, 0, 192, 8, 128, stream) 69 IMPLEMENT_generic_cipher(aes, AES, ofb, OFB, 0, 128, 8, 128, stream) 71 IMPLEMENT_generic_cipher(aes, AES, cfb, CFB, 0, 256, 8, 128, stream) 73 IMPLEMENT_generic_cipher(aes, AES, cfb, CFB, 0, 192, 8, 128, stream) 75 IMPLEMENT_generic_cipher(aes, AES, cfb, CFB, 0, 128, 8, 128, stream) 77 IMPLEMENT_generic_cipher(aes, AES, cfb1, CFB, 0, 256, 8, 128, stream) 79 IMPLEMENT_generic_cipher(aes, AES, cfb1, CFB, 0, 192, 8, 128, stream) 81 IMPLEMENT_generic_cipher(aes, AES, cfb1, CFB, 0, 128, 8, 128, stream) 83 IMPLEMENT_generic_cipher(aes, AES, cfb8, CFB, 0, 256, 8, 128, stream) [all...] |
H A D | cipher_aria.c | 58 IMPLEMENT_generic_cipher(aria, ARIA, ofb, OFB, 0, 256, 8, 128, stream) 60 IMPLEMENT_generic_cipher(aria, ARIA, ofb, OFB, 0, 192, 8, 128, stream) 62 IMPLEMENT_generic_cipher(aria, ARIA, ofb, OFB, 0, 128, 8, 128, stream) 64 IMPLEMENT_generic_cipher(aria, ARIA, cfb, CFB, 0, 256, 8, 128, stream) 66 IMPLEMENT_generic_cipher(aria, ARIA, cfb, CFB, 0, 192, 8, 128, stream) 68 IMPLEMENT_generic_cipher(aria, ARIA, cfb, CFB, 0, 128, 8, 128, stream) 70 IMPLEMENT_generic_cipher(aria, ARIA, cfb1, CFB, 0, 256, 8, 128, stream) 72 IMPLEMENT_generic_cipher(aria, ARIA, cfb1, CFB, 0, 192, 8, 128, stream) 74 IMPLEMENT_generic_cipher(aria, ARIA, cfb1, CFB, 0, 128, 8, 128, stream) 76 IMPLEMENT_generic_cipher(aria, ARIA, cfb8, CFB, 0, 256, 8, 128, stream) [all...] |
H A D | cipher_camellia.c | 64 IMPLEMENT_generic_cipher(camellia, CAMELLIA, ofb, OFB, 0, 256, 8, 128, stream) 66 IMPLEMENT_generic_cipher(camellia, CAMELLIA, ofb, OFB, 0, 192, 8, 128, stream) 68 IMPLEMENT_generic_cipher(camellia, CAMELLIA, ofb, OFB, 0, 128, 8, 128, stream) 70 IMPLEMENT_generic_cipher(camellia, CAMELLIA, cfb, CFB, 0, 256, 8, 128, stream) 72 IMPLEMENT_generic_cipher(camellia, CAMELLIA, cfb, CFB, 0, 192, 8, 128, stream) 74 IMPLEMENT_generic_cipher(camellia, CAMELLIA, cfb, CFB, 0, 128, 8, 128, stream) 76 IMPLEMENT_generic_cipher(camellia, CAMELLIA, cfb1, CFB, 0, 256, 8, 128, stream) 78 IMPLEMENT_generic_cipher(camellia, CAMELLIA, cfb1, CFB, 0, 192, 8, 128, stream) 80 IMPLEMENT_generic_cipher(camellia, CAMELLIA, cfb1, CFB, 0, 128, 8, 128, stream) 82 IMPLEMENT_generic_cipher(camellia, CAMELLIA, cfb8, CFB, 0, 256, 8, 128, stream) [all...] |
/third_party/rust/crates/proc-macro2/tests/ |
H A D | comments.rs | 37 group.stream().into_iter() in lit_of_doc_comment() 63 let stream = "/**/".parse::<TokenStream>().unwrap(); in closed_immediately() 64 let tokens = stream.into_iter().collect::<Vec<_>>(); in closed_immediately() 75 let stream = "/// doc".parse::<TokenStream>().unwrap(); in lit() 76 let lit = lit_of_outer_doc_comment(&stream); in lit() 79 let stream = "//! doc".parse::<TokenStream>().unwrap(); in lit() 80 let lit = lit_of_inner_doc_comment(&stream); in lit() 83 let stream = "/** doc */".parse::<TokenStream>().unwrap(); in lit() 84 let lit = lit_of_outer_doc_comment(&stream); in lit() 87 let stream in lit() [all...] |
/third_party/node/deps/v8/third_party/zlib/contrib/minizip/ |
H A D | iowin32.c | 42 uLong ZCALLBACK win32_read_file_func OF((voidpf opaque, voidpf stream, void* buf, uLong size)); 43 uLong ZCALLBACK win32_write_file_func OF((voidpf opaque, voidpf stream, const void* buf, uLong size)); 44 ZPOS64_T ZCALLBACK win32_tell64_file_func OF((voidpf opaque, voidpf stream)); 45 long ZCALLBACK win32_seek64_file_func OF((voidpf opaque, voidpf stream, ZPOS64_T offset, int origin)); 46 int ZCALLBACK win32_close_file_func OF((voidpf opaque, voidpf stream)); 47 int ZCALLBACK win32_error_file_func OF((voidpf opaque, voidpf stream)); 203 uLong ZCALLBACK win32_read_file_func (voidpf opaque, voidpf stream, void* buf,uLong size) in win32_read_file_func() argument 207 if (stream!=NULL) in win32_read_file_func() 208 hFile = ((WIN32FILE_IOWIN*)stream) -> hf; in win32_read_file_func() 217 ((WIN32FILE_IOWIN*)stream) in win32_read_file_func() 225 win32_write_file_func(voidpf opaque,voidpf stream,const void* buf,uLong size) win32_write_file_func() argument 266 win32_tell_file_func(voidpf opaque,voidpf stream) win32_tell_file_func() argument 289 win32_tell64_file_func(voidpf opaque, voidpf stream) win32_tell64_file_func() argument 314 win32_seek_file_func(voidpf opaque,voidpf stream,uLong offset,int origin) win32_seek_file_func() argument 352 win32_seek64_file_func(voidpf opaque, voidpf stream,ZPOS64_T offset,int origin) win32_seek64_file_func() argument 391 win32_close_file_func(voidpf opaque, voidpf stream) win32_close_file_func() argument 409 win32_error_file_func(voidpf opaque,voidpf stream) win32_error_file_func() argument [all...] |