Searched refs:csize (Results 1 - 25 of 51) sorted by relevance

123

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/ia64/kernel/
H A Dcrash_dump.c20 * @csize: number of bytes to copy
34 size_t csize, unsigned long offset, int userbuf)
38 if (!csize)
42 if (copy_to_user(buf, (vaddr + offset), csize)) {
46 memcpy(buf, (vaddr + offset), csize);
47 return csize;
33 copy_oldmem_page(unsigned long pfn, char *buf, size_t csize, unsigned long offset, int userbuf) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/sh/kernel/
H A Dcrash_dump.c18 * @csize: number of bytes to copy
27 size_t csize, unsigned long offset, int userbuf)
31 if (!csize)
37 if (copy_to_user(buf, (vaddr + offset), csize)) {
42 memcpy(buf, (vaddr + offset), csize);
45 return csize;
26 copy_oldmem_page(unsigned long pfn, char *buf, size_t csize, unsigned long offset, int userbuf) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/x86_64/kernel/
H A Dcrash_dump.c19 * @csize: number of bytes to copy
28 size_t csize, unsigned long offset, int userbuf)
32 if (!csize)
38 if (copy_to_user(buf, (vaddr + offset), csize)) {
43 memcpy(buf, (vaddr + offset), csize);
46 return csize;
27 copy_oldmem_page(unsigned long pfn, char *buf, size_t csize, unsigned long offset, int userbuf) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/i386/kernel/
H A Dcrash_dump.c21 * @csize: number of bytes to copy
34 size_t csize, unsigned long offset, int userbuf)
38 if (!csize)
44 memcpy(buf, (vaddr + offset), csize);
54 if (copy_to_user(buf, (kdump_buf_page + offset), csize))
58 return csize;
33 copy_oldmem_page(unsigned long pfn, char *buf, size_t csize, unsigned long offset, int userbuf) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/powerpc/kernel/
H A Dcrash_dump.c88 * @csize: number of bytes to copy
97 size_t csize, unsigned long offset, int userbuf)
101 if (!csize)
107 if (copy_to_user((char __user *)buf, (vaddr + offset), csize)) {
112 memcpy(buf, (vaddr + offset), csize);
115 return csize;
96 copy_oldmem_page(unsigned long pfn, char *buf, size_t csize, unsigned long offset, int userbuf) argument
H A Dof_device.c128 ssize_t tsize, csize, repend; local
131 csize = snprintf(str, len, "of:N%sT%s",
137 return csize;
143 return csize;
147 tsize = csize + cplen;
150 if (csize>=len) /* @ the limit, all is already filled */
154 cplen = len-csize-1;
159 memcpy(&str[csize+1], compat, cplen);
160 for (i=csize; i<repend; i++) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/test/
H A Dtest109.tcl110 foreach csize $cachesizes {
113 -cachesize $csize, $inc, no wrap."
115 $min $max $init $inc $csize
130 set csize 1
134 $min $max $init $inc $csize $wrap
142 foreach csize $cachesizes {
143 puts "\tTest$tnum.f: Test -cachesize $csize with wrap."
145 $min $max $init $inc $csize $wrap
149 foreach csize $cachesizes {
151 Test multiple handles (-cachesize $csize) wit
[all...]
H A Dsdb016.tcl48 set csize {0 16777216 1}
50 -cachesize $csize -home $testdir -mode 0644 -txn]
H A Dsdb019.tcl44 set csize "0 262144 1"
51 set csize "0 $cache 1"
57 set env [eval berkdb_env -create {-cachesize $csize} \
H A Dsdb013.tcl48 set csize {0 65536 1}
55 set csize "0 $cache 1"
59 set env [berkdb_env_noerr -create -cachesize $csize -home $testdir -txn]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/isofs/
H A Dcompress.c49 unsigned long blockptr, blockendptr, cstart, cend, csize; local
134 csize = cend-cstart;
136 if (csize > deflateBound(1UL << zisofs_block_shift))
144 if ( csize == 0 ) {
166 int needblocks = (csize + (cstart & bufmask) + bufmask) >> bufshift;
188 printk(KERN_DEBUG "zisofs: Hit null buffer, fpage = %d, xpage = %d, csize = %ld\n",
189 fpage, xpage, csize);
193 stream.avail_in = min(bufsize-(cstart & bufmask), csize);
194 csize -= stream.avail_in;
219 if ( !csize ) {
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/jffs2/
H A Dread.c50 D1(printk(KERN_DEBUG "Node read from %08x: node_crc %08x, calculated CRC %08x. dsize %x, csize %x, offset %x, buf %p\n",
52 crc, je32_to_cpu(ri->dsize), je32_to_cpu(ri->csize),
60 /* There was a bug where we wrote hole nodes out with csize/dsize
63 je32_to_cpu(ri->csize)) {
64 ri->dsize = ri->csize;
65 ri->csize = cpu_to_je32(0);
90 readbuf = kmalloc(je32_to_cpu(ri->csize), GFP_KERNEL);
110 D2(printk(KERN_DEBUG "Read %d bytes to %p\n", je32_to_cpu(ri->csize),
113 je32_to_cpu(ri->csize), &readlen, readbuf);
115 if (!ret && readlen != je32_to_cpu(ri->csize))
[all...]
H A Dreadinode.c38 BUG_ON(tn->csize == 0);
49 if (len >= tn->csize) {
51 ref_offset(ref), tn->csize, ofs);
56 len = tn->csize - len;
59 ref_offset(ref), tn->csize, tn->partial_crc, tn->data_crc, ofs - len, ofs, len);
66 if (!err && retlen < tn->csize) {
67 JFFS2_WARNING("MTD point returned len too short: %zu instead of %u.\n", retlen, tn->csize);
688 uint32_t len, csize; local
710 csize = je32_to_cpu(rd->csize);
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/
H A Dlzw.h46 int ff_lzw_decode_init(LZWState *s, int csize, const uint8_t *buf, int buf_size, int mode);
H A Dtarga.c102 int first_clr, colors, csize; local
110 csize = *buf++;
174 if(csize != 24){
175 av_log(avctx, AV_LOG_ERROR, "Palette entry size %i bits is not supported\n", csize);
179 buf += colors * ((csize + 1) >> 3);
H A Dlzw.c125 * @param csize initial code size in bits
130 int ff_lzw_decode_init(LZWState *p, int csize, const uint8_t *buf, int buf_size, int mode) argument
134 if(csize < 1 || csize >= LZW_MAXBITS)
144 s->codesize = csize;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/flex/
H A Dccl.c127 for ( i = 0; i < csize; ++i )
137 while ( ++i < csize && cset[i] )
H A Dmain.c59 int C_plus_plus, long_align, use_read, yytext_is_array, do_yywrap, csize; variable
201 if ( csize == unspecified )
204 csize = DEFAULT_CSIZE;
206 csize = CSIZE;
250 /* We loop all the way up to csize, since ecgroup[csize] is
255 for ( i = 2; i <= csize; ++i )
261 nextecm[csize] = NIL;
267 for ( i = 1; i <= csize; ++i )
443 if ( csize
[all...]
H A Dparse.y93 for ( c = 0; c < csize; ++c ) \
626 ecgroup, csize, csize );
647 nextecm, ecgroup, csize, csize );
H A Ddfa.c205 for ( i = 0; i < csize; ++i )
216 for ( i = 0; i < csize; ++i )
427 for ( i = 0; i <= csize; ++i )
481 int use_NUL_table = (numecs == csize);
490 for ( power_of_two = 1; power_of_two <= csize;
1040 if ( tch < -lastccl || tch >= csize )
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/m68k/atari/
H A Ddebug.c176 int csize = ((cflag & CSIZE) == CS7) ? 0x20 : 0x00; local
185 mfp.usart_ctr = parity | csize | 0x88; /* 1:16 clk mode, 1 stop bit */
284 int csize = ((cflag & CSIZE) == CS8) ? 0x10 : 0x00; local
301 acia.mid_ctrl = div | csize | parity |
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/examples_c/ex_rep/base/
H A Drep_net.c490 u_int32_t rsize, csize; local
521 nr = readn(fd, &csize, 4);
526 if (csize > 0) {
528 if (control->size < csize)
529 controlbuf = realloc(controlbuf, csize);
530 nr = readn(fd, controlbuf, csize);
531 if (nr != csize)
539 control->size = csize;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/char/
H A Dmem.c320 size_t read = 0, csize; local
330 csize = PAGE_SIZE - offset;
332 csize = count;
334 rc = copy_oldmem_page(pfn, buf, csize, offset, 1);
337 buf += csize;
338 *ppos += csize;
339 read += csize;
340 count -= csize;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/flex/MISC/
H A Dparse.c95 for ( c = 0; c < csize; ++c ) \
1204 ecgroup, csize, csize );
1226 nextecm, ecgroup, csize, csize );
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/md/
H A Dbitmap.c1114 sector_t csize; local
1117 csize = ((sector_t)1) << (CHUNK_BLOCK_SHIFT(bitmap));
1118 *blocks = csize - (offset & (csize- 1));
1127 csize = ((sector_t)1) << (CHUNK_BLOCK_SHIFT(bitmap) +
1129 *blocks = csize - (offset & (csize- 1));
1133 csize = ((sector_t)1) << (CHUNK_BLOCK_SHIFT(bitmap));
1134 *blocks = csize - (offset & (csize
[all...]

Completed in 251 milliseconds

123