Searched refs:bsize (Results 26 - 50 of 234) sorted by relevance

12345678910

/netgear-R7000-V1.0.7.12_1.2.5/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...]
H A Dquota.c99 int uquota_getvolspace( struct vol *vol, VolSpace *bfree, VolSpace *btotal, const u_int32_t bsize) argument
296 dqb->bsize = (u_int64_t)512;
334 dqb->bsize = DEV_QBSIZE;
352 dqb->bsize = DEV_QBSIZE;
370 dqb->bsize = DEV_QBSIZE;
636 static int getquota( struct vol *vol, struct dqblk *dq, const u_int32_t bsize) argument
697 result = getnfsquota(vol, uuid, bsize, dq);
708 return getnfsquota(vol, uuid, bsize, dq);
714 return vol->v_nfs ? getnfsquota(vol, uuid, bsize, dq) :
774 int uquota_getvolspace( struct vol *vol, VolSpace *bfree, VolSpace *btotal, const u_int32_t bsize) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/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-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/affs/
H A Dfile.c502 u32 bidx, boff, bsize; local
509 bsize = AFFS_SB(sb)->s_data_blksize;
511 bidx = tmp / bsize;
512 boff = tmp % bsize;
518 tmp = min(bsize - boff, to - from);
519 BUG_ON(from + tmp > to || tmp > bsize);
537 u32 size, bsize; local
541 bsize = AFFS_SB(sb)->s_data_blksize;
544 bidx = size / bsize;
545 boff = size % bsize;
661 u32 bidx, boff, bsize; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/rtl8192u/ieee80211/
H A Dcipher.c55 const unsigned int bsize = crypto_tfm_alg_blocksize(tfm); local
56 u8 tmp_src[bsize];
57 u8 tmp_dst[bsize];
62 if (nbytes % bsize) {
76 src_p = scatterwalk_whichbuf(&walk_in, bsize, tmp_src);
77 dst_p = scatterwalk_whichbuf(&walk_out, bsize, tmp_dst);
81 nbytes -= bsize;
83 scatterwalk_copychunks(src_p, &walk_in, bsize, 0);
89 scatterwalk_copychunks(dst_p, &walk_out, bsize, 1);
/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/scripts/
H A Dcheckstack.pl88 my ($asize, $bsize);
90 ($bsize = $b) =~ s/.*: *(.*)$/$1/;
91 $bsize <=> $asize
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/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. */
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/zlib/
H A Dzutil.c219 ulg bsize = (ulg)items*size; local
224 if (bsize < 65520L) {
225 buf = farmalloc(bsize);
228 buf = farmalloc(bsize + 16L);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/zlib-1.2.3/
H A Dzutil.c219 ulg bsize = (ulg)items*size; local
224 if (bsize < 65520L) {
225 buf = farmalloc(bsize);
228 buf = farmalloc(bsize + 16L);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/zlib-1.2.3/
H A Dzutil.c219 ulg bsize = (ulg)items*size; local
224 if (bsize < 65520L) {
225 buf = farmalloc(bsize);
228 buf = farmalloc(bsize + 16L);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/alpha/include/asm/
H A Da.out.h30 __u64 bsize; member in struct:aouthdr
67 #define a_bss ah.bsize
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/crypto/
H A Dablkcipher.c78 unsigned int bsize)
80 unsigned int n = bsize;
94 return bsize;
153 unsigned int bsize,
157 unsigned aligned_bsize = ALIGN(bsize, alignmask + 1);
173 src = dst = ablkcipher_get_spot(dst, bsize);
175 p->len = bsize;
178 scatterwalk_copychunks(src, &walk->in, bsize, 0);
182 walk->nbytes = bsize;
231 unsigned int alignmask, bsize, local
77 ablkcipher_done_slow(struct ablkcipher_walk *walk, unsigned int bsize) argument
151 ablkcipher_next_slow(struct ablkcipher_request *req, struct ablkcipher_walk *walk, unsigned int bsize, unsigned int alignmask, void **src_p, void **dst_p) argument
[all...]
H A Decb.c46 int bsize = crypto_cipher_blocksize(tfm); local
59 wsrc += bsize;
60 wdst += bsize;
61 } while ((nbytes -= bsize) >= bsize);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/alsa-lib-1.0.26/src/
H A Dinput.c251 size_t bsize = buffer->size; local
252 while (--size > 0 && bsize > 0) {
254 bsize--;
259 if (bsize == buffer->size)
261 buffer->size = bsize;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/xfs/
H A Dxfs_attr_leaf.h190 static inline int xfs_attr_leaf_entsize_local_max(int bsize) argument
192 return (((bsize) >> 1) + ((bsize) >> 2));
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/media/
H A Dvideobuf-core.h49 * If there is a valid mapping for a buffer, buffer->baddr/bsize holds
94 size_t bsize; member in struct:videobuf_buffer
222 unsigned int bcount, unsigned int bsize,
225 unsigned int bcount, unsigned int bsize,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/zlib-1.2.7/
H A Dzutil.c223 ulg bsize = (ulg)items*size; local
228 if (bsize < 65520L) {
229 buf = farmalloc(bsize);
232 buf = farmalloc(bsize + 16L);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/db_dump185/
H A Ddb_dump185.c34 int bsize; /* Bucket/Page Size */ member in struct:hashhdr185
58 int32_t bsize; /* Bucket/Page Size */ member in struct:hashhdr186
271 printf("db_pagesize=%lu\n", (u_long)hash186p->hdr.bsize);
276 printf("db_pagesize=%lu\n", (u_long)hash185p->hdr.bsize);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/zlib-1.2.8/
H A Dzutil.c223 ulg bsize = (ulg)items*size; local
228 if (bsize < 65520L) {
229 buf = farmalloc(bsize);
232 buf = farmalloc(bsize + 16L);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/freevxfs/
H A Dvxfs_super.c158 u_long bsize; local
170 bsize = sb_min_blocksize(sbp, BLOCK_SIZE);
171 if (!bsize) {
216 if (vxfs_read_olt(sbp, bsize)) {
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/mips/boot/
H A Decoff.h39 long bsize; /* uninitialized data " " */ member in struct:aouthdr
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/linux/
H A Dnfs_mount.h42 unsigned int bsize; /* 3 */ member in struct:nfs_mount_data
/netgear-R7000-V1.0.7.12_1.2.5/src/router/udev/extras/volume_id/lib/
H A Djfs.c33 uint32_t bsize; member in struct:jfs_super_block
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dtwinvq.c332 int bsize = mtab->size / mtab->fmode[ftype].sub; local
347 prev_buf = prev + (size - bsize) / 2;
359 mdct->imdct_half(mdct, buf1 + bsize * j, in + bsize * j);
361 tctx->fdsp.vector_fmul_window(out2, prev_buf + (bsize - wsize) / 2,
362 buf1 + bsize * j,
367 memcpy(out2, buf1 + bsize * j + wsize / 2,
368 (bsize - wsize / 2) * sizeof(float));
370 out2 += ftype == TWINVQ_FT_MEDIUM ? (bsize - wsize) / 2 : bsize
543 int bsize = tctx->mtab->size / tctx->mtab->fmode[i].sub; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/avahi-0.6.25/avahi-core/
H A Drr.c605 size_t asize, bsize; local
608 bsize = avahi_string_list_serialize(b->data.txt.string_list, NULL, 0);
613 if (bsize > 0 && !(mb = avahi_new(uint8_t, bsize))) {
619 avahi_string_list_serialize(b->data.txt.string_list, mb, bsize);
621 if (asize && bsize)
622 r = lexicographical_memcmp(ma, asize, mb, bsize);
623 else if (asize && !bsize)
625 else if (!asize && bsize)

Completed in 347 milliseconds

12345678910