Home
last modified time | relevance | path

Searched refs:toread (Results 1 – 25 of 1551) sorted by relevance

12345678910>>...63

/dports/graphics/krita/krita-4.4.8/plugins/impex/tiff/
H A Dkis_buffer_stream.cc46 uint8 toread; in nextValue() local
47 toread = remain; in nextValue()
48 if (toread > m_posinc) toread = m_posinc; in nextValue()
49 remain -= toread; in nextValue()
67 uint8 toread; in nextValue() local
68 toread = remain; in nextValue()
69 if (toread > m_posinc) toread = m_posinc; in nextValue()
70 remain -= toread; in nextValue()
88 uint8 toread; in nextValue() local
89 toread = remain; in nextValue()
[all …]
/dports/net/wackamole/wackamole-2.1.5/
H A Dwackatrl.c97 toread = size; in get_state()
98 while(toread>0) { in get_state()
99 ret = read(fd, buffer+(size-toread), toread); in get_state()
101 toread -= ret; in get_state()
103 toread = 0; in get_state()
106 memcpy(&claim, buffer+toread, sizeof(int)); toread+=sizeof(int); in get_state()
111 toread+=IFNAMSIZ; in get_state()
114 toread+=sizeof(int); in get_state()
117 toread+=sizeof(int); in get_state()
120 toread+=sizeof(int); in get_state()
[all …]
/dports/archivers/py-lzma/pylzma-0.5.0/src/pylzma/
H A Dpylzma_streams.c45 size_t toread = *size; in MemoryInStream_Read() local
47 toread = self->avail; in MemoryInStream_Read()
50 self->data += toread; in MemoryInStream_Read()
51 self->avail -= toread; in MemoryInStream_Read()
52 *size = toread; in MemoryInStream_Read()
68 size_t toread = *size; in MemoryInOutStream_Read() local
70 toread = self->size; in MemoryInOutStream_Read()
74 memmove(self->data, self->data + toread, self->size - toread); in MemoryInOutStream_Read()
75 self->size -= toread; in MemoryInOutStream_Read()
79 *size = toread; in MemoryInOutStream_Read()
[all …]
/dports/math/librsb/librsb-1.2.0.10/
H A Drsb_ompio.c62 int index = 0, j=0, toread=0; in rsb_ompio_DOUBLE() local
71 for (j=0;j<toread;j++) in rsb_ompio_DOUBLE()
78 i += toread; in rsb_ompio_DOUBLE()
117 for (j=0;j<toread;j++) in rsb_ompio_FLOAT()
124 i += toread; in rsb_ompio_FLOAT()
163 for (j=0;j<toread;j++) in rsb_ompio_FLOAT_COMPLEX()
170 i += toread; in rsb_ompio_FLOAT_COMPLEX()
210 for (j=0;j<toread;j++) in rsb_ompio_DOUBLE_COMPLEX()
217 i += toread; in rsb_ompio_DOUBLE_COMPLEX()
257 for (j=0;j<toread;j++) in rsb_ompio_PATTERN()
[all …]
/dports/audio/xwave/xwave2-981109/src/
H A Dedit.c599 toread=af_read(af,(char*)md->mg->fbuf,toread); in paste_merge_call()
600 toread=af_write(new_af,(char*)md->mg->fbuf,toread); in paste_merge_call()
637 toread=af_write(new_af,outbuf,toread); in paste_merge_call()
660 toread=af_read(af,(char*)md->mg->fbuf,toread); in paste_merge_call()
661 toread=af_write(new_af,(char*)md->mg->fbuf,toread); in paste_merge_call()
751 toread=af_read(clip_af,(char*)md->mg->fbuf,toread); in paste_insert_call()
752 toread=af_write(new_af,(char*)md->mg->fbuf,toread); in paste_insert_call()
832 toread=af_read(af,(char*)md->mg->fbuf,toread); in paste_insert_call()
903 toread=af_read(af,(char*)md->mg->fbuf,toread); in paste_insert_call()
1278 toread=af_read(af,(char*)md->mg->fbuf,toread); in cut_call()
[all …]
/dports/net/freeswitch/freeswitch-1.10.3.-release/src/mod/endpoints/mod_gsmopen/libctb-0.16/src/
H A Diobase.cpp24 size_t toread = len; in Readv() local
32 if((n = Read(cp,toread)) < 0) { in Readv()
38 toread -= n; in Readv()
42 return(len - toread); in Readv()
53 size_t toread = len; in Readv() local
57 while(toread > 0) { in Readv()
59 return (len - toread); in Readv()
61 if((n = Read(cp,toread)) < 0) { in Readv()
62 return (len - toread); in Readv()
69 toread -= n; in Readv()
[all …]
/dports/multimedia/vlc/vlc-3.0.16/modules/demux/smooth/playlist/
H A DMemoryChunk.cpp59 block_t * MemoryChunkSource::read(size_t toread) in read() argument
66 toread = __MIN(data->i_buffer - i_read, toread); in read()
67 if(toread > 0) in read()
69 if((p_block = block_Alloc(toread))) in read()
71 memcpy(p_block->p_buffer, &data->p_buffer[i_read], toread); in read()
72 p_block->i_buffer = toread; in read()
73 i_read += toread; in read()
/dports/sysutils/syslinux/syslinux-6.03/gpxe/src/arch/i386/core/
H A Daout_loader.c19 unsigned long toread; /* remaining data to be read in the segment */ member
50 astate.toread = 0; in aout_probe()
82 if (astate.toread) { in aout_download()
83 if (astate.toread >= len - offset) { in aout_download()
87 astate.toread -= len - offset; in aout_download()
90 memcpy(phys_to_virt(astate.curaddr), data+offset, astate.toread); in aout_download()
91 offset += astate.toread; in aout_download()
92 astate.toread = 0; in aout_download()
104 astate.toread = astate.head.a_text; in aout_download()
113 astate.toread = astate.head.a_data; in aout_download()
[all …]
/dports/devel/libpciaccess/libpciaccess-0.16/src/
H A Dhurd_pci.c215 if (toread > size) in pci_device_hurd_read()
216 toread = size; in pci_device_hurd_read()
223 offset += toread; in pci_device_hurd_read()
224 data = (char*)data + toread; in pci_device_hurd_read()
225 size -= toread; in pci_device_hurd_read()
226 *bytes_read += toread; in pci_device_hurd_read()
316 size_t toread; in enum_devices() local
373 toread = sizeof(reg); in enum_devices()
378 if (toread != sizeof(reg)) in enum_devices()
388 toread = sizeof(reg); in enum_devices()
[all …]
/dports/databases/evolution-data-server/evolution-data-server-3.42.1/src/camel/
H A Dcamel-movemail.c322 toread = bytes;
324 toread = 4096;
326 toread = bytes;
344 if (toread == -1)
347 written += toread;
348 bytes -= toread;
382 toread = bytes; in camel_movemail_copy_filter()
384 toread = 4096; in camel_movemail_copy_filter()
386 toread = bytes; in camel_movemail_copy_filter()
418 if (toread == -1) in camel_movemail_copy_filter()
[all …]
/dports/devel/arm-none-eabi-gcc492/gcc-4.9.2/gcc/testsuite/gcc.dg/tree-ssa/
H A Dpr21559.c10 int toread; in foo() local
14 toread = blocksize; in foo()
17 while (toread != 0) in foo()
19 bytes = bar (toread); in foo()
26 toread -= bytes; in foo()
H A Dvrp18.c10 int toread; in foo() local
14 toread = blocksize; in foo()
17 while (toread != 0) in foo()
19 bytes = bar (toread); in foo()
26 toread -= bytes; in foo()
/dports/devel/riscv64-gcc/gcc-8.3.0/gcc/testsuite/gcc.dg/tree-ssa/
H A Dvrp18.c10 int toread; in foo() local
14 toread = blocksize; in foo()
17 while (toread != 0) in foo()
19 bytes = bar (toread); in foo()
26 toread -= bytes; in foo()
/dports/lang/gcc48/gcc-4.8.5/gcc/testsuite/gcc.dg/tree-ssa/
H A Dvrp18.c10 int toread; in foo() local
14 toread = blocksize; in foo()
17 while (toread != 0) in foo()
19 bytes = bar (toread); in foo()
26 toread -= bytes; in foo()
H A Dpr21559.c10 int toread; in foo() local
14 toread = blocksize; in foo()
17 while (toread != 0) in foo()
19 bytes = bar (toread); in foo()
26 toread -= bytes; in foo()
/dports/lang/gcc10/gcc-10.3.0/gcc/testsuite/gcc.dg/tree-ssa/
H A Dvrp18.c10 int toread; in foo() local
14 toread = blocksize; in foo()
17 while (toread != 0) in foo()
19 bytes = bar (toread); in foo()
26 toread -= bytes; in foo()
/dports/devel/arm-none-eabi-gcc/gcc-8.4.0/gcc/testsuite/gcc.dg/tree-ssa/
H A Dvrp18.c10 int toread; in foo() local
14 toread = blocksize; in foo()
17 while (toread != 0) in foo()
19 bytes = bar (toread); in foo()
26 toread -= bytes; in foo()
/dports/devel/riscv64-none-elf-gcc/gcc-8.4.0/gcc/testsuite/gcc.dg/tree-ssa/
H A Dvrp18.c10 int toread; in foo() local
14 toread = blocksize; in foo()
17 while (toread != 0) in foo()
19 bytes = bar (toread); in foo()
26 toread -= bytes; in foo()
/dports/devel/riscv32-unknown-elf-gcc/gcc-8.4.0/gcc/testsuite/gcc.dg/tree-ssa/
H A Dvrp18.c10 int toread; in foo() local
14 toread = blocksize; in foo()
17 while (toread != 0) in foo()
19 bytes = bar (toread); in foo()
26 toread -= bytes; in foo()
/dports/devel/aarch64-none-elf-gcc/gcc-8.4.0/gcc/testsuite/gcc.dg/tree-ssa/
H A Dvrp18.c10 int toread; in foo() local
14 toread = blocksize; in foo()
17 while (toread != 0) in foo()
19 bytes = bar (toread); in foo()
26 toread -= bytes; in foo()
/dports/lang/gcc9-aux/gcc-9.1.0/gcc/testsuite/gcc.dg/tree-ssa/
H A Dvrp18.c10 int toread; in foo() local
14 toread = blocksize; in foo()
17 while (toread != 0) in foo()
19 bytes = bar (toread); in foo()
26 toread -= bytes; in foo()
/dports/lang/gcc9-devel/gcc-9-20211007/gcc/testsuite/gcc.dg/tree-ssa/
H A Dvrp18.c10 int toread; in foo() local
14 toread = blocksize; in foo()
17 while (toread != 0) in foo()
19 bytes = bar (toread); in foo()
26 toread -= bytes; in foo()
/dports/lang/gcc11-devel/gcc-11-20211009/gcc/testsuite/gcc.dg/tree-ssa/
H A Dvrp18.c10 int toread; in foo() local
14 toread = blocksize; in foo()
17 while (toread != 0) in foo()
19 bytes = bar (toread); in foo()
26 toread -= bytes; in foo()
/dports/lang/gcc8/gcc-8.5.0/gcc/testsuite/gcc.dg/tree-ssa/
H A Dvrp18.c10 int toread; in foo() local
14 toread = blocksize; in foo()
17 while (toread != 0) in foo()
19 bytes = bar (toread); in foo()
26 toread -= bytes; in foo()
/dports/devel/avr-gcc/gcc-10.2.0/gcc/testsuite/gcc.dg/tree-ssa/
H A Dvrp18.c10 int toread; in foo() local
14 toread = blocksize; in foo()
17 while (toread != 0) in foo()
19 bytes = bar (toread); in foo()
26 toread -= bytes; in foo()

12345678910>>...63