Home
last modified time | relevance | path

Searched refs:toc_size (Results 1 – 25 of 64) sorted by relevance

123

/dports/mail/qpopper/qpopper4.1.0/popper/
H A Dpop_cache.c67 long toc_size; /* bytes in allocated MsgInfoList */ member
106 long toc_size = p->msg_count * sizeof ( MsgInfoList ); in cache_write() local
200 toc_size = new_size; in cache_write()
219 header.toc_size = toc_size; in cache_write()
225 rslt = write ( cache_fd, mp, header.toc_size ); in cache_write()
226 if ( rslt < header.toc_size ) { in cache_write()
250 cache_name, header.msg_count, header.toc_size, in cache_write()
391 str_size = header.toc_size + sizeof ( MsgInfoList ); in cache_read()
402 rslt = read ( cache_fd, mp_buf, header.toc_size ); in cache_read()
403 if ( rslt < header.toc_size ) { in cache_read()
[all …]
/dports/graphics/libgphoto2/libgphoto2-2.5.26/camlibs/enigma13/
H A Denigma13.c182 int toc_size = 0; in enigma13_get_toc() local
195 toc_size = (response) * 0x20; in enigma13_get_toc()
197 if (toc_size % 0x200 != 0) in enigma13_get_toc()
198 toc_size = ((toc_size / 0x200) + 1) * 0x200; in enigma13_get_toc()
219 flash_toc = (char*)malloc(toc_size); in enigma13_get_toc()
223 ret=gp_port_read (camera->port, flash_toc, toc_size); in enigma13_get_toc()
/dports/lang/ocaml/ocaml-4.05.0/byterun/
H A Dstartup.c132 int toc_size, i; in caml_read_section_descriptors() local
134 toc_size = trail->num_sections * 8; in caml_read_section_descriptors()
135 trail->section = caml_stat_alloc(toc_size); in caml_read_section_descriptors()
136 lseek(fd, - (long) (TRAILER_SIZE + toc_size), SEEK_END); in caml_read_section_descriptors()
137 if (read(fd, (char *) trail->section, toc_size) != toc_size) in caml_read_section_descriptors()
/dports/lang/ocaml-nox11/ocaml-4.05.0/byterun/
H A Dstartup.c132 int toc_size, i; in caml_read_section_descriptors() local
134 toc_size = trail->num_sections * 8; in caml_read_section_descriptors()
135 trail->section = caml_stat_alloc(toc_size); in caml_read_section_descriptors()
136 lseek(fd, - (long) (TRAILER_SIZE + toc_size), SEEK_END); in caml_read_section_descriptors()
137 if (read(fd, (char *) trail->section, toc_size) != toc_size) in caml_read_section_descriptors()
/dports/devel/sdl12/SDL-1.2.15/src/cdrom/bsdi/
H A DSDL_syscdrom.c347 int i, sts, first_track, last_track, ntracks, toc_size; in SDL_SYS_CDGetTOC() local
360 toc_size = 4 + (ntracks + 1) * 8; in SDL_SYS_CDGetTOC()
361 toc = (u_char *)SDL_malloc(toc_size); in SDL_SYS_CDGetTOC()
368 cdb[7] = toc_size >> 8; in SDL_SYS_CDGetTOC()
369 cdb[8] = toc_size & 0xff; in SDL_SYS_CDGetTOC()
370 sts = scsi_cmd(cdrom->id, (cdb_t *)cdb, 10, SUC_READ, toc, toc_size, in SDL_SYS_CDGetTOC()
/dports/graphics/libgphoto2/libgphoto2-2.5.26/camlibs/spca50x/
H A Dspca50x-flash.c124 int toc_size = 0; in spca50x_flash_get_TOC() local
143 toc_size = 0x100; /* always 256 for the dsc-350 cams */ in spca50x_flash_get_TOC()
176 toc_size = n_toc_entries * 32; in spca50x_flash_get_TOC()
179 if (toc_size % 512 != 0) in spca50x_flash_get_TOC()
180 toc_size = ((toc_size / 512) + 1) * 512; in spca50x_flash_get_TOC()
184 pl->flash_toc = malloc(toc_size); in spca50x_flash_get_TOC()
192 CHECK (gp_port_read (pl->gpdev, (char *)pl->flash_toc, toc_size)); in spca50x_flash_get_TOC()
204 CHECK (gp_port_read (pl->gpdev, (char *)pl->flash_toc, toc_size)); in spca50x_flash_get_TOC()
/dports/multimedia/handbrake/ffmpeg-4.4/libavformat/
H A Daadec.c75 uint32_t toc_size, npairs, header_seed = 0, start; in aa_read_header() local
93 toc_size = avio_rb32(pb); // TOC size in aa_read_header()
95 if (toc_size > MAX_TOC_ENTRIES || toc_size < 2) in aa_read_header()
97 for (i = 0; i < toc_size; i++) { // read TOC in aa_read_header()
208 for (i = 1; i < toc_size; i++) { // skip the first entry! in aa_read_header()
/dports/multimedia/ffmpeg/ffmpeg-4.4.1/libavformat/
H A Daadec.c75 uint32_t toc_size, npairs, header_seed = 0, start; in aa_read_header() local
93 toc_size = avio_rb32(pb); // TOC size in aa_read_header()
95 if (toc_size > MAX_TOC_ENTRIES || toc_size < 2) in aa_read_header()
97 for (i = 0; i < toc_size; i++) { // read TOC in aa_read_header()
208 for (i = 1; i < toc_size; i++) { // skip the first entry! in aa_read_header()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/ffmpeg/libavformat/
H A Daadec.c75 uint32_t nkey, nval, toc_size, npairs, header_seed = 0, start; in aa_read_header() local
93 toc_size = avio_rb32(pb); // TOC size in aa_read_header()
95 if (toc_size > MAX_TOC_ENTRIES || toc_size < 2) in aa_read_header()
97 for (i = 0; i < toc_size; i++) { // read TOC in aa_read_header()
207 for (i = 1; i < toc_size; i++) { // skip the first entry! in aa_read_header()
/dports/biology/sra-tools/sra-tools-2.11.0/tools/kar/
H A Dkar+.c477 void kar_write_header_v1 ( KARArchiveFile * af, uint64_t toc_size ) in kar_write_header_v1() argument
775 size_t toc_size = 0; in kar_eval_toc_size() local
785 return toc_size; in kar_eval_toc_size()
792 size_t toc_size = 0; in kar_write_toc() local
1168 uint64_t i, toc_size; in kar_make() local
1171 toc_size = kar_eval_toc_size ( kar_dir ); in kar_make()
1178 kar_write_header_v1 ( & af, toc_size ); in kar_make()
1653 buffer = malloc ( toc_size ); in kar_extract_toc()
1670 if ( num_read < toc_size ) in kar_extract_toc()
2069 uint64_t toc_pos, toc_size, file_offset; in kar_test_extract() local
[all …]
H A Dkar.c790 void kar_write_header_v1 ( KARArchiveFile * af, uint64_t toc_size ) in kar_write_header_v1() argument
1081 size_t toc_size = 0; in kar_eval_toc_size() local
1091 return toc_size; in kar_eval_toc_size()
1098 size_t toc_size = 0; in kar_write_toc() local
1289 uint64_t i, toc_size; in kar_make() local
1292 toc_size = kar_eval_toc_size ( tree ); in kar_make()
1299 kar_write_header_v1 ( & af, toc_size ); in kar_make()
1779 buffer = malloc ( toc_size ); in kar_extract_toc()
1796 if ( num_read < toc_size ) in kar_extract_toc()
2309 uint64_t toc_pos, toc_size, file_offset; in kar_test_extract() local
[all …]
/dports/multimedia/gstreamer1-libav/gst-libav-1.16.2/gst-libs/ext/libav/libavformat/
H A Daadec.c75 uint32_t nkey, nval, toc_size, npairs, header_seed = 0, start; in aa_read_header() local
92 toc_size = avio_rb32(pb); // TOC size in aa_read_header()
94 if (toc_size > MAX_TOC_ENTRIES) in aa_read_header()
96 for (i = 0; i < toc_size; i++) { // read TOC in aa_read_header()
202 for (i = 1; i < toc_size; i++) { // skip the first entry! in aa_read_header()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/ffmpeg/libavformat/
H A Daadec.c75 uint32_t nkey, nval, toc_size, npairs, header_seed = 0, start; in aa_read_header() local
93 toc_size = avio_rb32(pb); // TOC size in aa_read_header()
95 if (toc_size > MAX_TOC_ENTRIES) in aa_read_header()
97 for (i = 0; i < toc_size; i++) { // read TOC in aa_read_header()
207 for (i = 1; i < toc_size; i++) { // skip the first entry! in aa_read_header()
/dports/audio/py-mutagen/mutagen-1.42.0/mutagen/mp3/
H A D_util.py505 toc_size = toc_entry_size * toc_num_entries
506 toc_data = fileobj.read(toc_size)
507 if len(toc_data) != toc_size:
518 self.toc = [unpack(i)[0] for i in xrange(0, toc_size, toc_entry_size)]
/dports/multimedia/libv4l/linux-5.13-rc2/drivers/gpu/drm/amd/amdgpu/
H A Dpsp_gfx_if.h297 uint32_t toc_size; /* FW buffer size in bytes */ member
/dports/multimedia/v4l-utils/linux-5.13-rc2/drivers/gpu/drm/amd/amdgpu/
H A Dpsp_gfx_if.h297 uint32_t toc_size; /* FW buffer size in bytes */ member
/dports/multimedia/v4l_compat/linux-5.13-rc2/drivers/gpu/drm/amd/amdgpu/
H A Dpsp_gfx_if.h297 uint32_t toc_size; /* FW buffer size in bytes */ member
/dports/emulators/qemu/qemu-6.2.0/contrib/elf2dmp/
H A Dpdb.h31 uint32_t toc_size; member
/dports/emulators/qemu42/qemu-4.2.1/contrib/elf2dmp/
H A Dpdb.h31 uint32_t toc_size; member
/dports/emulators/qemu60/qemu-6.0.0/contrib/elf2dmp/
H A Dpdb.h31 uint32_t toc_size; member
/dports/emulators/qemu-utils/qemu-4.2.1/contrib/elf2dmp/
H A Dpdb.h31 uint32_t toc_size; member
/dports/emulators/qemu-powernv/qemu-powernv-3.0.50/contrib/elf2dmp/
H A Dpdb.h31 uint32_t toc_size; member
/dports/emulators/qemu5/qemu-5.2.0/contrib/elf2dmp/
H A Dpdb.h31 uint32_t toc_size; member
/dports/emulators/qemu-cheri/qemu-0a323821042c36e21ea80e58b9545dfc3b0cb8ef/contrib/elf2dmp/
H A Dpdb.h31 uint32_t toc_size; member
/dports/emulators/qemu-guest-agent/qemu-5.0.1/contrib/elf2dmp/
H A Dpdb.h31 uint32_t toc_size; member

123