Home
last modified time | relevance | path

Searched refs:buffered_data (Results 1 – 25 of 220) sorted by relevance

123456789

/dports/net/google-cloud-sdk/google-cloud-sdk/platform/gsutil/gslib/
H A Dresumable_streaming_upload.py88 buffered_data = []
134 if not buffered_data:
137 buffered_data.append(new_data)
138 data = b''.join(buffered_data)
142 if not buffered_data:
145 buffered_data.append(new_data)
146 data = b''.join(buffered_data)
164 if buffered_data:
165 buffered_data = [
167 for bd in buffered_data
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/catapult/third_party/gsutil/gslib/
H A Dresumable_streaming_upload.py88 buffered_data = []
134 if not buffered_data:
137 buffered_data.append(new_data)
138 data = b''.join(buffered_data)
142 if not buffered_data:
145 buffered_data.append(new_data)
146 data = b''.join(buffered_data)
164 if buffered_data:
165 buffered_data = [
167 for bd in buffered_data
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/depot_tools/external_bin/gsutil/gsutil_4.28/gsutil/gslib/
H A Dresumable_streaming_upload.py75 buffered_data = []
100 buffered_data.append(
121 if not buffered_data:
124 buffered_data.append(new_data)
125 data = b''.join(buffered_data)
129 if not buffered_data:
132 buffered_data.append(new_data)
133 data = b''.join(buffered_data)
150 data = b''.join(buffered_data) if buffered_data else b''
/dports/misc/adios2/ADIOS2-2.7.1/thirdparty/EVPath/EVPath/
H A Dmodels.c68 double* buffered_data = fftw_malloc(sizeof(double)*buffer_size); in EVmodel_take_fft() local
69 memcpy(buffered_data, data, sizeof(double)*num_samples); in EVmodel_take_fft()
75 fftw_plan plan_forward = fftw_plan_dft_r2c_1d(buffer_size, buffered_data, fft, FFTW_ESTIMATE); in EVmodel_take_fft()
80 fftw_free(buffered_data); in EVmodel_take_fft()
/dports/devel/brz/breezy-3.2.0/breezy/transport/
H A Dsftp.py224 buffered_data = []
246 buffered_data = [data]
252 buffered_data.append(data)
260 buffered = b''.join(buffered_data)
263 buffered_data = [data]
271 buffered = b''.join(buffered_data)
274 del buffered_data[:]
300 buffered_data = []
304 buffered_data = [buffered]
309 buffered = b''.join(buffered_data)
[all …]
/dports/www/mod_php80/php-8.0.15/tests/lang/
H A Dbug30578.phpt18 $buffered_data = ob_get_contents();
22 echo "Buffered data: $buffered_data";
/dports/www/mod_php81/php-8.1.1/tests/lang/
H A Dbug30578.phpt18 $buffered_data = ob_get_contents();
22 echo "Buffered data: $buffered_data";
/dports/lang/php73/php-7.3.33/tests/lang/
H A Dbug30578.phpt18 $buffered_data = ob_get_contents();
22 echo "Buffered data: $buffered_data";
/dports/lang/php74/php-7.4.27/tests/lang/
H A Dbug30578.phpt18 $buffered_data = ob_get_contents();
22 echo "Buffered data: $buffered_data";
/dports/lang/php81/php-8.1.1/tests/lang/
H A Dbug30578.phpt18 $buffered_data = ob_get_contents();
22 echo "Buffered data: $buffered_data";
/dports/lang/php80/php-8.0.15/tests/lang/
H A Dbug30578.phpt18 $buffered_data = ob_get_contents();
22 echo "Buffered data: $buffered_data";
/dports/www/mod_php73/php-7.3.33/tests/lang/
H A Dbug30578.phpt18 $buffered_data = ob_get_contents();
22 echo "Buffered data: $buffered_data";
/dports/www/mod_php74/php-7.4.27/tests/lang/
H A Dbug30578.phpt18 $buffered_data = ob_get_contents();
22 echo "Buffered data: $buffered_data";
/dports/multimedia/projectx/Project-X_0.91.0/src/net/sourceforge/dvb/projectx/parser/
H A DStreamParserPESSecondary.java159 byte[] buffered_data; in parseStream()
503 buffered_data = sb.getData(); in parseStream()
508 if (buffered_data == null || buffered_data.length < 10) in parseStream()
511 pes_packetlength = buffered_data.length; in parseStream()
521 System.arraycopy(buffered_data, 0, pes_packet, 0, pes_packetlength); in parseStream()
525 buffered_data = null; in parseStream()
H A DStreamParserPESPrimary.java142 byte[] buffered_data; in parseStream()
805 buffered_data = sb.getData(); in parseStream()
810 if (buffered_data == null || buffered_data.length < 10) in parseStream()
813 pes_packetlength = buffered_data.length; in parseStream()
823 System.arraycopy(buffered_data, 0, pes_packet, 0, pes_packetlength); in parseStream()
827 buffered_data = null; in parseStream()
/dports/audio/snd/snd-21.2/
H A Dsnd-io.c615 sd->buffered_data = io->arrays[temp_chan];
652 sf->buffered_data = io->arrays[sd->chan];
679 sf->buffered_data = (mus_float_t *)malloc((len + 1) * sizeof(mus_float_t));
686 mus_copy_floats(sf->buffered_data, data, len);
687 sf->buffered_data[len] = 0.0;
701 sf->buffered_data = (mus_float_t *)calloc(len, sizeof(mus_float_t));
728 (sd->buffered_data))
729 free(sd->buffered_data);
730 sd->buffered_data = NULL;
/dports/games/exult/exult-snapshot-v1.7.0.20211128/files/zip/
H A Dzip.cc108 Byte buffered_data[Z_BUFSIZE];/* buffer contain compressed data to be writ*/ member
417 file->ci.stream.next_out = file->ci.buffered_data; in zipOpenNewFileInZip()
454 if (fwrite(file->ci.buffered_data, file->ci.pos_in_buffered_data, 1, file->filezip) in zipWriteInFileInZip()
459 file->ci.stream.next_out = file->ci.buffered_data; in zipWriteInFileInZip()
502 if (fwrite(file->ci.buffered_data, file->ci.pos_in_buffered_data, 1, file->filezip) in zipCloseFileInZip()
507 file->ci.stream.next_out = file->ci.buffered_data; in zipCloseFileInZip()
518 if (fwrite(file->ci.buffered_data, file->ci.pos_in_buffered_data, 1, file->filezip) in zipCloseFileInZip()
/dports/sysutils/fluent-bit/fluent-bit-1.8.11/plugins/out_s3/
H A Ds3_multipart.c198 char *buffered_data = NULL; in upload_from_file() local
202 ret = s3_store_file_upload_read(ctx, fsf, &buffered_data, &buffer_size); in upload_from_file()
220 flb_free(buffered_data); in upload_from_file()
230 flb_free(buffered_data); in upload_from_file()
235 parse_etags(m_upload, buffered_data); in upload_from_file()
236 flb_free(buffered_data); in upload_from_file()
/dports/net-im/psi/psi-1.5/src/libpsi/tools/zip/minizip/other/
H A Dzip.c113 Byte buffered_data[Z_BUFSIZE];/* buffer contain compressed data to be writ*/ member
475 zi->ci.stream.next_out = zi->ci.buffered_data;
521 if (fwrite(zi->ci.buffered_data,(uInt)zi->ci.pos_in_buffered_data,1,zi->filezip)
526 zi->ci.stream.next_out = zi->ci.buffered_data;
581 if (fwrite(zi->ci.buffered_data,(uInt)zi->ci.pos_in_buffered_data,1,zi->filezip)
586 zi->ci.stream.next_out = zi->ci.buffered_data;
597 if (fwrite(zi->ci.buffered_data,(uInt)zi->ci.pos_in_buffered_data,1,zi->filezip)
/dports/devel/zpu-binutils/zpu-toolchain-1.0/toolchain/gcc/zlib/contrib/minizip/
H A Dzip.c113 Byte buffered_data[Z_BUFSIZE];/* buffer contain compressed data to be writ*/ member
475 zi->ci.stream.next_out = zi->ci.buffered_data;
521 if (fwrite(zi->ci.buffered_data,(uInt)zi->ci.pos_in_buffered_data,1,zi->filezip)
526 zi->ci.stream.next_out = zi->ci.buffered_data;
581 if (fwrite(zi->ci.buffered_data,(uInt)zi->ci.pos_in_buffered_data,1,zi->filezip)
586 zi->ci.stream.next_out = zi->ci.buffered_data;
597 if (fwrite(zi->ci.buffered_data,(uInt)zi->ci.pos_in_buffered_data,1,zi->filezip)
/dports/devel/zpu-gcc/zpu-toolchain-1.0/toolchain/gcc/zlib/contrib/minizip/
H A Dzip.c113 Byte buffered_data[Z_BUFSIZE];/* buffer contain compressed data to be writ*/ member
475 zi->ci.stream.next_out = zi->ci.buffered_data;
521 if (fwrite(zi->ci.buffered_data,(uInt)zi->ci.pos_in_buffered_data,1,zi->filezip)
526 zi->ci.stream.next_out = zi->ci.buffered_data;
581 if (fwrite(zi->ci.buffered_data,(uInt)zi->ci.pos_in_buffered_data,1,zi->filezip)
586 zi->ci.stream.next_out = zi->ci.buffered_data;
597 if (fwrite(zi->ci.buffered_data,(uInt)zi->ci.pos_in_buffered_data,1,zi->filezip)
/dports/lang/fpc-source/fpc-3.2.2/packages/paszlib/src/
H A Dzip.pas156 buffered_data: array[0..Z_BUFSIZE - 1] of byte;{ buffer contain compressed data to be written}
539 zi^.ci.stream.next_out := Pbyte(@zi^.ci.buffered_data);
589 … if fwrite(@zi^.ci.buffered_data, integer(zi^.ci.pos_in_buffered_data), 1, zi^.filezip) <> 1 then
593 zi^.ci.stream.next_out := Pbyte(@zi^.ci.buffered_data);
657 … if fwrite(@zi^.ci.buffered_data, integer(zi^.ci.pos_in_buffered_data), 1, zi^.filezip) <> 1 then
661 zi^.ci.stream.next_out := Pbyte(@zi^.ci.buffered_data);
672 if fwrite(@zi^.ci.buffered_data, integer(zi^.ci.pos_in_buffered_data), 1, zi^.filezip) <> 1 then
/dports/lang/fpc/fpc-3.2.2/packages/paszlib/src/
H A Dzip.pas156 buffered_data: array[0..Z_BUFSIZE - 1] of byte;{ buffer contain compressed data to be written}
539 zi^.ci.stream.next_out := Pbyte(@zi^.ci.buffered_data);
589 … if fwrite(@zi^.ci.buffered_data, integer(zi^.ci.pos_in_buffered_data), 1, zi^.filezip) <> 1 then
593 zi^.ci.stream.next_out := Pbyte(@zi^.ci.buffered_data);
657 … if fwrite(@zi^.ci.buffered_data, integer(zi^.ci.pos_in_buffered_data), 1, zi^.filezip) <> 1 then
661 zi^.ci.stream.next_out := Pbyte(@zi^.ci.buffered_data);
672 if fwrite(@zi^.ci.buffered_data, integer(zi^.ci.pos_in_buffered_data), 1, zi^.filezip) <> 1 then
/dports/games/libretro-hatari/hatari-561c07e/libretro/utils/unzip/
H A Dzip.c127 Byte buffered_data[Z_BUFSIZE];/* buffer contain compressed data to be writ*/ member
858 zi->ci.stream.next_out = zi->ci.buffered_data;
956 zi->ci.buffered_data[i] = zencode(zi->ci.keys, zi->ci.pcrc_32_tab,
957 zi->ci.buffered_data[i],t);
960 if (ZWRITE(zi->z_filefunc,zi->filestream,zi->ci.buffered_data,zi->ci.pos_in_buffered_data)
993 zi->ci.stream.next_out = zi->ci.buffered_data;
1058 zi->ci.stream.next_out = zi->ci.buffered_data;
/dports/biology/velvet/velvet_1.2.10/third-party/zlib-1.2.3/contrib/minizip/
H A Dzip.c127 Byte buffered_data[Z_BUFSIZE];/* buffer contain compressed data to be writ*/ member
857 zi->ci.stream.next_out = zi->ci.buffered_data;
955 zi->ci.buffered_data[i] = zencode(zi->ci.keys, zi->ci.pcrc_32_tab,
956 zi->ci.buffered_data[i],t);
959 if (ZWRITE(zi->z_filefunc,zi->filestream,zi->ci.buffered_data,zi->ci.pos_in_buffered_data)
992 zi->ci.stream.next_out = zi->ci.buffered_data;
1057 zi->ci.stream.next_out = zi->ci.buffered_data;

123456789