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

1 2 3 4 5 6 7 8

  /external/chromium_org/third_party/libvpx/source/libvpx/test/
vp9_subtract_test.cc 40 for (BLOCK_SIZE bsize = BLOCK_4X4; bsize < BLOCK_SIZES;
41 bsize = static_cast<BLOCK_SIZE>(static_cast<int>(bsize) + 1)) {
42 const int block_width = 4 * num_4x4_blocks_wide_lookup[bsize];
43 const int block_height = 4 * num_4x4_blocks_high_lookup[bsize];
68 << ", bs = " << bsize; local
81 << ", bs = " << bsize; local
  /external/libvpx/libvpx/test/
vp9_subtract_test.cc 40 for (BLOCK_SIZE bsize = BLOCK_4X4; bsize < BLOCK_SIZES;
41 bsize = static_cast<BLOCK_SIZE>(static_cast<int>(bsize) + 1)) {
42 const int block_width = 4 * num_4x4_blocks_wide_lookup[bsize];
43 const int block_height = 4 * num_4x4_blocks_high_lookup[bsize];
68 << ", bs = " << bsize; local
81 << ", bs = " << bsize; local
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
vp9_subtract_test.cc 40 for (BLOCK_SIZE bsize = BLOCK_4X4; bsize < BLOCK_SIZES;
41 bsize = static_cast<BLOCK_SIZE>(static_cast<int>(bsize) + 1)) {
42 const int block_width = 4 * num_4x4_blocks_wide_lookup[bsize];
43 const int block_height = 4 * num_4x4_blocks_high_lookup[bsize];
68 << ", bs = " << bsize; local
81 << ", bs = " << bsize; local
  /external/freetype/src/gzip/
zutil.c 86 ulg bsize = (ulg)items*size; local
91 if (bsize < 65520L) {
92 buf = farmalloc(bsize);
95 buf = farmalloc(bsize + 16L);
  /sdk/emulator/opengl/host/libs/libOpenglRender/
RenderThread.cpp 74 size_t bsize = strlen(dump_dir) + 32; local
75 char *fname = new char[bsize];
76 snprintf(fname,bsize,"%s/stream_%p", dump_dir, this);
  /external/e2fsprogs/misc/
findsuper.c 193 unsigned long long bsize, grpsize; local
235 bsize = 1 << (ext2.s_log_block_size + 10);
236 grpsize = bsize * ext2.s_blocks_per_group;
244 if (ext2.s_block_group_nr == 0 || bsize == 1024)
253 sk + ext2fs_blocks_count(&ext2) * bsize -
255 jnl_copy ? "*" : " ", ext2fs_blocks_count(&ext2), bsize,
  /system/core/adb/
framebuffer_service.c 58 unsigned int i, bsize; local
167 for(i = 0; i < fbinfo.size; i += bsize) {
168 bsize = sizeof(buf);
169 if (i + bsize > fbinfo.size)
170 bsize = fbinfo.size - i;
171 if(readx(fd_screencap, buf, bsize)) goto done;
172 if(writex(fd, buf, bsize)) goto done;
  /external/chromium_org/third_party/zlib/
zutil.c 219 ulg bsize = (ulg)items*size; local
224 if (bsize < 65520L) {
225 buf = farmalloc(bsize);
228 buf = farmalloc(bsize + 16L);
  /external/eigen/bench/btl/libs/BLAS/
blas_interface_impl.hh 122 int bsize = 64; local
123 int worksize = N*bsize;
139 int bsize = 64; local
140 int worksize = N*bsize;
  /external/qemu/distrib/zlib-1.2.8/
zutil.c 223 ulg bsize = (ulg)items*size; local
228 if (bsize < 65520L) {
229 buf = farmalloc(bsize);
232 buf = farmalloc(bsize + 16L);
  /external/qemu/
ioport.c 124 static int ioport_bsize(int size, int *bsize)
127 *bsize = 0;
129 *bsize = 1;
131 *bsize = 2;
142 int i, bsize; local
144 if (ioport_bsize(size, &bsize)) {
149 ioport_read_table[bsize][i] = func;
161 int i, bsize; local
163 if (ioport_bsize(size, &bsize)) {
168 ioport_write_table[bsize][i] = func
    [all...]
  /external/zlib/src/
zutil.c 223 ulg bsize = (ulg)items*size; local
228 if (bsize < 65520L) {
229 buf = farmalloc(bsize);
232 buf = farmalloc(bsize + 16L);
  /frameworks/base/services/core/java/com/android/server/
DiskStatsService.java 89 long bsize = statfs.getBlockSize(); local
92 if (bsize <= 0 || total <= 0) {
94 "Invalid stat: bsize=" + bsize + " avail=" + avail + " total=" + total);
99 pw.print(avail * bsize / 1024);
101 pw.print(total * bsize / 1024);
  /system/core/toolbox/upstream-netbsd/bin/cat/
cat.c 65 static size_t bsize; variable
86 bsize = (size_t)strtol(optarg, NULL, 0);
118 "Usage: %s [-beflnstuv] [-B bsize] [-] "
306 if (bsize == 0) {
309 bsize = sbuf.st_blksize;
311 if (bsize > sizeof(fb_buf)) {
312 buf = malloc(bsize);
314 warnx("malloc, using %zu buffer", bsize);
317 bsize = sizeof(fb_buf);
321 while ((nr = read(rfd, buf, bsize)) > 0
    [all...]
  /bionic/libc/kernel/uapi/linux/
nfs_mount.h 49 unsigned int bsize; member in struct:nfs_mount_data
  /development/ndk/platforms/android-L/include/linux/
nfs_mount.h 49 unsigned int bsize; member in struct:nfs_mount_data
  /external/chromium_org/third_party/freetype/src/sfnt/
sfobjs.c 943 FT_Bitmap_Size* bsize = root->available_sizes + i; local
950 bsize->height = (FT_Short)( metrics.height >> 6 );
951 bsize->width = (FT_Short)(
954 bsize->x_ppem = metrics.x_ppem << 6;
955 bsize->y_ppem = metrics.y_ppem << 6;
958 bsize->size = metrics.y_ppem << 6;
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
vp9_segmentation.c 134 const BLOCK_SIZE bsize = xd->mi[0].src_mi->mbmi.sb_type; local
137 bsize, mi_row, mi_col);
158 BLOCK_SIZE bsize) {
161 const int bs = num_8x8_blocks_wide_lookup[bsize], hbs = bs / 2;
185 const BLOCK_SIZE subsize = subsize_lookup[PARTITION_SPLIT][bsize];
  /external/e2fsprogs/lib/ext2fs/
block.c 30 int bsize; member in struct:block_context
  /external/eigen/test/
ref.cpp 110 Index bsize = internal::random<Index>(1,size-i); local
116 RefDynMat rv2 = v1.segment(i,bsize);
117 VERIFY_IS_EQUAL(rv2, v1.segment(i,bsize));
119 v2.segment(i,bsize).setOnes();
122 v2.segment(i,bsize).setRandom();
123 rv2 = v2.segment(i,bsize);
126 ConstRefDynMat rm3 = v1.segment(i,bsize);
127 v1.segment(i,bsize) *= 2;
128 v2.segment(i,bsize) *= 2;
129 VERIFY_IS_EQUAL(rm3, v2.segment(i,bsize));
    [all...]
  /external/jarjar/src/main/com/tonicsystems/jarjar/util/
ClassHeaderReader.java 33 private int bsize = 0; field in class:ClassHeaderReader
56 bsize = 0;
144 if (amount > bsize) {
146 bsize += read(in, b, bsize, rounded - bsize);
147 if (amount > bsize)
  /external/kernel-headers/original/uapi/linux/
nfs_mount.h 42 unsigned int bsize; /* 3 */ member in struct:nfs_mount_data
  /external/libvpx/libvpx/vp9/encoder/
vp9_segmentation.c 146 const BLOCK_SIZE bsize = mi_8x8[0]->mbmi.sb_type; local
149 bsize, mi_row, mi_col);
170 BLOCK_SIZE bsize) {
174 const int bs = num_8x8_blocks_wide_lookup[bsize], hbs = bs / 2;
198 const BLOCK_SIZE subsize = subsize_lookup[PARTITION_SPLIT][bsize];
  /external/opencv/cvaux/src/
cvfindhandregion.cpp 72 float value, vmin, vmax, vl, bsize, vc; local
171 bsize = vl / nbins;
176 l = cvRound( (vv[i] - vmin) / bsize );
201 hand_left = vmin + left * bsize;
216 hand_right = vmax - (nbins - right - 1) * bsize;
294 float value, vmin, vmax, vl, bsize, bsizej, vc, vcl, vcr; local
457 bsize = vl / nbins;
462 l = cvRound( (vv[i] - vmin) / bsize );
505 hand_left = vmin + left * bsize;
511 hand_right = vmax - (nbins - right - 1) * bsize;
    [all...]
  /external/openssl/apps/
enc.c 77 #undef BSIZE
81 #define BSIZE (8*1024)
110 int bsize=BSIZE,verbose=0; local
384 bsize=(int)n;
385 if (verbose) BIO_printf(bio_err,"bufsize=%d\n",bsize);
389 buff=(unsigned char *)OPENSSL_malloc(EVP_ENCODE_LENGTH(bsize));
392 BIO_printf(bio_err,"OPENSSL_malloc failure %ld\n",(long)EVP_ENCODE_LENGTH(bsize));
676 inl=BIO_read(rbio,(char *)buff,bsize);

Completed in 1030 milliseconds

1 2 3 4 5 6 7 8