HomeSort by relevance Sort by last modified time
    Searched defs:bsize (Results 1 - 25 of 40) sorted by null

1 2

  /external/dropbear/libtommath/
bn_mp_prime_random_ex.c 37 int res, err, bsize, maskOR_msb_offset; local
50 bsize = (size>>3) + ((size&7)?1:0);
52 /* we need a buffer of bsize bytes */
53 tmp = OPT_CAST(unsigned char) XMALLOC(bsize);
76 if (cb(tmp, bsize, dat) != bsize) {
87 tmp[bsize-1] |= maskOR_lsb;
90 if ((err = mp_read_unsigned_bin(a, tmp, bsize)) != MP_OKAY) { goto error; }
  /external/e2fsprogs/misc/
findsuper.c 191 unsigned long long bsize, grpsize; local
231 bsize = 1 << (ext2.s_log_block_size + 10);
232 grpsize = bsize * ext2.s_blocks_per_group;
240 if (ext2.s_block_group_nr == 0 || bsize == 1024)
249 sk + ext2.s_blocks_count * bsize -
251 jnl_copy ? "*" : " ", ext2.s_blocks_count, bsize,
  /external/grub/stage2/
fsys_ffs.c 101 int bnum, offset, bsize; local
114 bsize = MAPBUF_LEN;
121 bsize = SUPERBLOCK->fs_bsize;
125 if (! devread (bnum, offset * sizeof (int), bsize, (char *) MAPBUF))
135 mapblock_bsize = bsize;
fsys_ufs2.c 125 int bnum, offset, bsize; local
139 bsize = MAPBUF_LEN;
146 bsize = SUPERBLOCK->fs_bsize;
150 if (! devread (bnum, offset * sizeof (int), bsize, (char *) MAPBUF))
160 mapblock_bsize = bsize;
fsys_jfs.c 34 int bsize; member in struct:jfs_info
220 jfs.bsize = super.s_bsize;
fsys_xfs.c 36 int bsize; member in struct:xfs_info
466 xfs.bsize = le32 (super.sb_blocksize);
472 xfs.dirbsize = xfs.bsize << super.sb_dirblklog;
479 ((xfs.bsize - sizeof(xfs_btree_block_t)) /
543 char linkbuf[xfs.bsize];
558 if (di_size < xfs.bsize - 1) {
568 while (n < (xfs.bsize - 1) && (linkbuf[n++] = *dirname++));
  /external/e2fsprogs/lib/ext2fs/
block.c 30 int bsize; member in struct:block_context
  /external/qemu/distrib/zlib-1.2.3/
zutil.c 219 ulg bsize = (ulg)items*size; local
224 if (bsize < 65520L) {
225 buf = farmalloc(bsize);
228 buf = farmalloc(bsize + 16L);
  /external/quake/quake/src/WinQuake/
snd_sun.cpp 182 int bsize; local
193 bsize = shm->channels * (shm->samplebits/8);
194 bytes = (paintedtime - wbufp) * bsize;
201 stop = wbufp + bytes/bsize;
205 idx = (wbufp*bsize) & (BUFFER_SIZE - 1);
vid_svgalib.cpp 474 int bsize, zsize, tsize; local
521 bsize = vid.rowbytes * vid.height;
527 d_pzbuffer = Hunk_HighAllocName (bsize+tsize+zsize, "video");
  /external/zlib/
zutil.c 219 ulg bsize = (ulg)items*size; local
224 if (bsize < 65520L) {
225 buf = farmalloc(bsize);
228 buf = farmalloc(bsize + 16L);
  /frameworks/base/services/java/com/android/server/
DiskStatsService.java 88 long bsize = statfs.getBlockSize(); local
91 if (bsize <= 0 || total <= 0) {
93 "Invalid stat: bsize=" + bsize + " avail=" + avail + " total=" + total);
98 pw.print(avail * bsize / 1024);
100 pw.print(total * bsize / 1024);
  /system/core/toolbox/
cat.c 155 static size_t bsize; local
164 bsize = sbuf.st_blksize > CAT_BUFSIZ ?
166 buf = malloc(bsize);
170 bsize = CAT_BUFSIZ;
173 while ((nr = read(rfd, buf, bsize)) > 0)
  /external/freetype/src/sfnt/
sfobjs.c 920 FT_Bitmap_Size* bsize = root->available_sizes + i; local
927 bsize->height = (FT_Short)( metrics.height >> 6 );
928 bsize->width = (FT_Short)(
931 bsize->x_ppem = metrics.x_ppem << 6;
932 bsize->y_ppem = metrics.y_ppem << 6;
935 bsize->size = metrics.y_ppem << 6;
    [all...]
  /external/openssl/apps/
enc.c 74 #undef BSIZE
78 #define BSIZE (8*1024)
110 int bsize=BSIZE,verbose=0; local
356 bsize=(int)n;
357 if (verbose) BIO_printf(bio_err,"bufsize=%d\n",bsize);
361 buff=(unsigned char *)OPENSSL_malloc(EVP_ENCODE_LENGTH(bsize));
364 BIO_printf(bio_err,"OPENSSL_malloc failure %ld\n",(long)EVP_ENCODE_LENGTH(bsize));
631 inl=BIO_read(rbio,(char *)buff,bsize);
  /external/iproute2/tc/
f_u32.c 87 int bsize = SPRINT_BSIZE-1; local
94 snprintf(b, bsize, "none");
98 int l = snprintf(b, bsize, "%x:", htid>>20);
99 bsize -= l;
104 int l = snprintf(b, bsize, "%x", hash);
105 bsize -= l;
109 int l = snprintf(b, bsize, ":%x", nodeid);
110 bsize -= l;
115 snprintf(b, bsize, "[%08x] ", handle);
  /system/core/fastboot/
fastboot.c 245 unsigned bsize; local
280 bdata = mkbootimg(kdata, ksize, rdata, rsize, 0, 0, page_size, base_addr, &bsize);
286 fprintf(stderr,"creating boot image - %d bytes\n", bsize);
287 *sz = bsize;
  /external/qemu/audio/
alsaaudio.c 427 snd_pcm_uframes_t bsize = req->buffer_size; local
432 &bsize
434 obt = bsize;
  /external/quake/quake/src/QW/client/
vid_svgalib.c 475 int bsize, zsize, tsize; local
522 bsize = vid.rowbytes * vid.height;
528 d_pzbuffer = Hunk_HighAllocName (bsize+tsize+zsize, "video");
  /external/freetype/src/base/
ftobjs.c 2120 FT_Bitmap_Size* bsize = face->available_sizes + i; local
2404 FT_Bitmap_Size* bsize = face->available_sizes + i; local
2490 FT_Bitmap_Size* bsize; local
    [all...]
  /external/opencore/pvmi/media_io/pvmiofileoutput/src/
pvmi_media_io_fileoutput.cpp 1151 uint32 bsize = iVideoWidth * iVideoHeight * 3 \/ 2; local
2311 uint32 fsize, bsize; local
    [all...]
  /bionic/libc/kernel/common/linux/
nfs_xdr.h 58 __u32 bsize; member in struct:nfs2_fsstat
  /external/qemu/
a.out.h 77 host_ulong bsize; /* uninitialized data " " */ member in struct:__anon4073
375 host_ulong bsize; /* uninitialized data " " */ member in struct:__anon4087
  /ndk/build/platforms/android-3/arch-arm/usr/include/linux/
nfs_xdr.h 58 __u32 bsize; member in struct:nfs2_fsstat
  /ndk/build/platforms/android-4/arch-arm/usr/include/linux/
nfs_xdr.h 58 __u32 bsize; member in struct:nfs2_fsstat

Completed in 2235 milliseconds

1 2