HomeSort by relevance Sort by last modified time
    Searched full:block_size (Results 326 - 350 of 585) sorted by null

<<11121314151617181920>>

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
TwofishEngine.java 194 private static final int BLOCK_SIZE = 16; // bytes = 128 bits
198 private static final int OUTPUT_WHITEN=INPUT_WHITEN+BLOCK_SIZE/4; // 4
199 private static final int ROUND_SUBKEYS=OUTPUT_WHITEN+BLOCK_SIZE/4;// 8
300 if ((inOff + BLOCK_SIZE) > in.length)
305 if ((outOff + BLOCK_SIZE) > out.length)
319 return BLOCK_SIZE;
332 return BLOCK_SIZE;
BlowfishEngine.java 300 private static final int BLOCK_SIZE = 8; // bytes = 64 bits
360 if ((inOff + BLOCK_SIZE) > in.length)
365 if ((outOff + BLOCK_SIZE) > out.length)
379 return BLOCK_SIZE;
388 return BLOCK_SIZE;
  /external/chromium_org/chrome/browser/thumbnails/
content_analysis_unittest.cc 653 const int block_size = header_rect.height() - margin_vertical; local
655 x < header_rect.right() - block_size;
656 x += block_size + margin_horizontal) {
657 const int half_block = block_size / 2 - 5;
662 canvas.FillRect(gfx::Rect(x, y, half_block, block_size), block_color);
  /external/e2fsprogs/ext2ed/
general_com.c 223 mult=file_system_info.block_size;
460 if (type_data.offset_in_block==file_system_info.block_size) {
476 if (type_data.offset_in_block==file_system_info.block_size) {
629 for (l=0;l<file_system_info.block_size/16;l++) {
711 if (type_data.offset_in_block+offset < file_system_info.block_size) {
ext2ed.h 129 unsigned short block_size; member in struct:struct_file_system_info
208 extern short block_size;
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/core/
kernel.cpp 67 const std::vector<size_t> &block_size) {
83 pad_vector<uint>(q, block_size, 1).data(),
123 _cl_kernel::block_size() const { function in class:_cl_kernel
  /external/libvpx/libvpx/vp9/encoder/
vp9_onyx_int.h 265 BLOCK_SIZE always_this_block_size;
267 BLOCK_SIZE min_partition_size;
268 BLOCK_SIZE max_partition_size;
  /external/libvpx/libvpx/vp9/encoder/x86/
vp9_variance_sse2.c 122 get_var_sse2 var_fn, int block_size) {
130 for (i = 0; i < h; i += block_size) {
131 for (j = 0; j < w; j += block_size) {
  /external/mesa3d/src/gallium/state_trackers/clover/core/
kernel.cpp 67 const std::vector<size_t> &block_size) {
83 pad_vector<uint>(q, block_size, 1).data(),
123 _cl_kernel::block_size() const { function in class:_cl_kernel
  /external/openssh/
kex.c 299 enc->block_size = cipher_blocksize(enc->cipher);
458 if (need < newkeys->enc.block_size)
459 need = newkeys->enc.block_size;
monitor_wrap.c 494 enc->block_size = buffer_get_int(&b);
497 if (len != enc->block_size)
499 enc->block_size, len);
554 buffer_put_int(&b, enc->block_size);
556 packet_get_keyiv(mode, enc->iv, enc->block_size);
557 buffer_put_string(&b, enc->iv, enc->block_size);
    [all...]
  /external/clang/docs/
Block-ABI-Apple.rst 146 unsigned long int Block_size;
224 unsigned long int Block_size;
289 unsigned long int Block_size;
524 unsigned long int Block_size;
694 unsigned long int Block_size;
769 unsigned long int Block_size;
    [all...]
  /frameworks/av/media/libstagefright/httplive/
LiveSession.cpp 620 * | `url` file |<--------- buffer size --------->|<--- `block_size` -->| | |
626 * - block_size == 0 means entire range
632 uint32_t block_size, /* download block size */
682 if (block_size > 0 && (range_length == -1 || buffer->size() + block_size < range_length)) {
683 range_length = buffer->size() + block_size;
    [all...]
  /external/kernel-headers/original/linux/raid/
md_p.h 46 #define MD_RESERVED_BLOCKS (MD_RESERVED_BYTES / BLOCK_SIZE)
53 #define MD_SB_BLOCKS (MD_SB_BYTES / BLOCK_SIZE)
  /external/libvpx/libvpx/nestegg/src/
nestegg.c 1181 ne_read_block(nestegg * ctx, uint64_t block_id, uint64_t block_size, nestegg_packet ** data)
1196 if (block_size > LIMIT_BLOCK)
1245 frame_sizes[0] = block_size - consumed;
1250 r = ne_read_xiph_lacing(ctx->io, block_size, &consumed, frames, frame_sizes);
1255 if ((block_size - consumed) % frames)
1258 frame_sizes[i] = (block_size - consumed) / frames;
1263 r = ne_read_ebml_lacing(ctx->io, block_size, &consumed, frames, frame_sizes);
1273 if (total > block_size)
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/raid/
md_p.h 46 #define MD_RESERVED_BLOCKS (MD_RESERVED_BYTES / BLOCK_SIZE)
53 #define MD_SB_BLOCKS (MD_SB_BYTES / BLOCK_SIZE)
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/raid/
md_p.h 46 #define MD_RESERVED_BLOCKS (MD_RESERVED_BYTES / BLOCK_SIZE)
53 #define MD_SB_BLOCKS (MD_SB_BYTES / BLOCK_SIZE)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/raid/
md_p.h 46 #define MD_RESERVED_BLOCKS (MD_RESERVED_BYTES / BLOCK_SIZE)
53 #define MD_SB_BLOCKS (MD_SB_BYTES / BLOCK_SIZE)
  /external/chromium_org/net/disk_cache/
block_files.h 45 void DeleteMapBlock(int index, int block_size);
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_format_s3tc.c 248 unsigned block_size)
261 src += block_size;
316 unsigned block_size)
333 src += block_size;
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
r600_pipe.c 630 uint64_t * block_size = ret; local
631 block_size[0] = 256;
632 block_size[1] = 256;
633 block_size[2] = 256;
  /external/libvpx/libvpx/vp9/common/
vp9_entropymode.c 145 { 65, 32, 18, 144, 162, 194, 41, 51, 98 }, // block_size < 8x8
146 { 132, 68, 18, 165, 217, 196, 45, 40, 78 }, // block_size < 16x16
147 { 173, 80, 19, 176, 240, 193, 64, 35, 46 }, // block_size < 32x32
148 { 221, 135, 38, 194, 248, 121, 96, 85, 29 } // block_size >= 32x32
  /external/libvpx/libvpx/vp9/decoder/
vp9_detokenize.c 220 int plane, int block, BLOCK_SIZE plane_bsize,
  /external/mesa3d/src/gallium/auxiliary/util/
u_format_s3tc.c 248 unsigned block_size)
261 src += block_size;
316 unsigned block_size)
333 src += block_size;
  /external/mesa3d/src/gallium/drivers/r600/
r600_pipe.c 630 uint64_t * block_size = ret; local
631 block_size[0] = 256;
632 block_size[1] = 256;
633 block_size[2] = 256;

Completed in 308 milliseconds

<<11121314151617181920>>