Searched refs:rsize (Results 1 - 25 of 63) sorted by relevance

123

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libgcrypt-1.5.0/mpi/
H A Dmpi-pow.c45 mpi_size_t esize, msize, bsize, rsize; local
165 rsize = bsize;
204 /*mpih_mul_n(xp, rp, rp, rsize);*/
205 if ( rsize < KARATSUBA_THRESHOLD )
206 _gcry_mpih_sqr_n_basecase( xp, rp, rsize );
211 tsize = 2 * rsize;
214 else if ( tsize < (2*rsize) )
217 tsize = 2 * rsize;
220 _gcry_mpih_sqr_n (xp, rp, rsize, tspace);
223 xsize = 2 * rsize;
[all...]
H A Dmpi-div.c135 mpi_size_t qsize, rsize; local
147 rsize = nsize + 1;
148 mpi_resize( rem, rsize);
150 qsize = rsize - dsize; /* qsize cannot be bigger than this. */
187 rsize = rlimb != 0?1:0;
188 rem->nlimbs = rsize;
232 rsize = nsize + 1;
235 rsize = nsize;
254 rsize = nsize;
257 q_limb = _gcry_mpih_divrem( qp, 0, rp, rsize, d
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/9p/
H A Dvfs_file.c136 int rsize = 0; local
143 rsize = v9ses->maxdata - V9FS_IOHDRSZ;
144 if (v9f->iounit != 0 && rsize > v9f->iounit)
145 rsize = v9f->iounit;
148 if (count < rsize)
149 rsize = count;
151 result = v9fs_t_read(v9ses, fid, *offset, rsize, &fcall);
175 if (result < rsize)
201 int rsize = 0; local
206 rsize
[all...]
H A Dvfs_addr.c59 int rsize = v9ses->maxdata - V9FS_IOHDRSZ; local
70 if (count < rsize)
71 rsize = count;
73 result = v9fs_t_read(v9ses, fid, offset, rsize, &fcall);
92 if (result < rsize)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/
H A Dnfsctl.c55 char *name; int wsize; int rsize; member in struct:__anon7522
80 .rsize = NFS_FHSIZE
85 .rsize = sizeof(struct knfsd_fh)
106 file = do_open(map[cmd].name, map[cmd].rsize ? O_RDWR : O_WRONLY);
110 if (err >= 0 && map[cmd].rsize)
111 err = file->f_op->read(file, res, map[cmd].rsize, &file->f_pos);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/cifs/
H A Dcifs_fs_sb.h38 unsigned int rsize; member in struct:cifs_sb_info
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/
H A Dnfs4_mount.h29 int rsize; /* 1 */ member in struct:nfs4_mount_data
H A Dnfs_mount.h31 int rsize; /* 1 */ member in struct:nfs_mount_data
H A Dnfs_fs_sb.h88 unsigned int rsize; /* read size */ member in struct:nfs_server
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/dso/
H A Ddso_dl.c254 int len, rsize, transform; local
257 rsize = len + 1;
261 rsize += strlen(extension);/* The length of ".s?" */
263 rsize += 3; /* The length of "lib" */
265 translated = OPENSSL_malloc(rsize);
H A Ddso_dlfcn.c262 int len, rsize, transform; local
265 rsize = len + 1;
270 rsize += 3; /* The length of ".so" */
272 rsize += 3; /* The length of "lib" */
274 translated = OPENSSL_malloc(rsize);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/math-emu/
H A Dop-common.h619 * 0: the number is required to be 0..(2^rsize)-1, if not, NV is set plus
620 * the result is either 0 or (2^rsize)-1 depending on the sign in such case.
621 * 1: the number is required to be -(2^(rsize-1))..(2^(rsize-1))-1, if not, NV is
622 * set plus the result is either -(2^(rsize-1)) or (2^(rsize-1))-1 depending
624 * 2: the number is required to be -(2^(rsize-1))..(2^(rsize-1))-1, if not, NV is
626 * -1: the number is required to be -(2^(rsize-1))..(2^rsize)
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/powerpc/math-emu/
H A Dop-common.h546 #define _FP_TO_INT(fs, wc, r, X, rsize, rsigned) \
557 else if (X##_e >= rsize - (rsigned != 0)) \
564 r <<= rsize - 1; \
576 if (_FP_W_TYPE_SIZE*wc < rsize) \
578 _FP_FRAC_ASSEMBLE_##wc(r, X, rsize); \
587 _FP_FRAC_ASSEMBLE_##wc(r, X, rsize); \
596 #define _FP_FROM_INT(fs, wc, X, r, rsize, rtype) \
607 if (rsize <= _FP_W_TYPE_SIZE) \
612 if (rsize < _FP_W_TYPE_SIZE) \
613 X##_e -= (_FP_W_TYPE_SIZE - rsize); \
[all...]
H A Dop-4.h243 /* Put the FP value X into r, which is an integer of size rsize. */
244 #define _FP_FRAC_ASSEMBLE_4(r, X, rsize) \
246 if (rsize <= _FP_W_TYPE_SIZE) \
248 else if (rsize <= 2*_FP_W_TYPE_SIZE) \
269 /* move an integer of size rsize into X's fractional part. We rely on
273 #define _FP_FRAC_DISASSEMBLE_4(X, r, rsize) \
276 X##_f[1] = (rsize <= _FP_W_TYPE_SIZE ? 0 : r >> _FP_W_TYPE_SIZE); \
277 X##_f[2] = (rsize <= 2*_FP_W_TYPE_SIZE ? 0 : r >> 2*_FP_W_TYPE_SIZE); \
278 X##_f[3] = (rsize <= 3*_FP_W_TYPE_SIZE ? 0 : r >> 3*_FP_W_TYPE_SIZE); \
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/nfs/
H A Dread.c136 if (NFS_SERVER(inode)->rsize < PAGE_CACHE_SIZE)
241 size_t rsize = NFS_SERVER(inode)->rsize, nbytes; local
250 size_t len = min(nbytes,rsize);
271 if (nbytes < rsize)
272 rsize = nbytes;
274 rsize, offset);
275 offset += rsize;
276 nbytes -= rsize;
549 size_t rsize local
[all...]
H A Dclient.c595 if (data->rsize)
596 server->rsize = nfs_block_size(data->rsize, NULL);
645 if (server->rsize == 0)
646 server->rsize = nfs_block_size(fsinfo->rtpref, NULL);
650 if (fsinfo->rtmax >= 512 && server->rsize > fsinfo->rtmax)
651 server->rsize = nfs_block_size(fsinfo->rtmax, NULL);
656 if (server->rsize > max_rpc_payload)
657 server->rsize = max_rpc_payload;
658 if (server->rsize > NFS_MAX_FILE_IO_SIZ
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/dso/
H A Ddso_dl.c323 int len, rsize, transform; local
326 rsize = len + 1;
330 rsize += strlen(extension);/* The length of ".s?" */
332 rsize += 3; /* The length of "lib" */
334 translated = OPENSSL_malloc(rsize);
H A Ddso_dlfcn.c338 int len, rsize, transform; local
341 rsize = len + 1;
346 rsize += 3; /* The length of ".so" */
348 rsize += 3; /* The length of "lib" */
350 translated = OPENSSL_malloc(rsize);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/archival/libunarchive/
H A Ddecompress_uncompress.c92 int rsize = 0; local
163 rsize = safe_read(fd_in, inbuf + insize, IBUFSIZ);
165 insize += rsize;
168 inbits = ((rsize > 0) ? (insize - insize % n_bits) << 3 :
290 } while (rsize > 0);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.0/etc/afpd/
H A Ddesktop.c128 u_int16_t bsize, rsize, vid; local
189 memcpy( &rsize, irh + 10, sizeof( rsize ));
190 rsize = ntohs( rsize );
198 if ( bsize != rsize )
203 if ( lseek( si.sdt_fd, (off_t) rsize, SEEK_CUR ) < 0 ) {
414 u_int16_t vid, bsize, rsize; local
466 memcpy( &rsize, ih + 10, sizeof( rsize ));
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.5/etc/afpd/
H A Ddesktop.c128 u_int16_t bsize, rsize, vid; local
189 memcpy( &rsize, irh + 10, sizeof( rsize ));
190 rsize = ntohs( rsize );
198 if ( bsize != rsize )
203 if ( lseek( si.sdt_fd, (off_t) rsize, SEEK_CUR ) < 0 ) {
414 u_int16_t vid, bsize, rsize; local
466 memcpy( &rsize, ih + 10, sizeof( rsize ));
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/smbfs/
H A Dfile.c60 unsigned int rsize = smb_get_rsize(server); local
64 VERBOSE("file %s/%s, count=%d@%Ld, rsize=%d\n",
65 DENTRY_PATH(dentry), count, offset, rsize);
72 if (count < rsize)
73 rsize = count;
75 result = server->ops->read(dentry->d_inode,offset,rsize,buffer);
84 if (result < rsize)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/char/
H A Dhvc_console.c491 int rsize, written = 0; local
506 while (count > 0 && (rsize = hp->outbuf_size - hp->n_outbuf) > 0) {
507 if (rsize > count)
508 rsize = count;
509 memcpy(hp->outbuf + hp->n_outbuf, buf, rsize);
510 count -= rsize;
511 buf += rsize;
512 hp->n_outbuf += rsize;
513 written += rsize;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/hid/usbhid/
H A Dhid-core.c640 static void hid_fixup_cymotion_descriptor(char *rdesc, int rsize) argument
642 if (rsize >= 17 && rdesc[11] == 0x3c && rdesc[12] == 0x02) {
680 static void hid_fixup_logitech_descriptor(unsigned char *rdesc, int rsize) argument
682 if (rsize >= 90 && rdesc[83] == 0x26
695 static void hid_fixup_cypress_descriptor(unsigned char *rdesc, int rsize) argument
700 for (i = 0; i < rsize - 4; i++) {
722 unsigned rsize = 0; local
755 rsize = le16_to_cpu(hdesc->desc[n].wDescriptorLength);
757 if (!rsize || rsize > HID_MAX_DESCRIPTOR_SIZ
[all...]
/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
503 nr = readn(fd, &rsize, 4);
508 if (rsize > 0) {
509 if (rec->size < rsize)
510 rec->data = realloc(rec->data, rsize);
512 nr = readn(fd, recbuf, rsize);
518 rec->size = rsize;

Completed in 226 milliseconds

123