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

1 2 3 4 5 6 7 8 9

  /external/libvpx/libvpx/test/
vp9_subtract_test.cc 42 for (BLOCK_SIZE bsize = BLOCK_4X4; bsize < BLOCK_SIZES;
43 bsize = static_cast<BLOCK_SIZE>(static_cast<int>(bsize) + 1)) {
44 const int block_width = 4 * num_4x4_blocks_wide_lookup[bsize];
45 const int block_height = 4 * num_4x4_blocks_high_lookup[bsize];
70 << ", bs = " << bsize; local
83 << ", 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);
  /external/opencv3/modules/core/test/
test_hal_core.cpp 150 size_t bsize = size*b.elemSize(); local
154 memcpy(x.ptr(), b.ptr(), bsize);
  /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.cpp 60 unsigned int i, bsize; local
171 for(i = 0; i < fbinfo.size; i += bsize) {
172 bsize = sizeof(buf);
173 if (i + bsize > fbinfo.size)
174 bsize = fbinfo.size - i;
175 if(!ReadFdExactly(fd_screencap, buf, bsize)) goto done;
176 if(!WriteFdExactly(fd, buf, bsize)) goto done;
  /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/opencv3/3rdparty/zlib/
zutil.c 223 ulg bsize = (ulg)items*size; local
228 if (bsize < 65520L) {
229 buf = farmalloc(bsize);
232 buf = farmalloc(bsize + 16L);
  /external/squashfs-tools/kernel/fs/squashfs/
file.c 403 int bsize = read_blocklist(inode, index, &block); local
404 if (bsize < 0)
407 if (bsize == 0) { /* hole */
417 block, bsize);
420 "\n", block, bsize);
  /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 94 long bsize = statfs.getBlockSize(); local
97 if (bsize <= 0 || total <= 0) {
99 "Invalid stat: bsize=" + bsize + " avail=" + avail + " total=" + total);
104 pw.print(avail * bsize / 1024);
106 pw.print(total * bsize / 1024);
  /toolchain/binutils/binutils-2.25/include/aout/
encap.h 59 long bsize; member in struct:coffheader
  /toolchain/binutils/binutils-2.25/include/coff/
ia64.h 49 char bsize[4]; /* uninitialized data " " */ member in struct:__anon74293
  /bionic/libc/kernel/uapi/linux/
nfs_mount.h 49 unsigned int bsize; member in struct:nfs_mount_data
  /development/ndk/platforms/android-21/include/linux/
nfs_mount.h 49 unsigned int bsize; member in struct:nfs_mount_data
  /external/avahi/avahi-core/
rr.c 604 size_t asize, bsize; local
607 bsize = avahi_string_list_serialize(b->data.txt.string_list, NULL, 0);
612 if (bsize > 0 && !(mb = avahi_new(uint8_t, bsize))) {
618 avahi_string_list_serialize(b->data.txt.string_list, mb, bsize);
620 if (asize && bsize)
621 r = lexicographical_memcmp(ma, asize, mb, bsize);
622 else if (asize && !bsize)
624 else if (!asize && bsize)
  /external/e2fsprogs/lib/ext2fs/
block.c 30 int bsize; member in struct:block_context
  /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 130 const BLOCK_SIZE bsize = xd->mi[0]->mbmi.sb_type; local
133 bsize, mi_row, mi_col);
154 BLOCK_SIZE bsize) {
157 const int bs = num_8x8_blocks_wide_lookup[bsize], hbs = bs / 2;
181 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...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/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];
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
nfs_mount.h 42 unsigned int bsize; /* 3 */ member in struct:nfs_mount_data
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
nfs_mount.h 42 unsigned int bsize; /* 3 */ member in struct:nfs_mount_data
  /prebuilts/ndk/current/platforms/android-21/arch-arm/usr/include/linux/
nfs_mount.h 49 unsigned int bsize; member in struct:nfs_mount_data

Completed in 1155 milliseconds

1 2 3 4 5 6 7 8 9