Searched refs:bsize (Results 1 - 25 of 170) sorted by relevance

1234567

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/smbd/
H A Dnoquotas.c27 BOOL disk_quotas(const char *path,SMB_BIG_UINT *bsize,SMB_BIG_UINT *dfree,SMB_BIG_UINT *dsize) argument
29 (*bsize) = 512; /* This value should be ignored */
H A Ddfree.c26 static void disk_norm(BOOL small_query, SMB_BIG_UINT *bsize,SMB_BIG_UINT *dfree,SMB_BIG_UINT *dsize) argument
32 maxdisksize = ((maxdisksize*1024)/(*bsize))*1024;
40 while (*dfree > WORDMAX || *dsize > WORDMAX || *bsize < 512) {
43 *bsize *= 2;
47 if (*bsize > (WORDMAX*512)) {
48 *bsize = (WORDMAX*512);
66 SMB_BIG_UINT *bsize,SMB_BIG_UINT *dfree,SMB_BIG_UINT *dsize)
75 (*bsize) = 512;
104 *bsize = STR_TO_SMB_BIG_UINT(p, NULL);
106 *bsize
65 disk_free(const char *path, BOOL small_query, SMB_BIG_UINT *bsize,SMB_BIG_UINT *dfree,SMB_BIG_UINT *dsize) argument
169 sys_disk_free(const char *path, BOOL small_query, SMB_BIG_UINT *bsize,SMB_BIG_UINT *dfree,SMB_BIG_UINT *dsize) argument
[all...]
H A Dntquotas.c26 static SMB_BIG_UINT limit_nt2unix(SMB_BIG_UINT in, SMB_BIG_UINT bsize) argument
30 ret = (SMB_BIG_UINT)(in/bsize);
46 static SMB_BIG_UINT limit_unix2nt(SMB_BIG_UINT in, SMB_BIG_UINT bsize) argument
50 ret = (SMB_BIG_UINT)(in*bsize);
104 qt->usedspace = (SMB_BIG_UINT)D.curblocks*D.bsize;
105 qt->softlim = limit_unix2nt(D.softlimit, D.bsize);
106 qt->hardlim = limit_unix2nt(D.hardlimit, D.bsize);
125 D.bsize = (SMB_BIG_UINT)QUOTABLOCK_SIZE;
127 D.softlimit = limit_nt2unix(qt->softlim,D.bsize);
128 D.hardlimit = limit_nt2unix(qt->hardlim,D.bsize);
[all...]
H A Dquotas.c49 BOOL disk_quotas_vxfs(const pstring name, char *path, SMB_BIG_UINT *bsize, SMB_BIG_UINT *dfree, SMB_BIG_UINT *dsize);
68 SMB_BIG_UINT bsize; member in struct:_LINUX_SMB_DISK_QUOTA
69 SMB_BIG_UINT hardlimit; /* In bsize units. */
70 SMB_BIG_UINT softlimit; /* In bsize units. */
71 SMB_BIG_UINT curblocks; /* In bsize units. */
96 dp->bsize = (SMB_BIG_UINT)512;
126 dp->bsize = (SMB_BIG_UINT)QUOTABLOCK_SIZE;
152 dp->bsize = (SMB_BIG_UINT)QUOTABLOCK_SIZE;
158 dp->curblocks = ((SMB_BIG_UINT)D.dqb_curspace) / dp->bsize;
182 dp->bsize
197 disk_quotas(const char *path, SMB_BIG_UINT *bsize, SMB_BIG_UINT *dfree, SMB_BIG_UINT *dsize) argument
295 disk_quotas(const char *path, SMB_BIG_UINT *bsize, SMB_BIG_UINT *dfree, SMB_BIG_UINT *dsize) argument
456 nfs_quotas(char *nfspath, uid_t euser_id, SMB_BIG_UINT *bsize, SMB_BIG_UINT *dfree, SMB_BIG_UINT *dsize) argument
576 disk_quotas(const char *path, SMB_BIG_UINT *bsize, SMB_BIG_UINT *dfree, SMB_BIG_UINT *dsize) argument
736 disk_quotas(const char *path, SMB_BIG_UINT *bsize, SMB_BIG_UINT *dfree, SMB_BIG_UINT *dsize) argument
802 disk_quotas(const char *path, SMB_BIG_UINT *bsize, SMB_BIG_UINT *dfree, SMB_BIG_UINT *dsize) argument
987 nfs_quotas(char *nfspath, uid_t euser_id, SMB_BIG_UINT *bsize, SMB_BIG_UINT *dfree, SMB_BIG_UINT *dsize) argument
1112 disk_quotas(const char *path, SMB_BIG_UINT *bsize, SMB_BIG_UINT *dfree, SMB_BIG_UINT *dsize) argument
1303 disk_quotas_vxfs(const pstring name, char *path, SMB_BIG_UINT *bsize, SMB_BIG_UINT *dfree, SMB_BIG_UINT *dsize) argument
1384 disk_quotas(const char *path,SMB_BIG_UINT *bsize,SMB_BIG_UINT *dfree,SMB_BIG_UINT *dsize) argument
1402 disk_quotas(const char *path,SMB_BIG_UINT *bsize,SMB_BIG_UINT *dfree,SMB_BIG_UINT *dsize) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/crypto/
H A Dpcbc.c54 int bsize = crypto_cipher_blocksize(tfm); local
61 xor(iv, src, bsize);
63 memcpy(iv, dst, bsize);
64 xor(iv, src, bsize);
66 src += bsize;
67 dst += bsize;
68 } while ((nbytes -= bsize) >= bsize);
81 int bsize = crypto_cipher_blocksize(tfm); local
85 u8 tmpbuf[bsize];
137 int bsize = crypto_cipher_blocksize(tfm); local
166 int bsize = crypto_cipher_blocksize(tfm); local
[all...]
H A Dcbc.c50 int bsize = crypto_cipher_blocksize(tfm); local
57 xor(iv, src, bsize);
59 memcpy(iv, dst, bsize);
61 src += bsize;
62 dst += bsize;
63 } while ((nbytes -= bsize) >= bsize);
76 int bsize = crypto_cipher_blocksize(tfm); local
82 xor(src, iv, bsize);
86 src += bsize;
129 int bsize = crypto_cipher_blocksize(tfm); local
157 int bsize = crypto_cipher_blocksize(tfm); local
[all...]
H A Dblkcipher.c71 unsigned int bsize)
77 addr = blkcipher_get_spot(addr, bsize);
78 scatterwalk_copychunks(addr, &walk->out, bsize, 1);
79 return bsize;
110 unsigned int bsize = crypto_blkcipher_blocksize(tfm); local
116 n = blkcipher_done_slow(tfm, walk, bsize);
146 unsigned int bsize,
158 n = bsize * 2 + (alignmask & ~(crypto_tfm_ctx_alignment() - 1));
166 walk->dst.virt.addr = blkcipher_get_spot(walk->dst.virt.addr, bsize);
167 walk->src.virt.addr = blkcipher_get_spot(walk->dst.virt.addr + bsize,
69 blkcipher_done_slow(struct crypto_blkcipher *tfm, struct blkcipher_walk *walk, unsigned int bsize) argument
144 blkcipher_next_slow(struct blkcipher_desc *desc, struct blkcipher_walk *walk, unsigned int bsize, unsigned int alignmask) argument
224 unsigned int bsize = crypto_blkcipher_blocksize(tfm); local
[all...]
/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
103 bsize = base->nlimbs;
105 if (bsize > msize)
110 (The quotient is (bsize - msize + 1) limbs.) */
111 bp_nlimbs = bsec ? (bsize + 1):0;
112 bp = bp_marker = mpi_alloc_limb_space( bsize + 1, bsec );
113 MPN_COPY ( bp, base->d, bsize );
116 _gcry_mpih_divrem( bp + msize, 0, bp, bsize, mp, msize );
117 bsize = msize;
120 MPN_NORMALIZE( bp, bsize );
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/nfs/
H A Dinternal.h161 unsigned long nfs_block_bits(unsigned long bsize, unsigned char *nrbitsp) argument
164 if ((bsize & (bsize - 1)) || nrbitsp) {
167 for (nrbits = 31; nrbits && !(bsize & (1 << nrbits)); nrbits--)
169 bsize = 1 << nrbits;
174 return bsize;
190 unsigned long nfs_block_size(unsigned long bsize, unsigned char *nrbitsp) argument
192 if (bsize < NFS_MIN_FILE_IO_SIZE)
193 bsize = NFS_DEF_FILE_IO_SIZE;
194 else if (bsize >
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/lib/
H A Dsysquotas_linux.c39 SMB_BIG_UINT bsize = (SMB_BIG_UINT)QUOTABLOCK_SIZE; local
85 dp->bsize = bsize;
108 SMB_BIG_UINT bsize = (SMB_BIG_UINT)QUOTABLOCK_SIZE; local
112 if (bsize == dp->bsize) {
118 D.dqb_bsoftlimit = (dp->softlimit*dp->bsize)/bsize;
119 D.dqb_bhardlimit = (dp->hardlimit*dp->bsize)/bsize;
173 SMB_BIG_UINT bsize = (SMB_BIG_UINT)QUOTABLOCK_SIZE; local
242 SMB_BIG_UINT bsize = (SMB_BIG_UINT)QUOTABLOCK_SIZE; local
307 SMB_BIG_UINT bsize = (SMB_BIG_UINT)QUOTABLOCK_SIZE; local
376 SMB_BIG_UINT bsize = (SMB_BIG_UINT)QUOTABLOCK_SIZE; local
[all...]
H A Dsysquotas_4A.c87 SMB_BIG_UINT bsize = (SMB_BIG_UINT)QUOTABLOCK_SIZE; local
159 dp->bsize = bsize;
182 SMB_BIG_UINT bsize = (SMB_BIG_UINT)QUOTABLOCK_SIZE; local
186 if (bsize == dp->bsize) {
192 D.dqb_bsoftlimit = (dp->softlimit*dp->bsize)/bsize;
193 D.dqb_bhardlimit = (dp->hardlimit*dp->bsize)/bsize;
[all...]
H A Dsysquotas_xfs.c78 SMB_BIG_UINT bsize = (SMB_BIG_UINT)BBSIZE; local
146 dp->bsize = bsize;
165 SMB_BIG_UINT bsize = (SMB_BIG_UINT)BBSIZE; local
176 if (bsize == dp->bsize) {
182 D.d_blk_softlimit = (dp->softlimit*dp->bsize)/bsize;
183 D.d_blk_hardlimit = (dp->hardlimit*dp->bsize)/bsize;
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/freevxfs/
H A Dvxfs_olt.c57 vxfs_oblock(struct super_block *sbp, daddr_t block, u_long bsize) argument
59 BUG_ON(sbp->s_blocksize % bsize);
60 return (block * (sbp->s_blocksize / bsize));
67 * @bsize: blocksize of the filesystem
77 vxfs_read_olt(struct super_block *sbp, u_long bsize) argument
85 bp = sb_bread(sbp, vxfs_oblock(sbp, infp->vsi_oltext, bsize));
H A Dvxfs_lookup.c73 u_long bsize = ip->i_sb->s_blocksize; local
74 return (ip->i_size + bsize - 1) & ~(bsize - 1);
116 u_long bsize = ip->i_sb->s_blocksize; local
138 baddr = kaddr + (block * bsize);
139 limit = baddr + bsize - VXFS_DIRLEN(1);
245 u_long bsize = sbp->s_blocksize; local
293 baddr = kaddr + (block * bsize);
294 limit = baddr + bsize - VXFS_DIRLEN(1);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/udev/extras/volume_id/lib/
H A Dext.c76 size_t bsize; local
87 bsize = 0x400 << le32_to_cpu(es->s_log_block_size);
88 dbg("ext blocksize 0x%zx", bsize);
89 if (bsize < EXT3_MIN_BLOCK_SIZE || bsize > EXT3_MAX_BLOCK_SIZE) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/
H A Dwmadec.c301 int block_len, bsize, n; local
306 bsize = s->frame_len_bits - s->block_len_bits;
308 s->dsp.vector_fmul_add_add(out, in, s->windows[bsize],
314 bsize = s->frame_len_bits - s->prev_block_len_bits;
316 s->dsp.vector_fmul_add_add(out+n, in+n, s->windows[bsize],
328 bsize = s->frame_len_bits - s->block_len_bits;
330 s->dsp.vector_fmul_reverse(out, in, s->windows[bsize], block_len);
335 bsize = s->frame_len_bits - s->next_block_len_bits;
339 s->dsp.vector_fmul_reverse(out+n, in+n, s->windows[bsize], block_len);
352 int n, v, a, ch, code, bsize; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/demos/
H A Db64.c84 int bsize=BSIZE,verbose=0; local
174 bsize=(int)n;
175 if (verbose) BIO_printf(bio_err,"bufsize=%d\n",bsize);
179 buff=(unsigned char *)OPENSSL_malloc(EVP_ENCODE_LENGTH(bsize));
243 inl=BIO_read(rbio,(char *)buff,bsize);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/demos/
H A Db64.c84 int bsize=BSIZE,verbose=0; local
174 bsize=(int)n;
175 if (verbose) BIO_printf(bio_err,"bufsize=%d\n",bsize);
179 buff=(unsigned char *)OPENSSL_malloc(EVP_ENCODE_LENGTH(bsize));
243 inl=BIO_read(rbio,(char *)buff,bsize);
/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
153 memcpy( &bsize, ibuf, sizeof( bsize ));
154 bsize = ntohs( bsize );
185 bsize = htons( bsize );
186 memcpy( p, &bsize, sizeof( bsize ));
187 bsize
341 u_int16_t vid, iindex, bsize; local
414 u_int16_t vid, bsize, rsize; local
[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
153 memcpy( &bsize, ibuf, sizeof( bsize ));
154 bsize = ntohs( bsize );
185 bsize = htons( bsize );
186 memcpy( p, &bsize, sizeof( bsize ));
187 bsize
341 u_int16_t vid, iindex, bsize; local
414 u_int16_t vid, bsize, rsize; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/jfs/
H A Djfs_mount.c311 s32 bsize; local
327 bsize = le32_to_cpu(j_sb->s_bsize);
329 if (bsize != PSIZE) {
344 AIM_bytesize = lengthPXD(&(j_sb->s_aim2)) * bsize;
346 AIT_bytesize = lengthPXD(&(j_sb->s_ait2)) * bsize;
347 AIM_byte_addr = addressPXD(&(j_sb->s_aim2)) * bsize;
348 AIT_byte_addr = addressPXD(&(j_sb->s_ait2)) * bsize;
350 fsckwsp_addr = addressPXD(&(j_sb->s_fsckpxd)) * bsize;
378 sbi->bsize = bsize;
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/affs/
H A Dfile.c484 u32 bidx, boff, bsize; local
492 bsize = AFFS_SB(sb)->s_data_blksize;
494 bidx = tmp / bsize;
495 boff = tmp % bsize;
501 tmp = min(bsize - boff, to - from);
502 if (from + tmp > to || tmp > bsize)
521 u32 size, bsize; local
525 bsize = AFFS_SB(sb)->s_data_blksize;
528 bidx = size / bsize;
529 boff = size % bsize;
649 u32 bidx, boff, bsize; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/scripts/
H A Dcheckstack.pl88 my ($asize, $bsize);
90 ($bsize = $b) =~ s/.*: *(.*)$/$1/;
91 $bsize <=> $asize
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/scripts/
H A Dcheckstack.pl83 my ($asize, $bsize);
85 ($bsize = $b) =~ s/.*: *(.*)$/$1/;
86 $bsize <=> $asize
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/include/
H A Dsysquotas.h62 SMB_BIG_UINT bsize; member in struct:_SMB_DISK_QUOTA
63 SMB_BIG_UINT hardlimit; /* In bsize units. */
64 SMB_BIG_UINT softlimit; /* In bsize units. */
65 SMB_BIG_UINT curblocks; /* In bsize units. */

Completed in 248 milliseconds

1234567