Searched refs:CHUNK_SIZE (Results 1 - 7 of 7) sorted by relevance

/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/arch/v850/lib/
H A Dmemcpy.c17 #define CHUNK_SIZE 32 /* bytes */ macro
44 if (size >= CHUNK_SIZE && CHUNK_ALIGNED(_src) && CHUNK_ALIGNED(_dst)) {
47 for (count = size / CHUNK_SIZE; count; count--) {
49 _src += CHUNK_SIZE;
50 _dst += CHUNK_SIZE;
52 size %= CHUNK_SIZE;
72 if (size >= CHUNK_SIZE
77 for (count = size / CHUNK_SIZE; count; count--) {
78 _src -= CHUNK_SIZE;
79 _dst -= CHUNK_SIZE;
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/arch/mips/dec/prom/
H A Dmemory.c28 #define CHUNK_SIZE 0x400000 macro
40 for (memory_page = (unsigned char *)CKSEG1 + CHUNK_SIZE;
42 memory_page += CHUNK_SIZE) {
47 add_memory_region(0, (unsigned long)memory_page - CKSEG1 - CHUNK_SIZE,
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/drivers/usb/mon/
H A Dmon_bin.c54 #define CHUNK_SIZE PAGE_SIZE macro
55 #define CHUNK_ALIGN(x) (((x)+CHUNK_SIZE-1) & ~(CHUNK_SIZE-1))
157 (rp->b_vec[offset / CHUNK_SIZE].ptr + offset % CHUNK_SIZE);
187 in_page = CHUNK_SIZE - (off & (CHUNK_SIZE-1));
194 buf = this->b_vec[off / CHUNK_SIZE].ptr + off % CHUNK_SIZE;
219 in_page = CHUNK_SIZE
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/gettext-0.17/gnulib-local/lib/libxml/
H A Dxmlreader.c66 #define CHUNK_SIZE 512 macro
802 if (inbuf->use < reader->cur + CHUNK_SIZE) {
830 * parse by block of CHUNK_SIZE bytes, various tests show that
833 if (inbuf->use >= reader->cur + CHUNK_SIZE) {
836 CHUNK_SIZE, 0);
837 reader->cur += CHUNK_SIZE;
858 (inbuf->use - reader->cur <= CHUNK_SIZE)) {
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/libxml2-2.7.2/
H A Dxmlreader.c87 #define CHUNK_SIZE 512 macro
821 if (inbuf->use < reader->cur + CHUNK_SIZE) {
849 * parse by block of CHUNK_SIZE bytes, various tests show that
852 if (inbuf->use >= reader->cur + CHUNK_SIZE) {
855 CHUNK_SIZE, 0);
856 reader->cur += CHUNK_SIZE;
877 (inbuf->use - reader->cur <= CHUNK_SIZE)) {
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/libxml/
H A Dxmlreader.c66 #define CHUNK_SIZE 512 macro
802 if (inbuf->use < reader->cur + CHUNK_SIZE) {
830 * parse by block of CHUNK_SIZE bytes, various tests show that
833 if (inbuf->use >= reader->cur + CHUNK_SIZE) {
836 CHUNK_SIZE, 0);
837 reader->cur += CHUNK_SIZE;
858 (inbuf->use - reader->cur <= CHUNK_SIZE)) {
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/fs/reiserfs/
H A Djournal.c690 #define CHUNK_SIZE 32 macro
692 struct buffer_head *bh[CHUNK_SIZE];
722 BUG_ON(chunk->nr >= CHUNK_SIZE);
724 if (chunk->nr >= CHUNK_SIZE) {

Completed in 296 milliseconds