HomeSort by relevance Sort by last modified time
    Searched full:block_size (Results 226 - 250 of 1104) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/wpa_supplicant_8/src/eap_common/
eap_eke_common.c 609 size_t block_size, icv_len, pad; local
613 block_size = AES_BLOCK_SIZE;
624 pad = data_len % block_size;
626 pad = block_size - pad;
628 if (*prot_len < block_size + data_len + pad + icv_len) {
634 if (random_get_bytes(pos, block_size))
637 wpa_hexdump(MSG_DEBUG, "EAP-EKE: IV for Prot()", iv, block_size);
638 pos += block_size;
663 size_t block_size, icv_len; local
667 block_size = AES_BLOCK_SIZE
    [all...]
  /external/boringssl/src/crypto/cipher/
e_aes.c 363 size_t bl = ctx->cipher->block_size;
684 NID_aes_128_cbc, 16 /* block_size */, 16 /* key_size */,
690 NID_aes_128_ctr, 1 /* block_size */, 16 /* key_size */,
696 NID_aes_128_ecb, 16 /* block_size */, 16 /* key_size */,
702 NID_aes_128_ofb128, 1 /* block_size */, 16 /* key_size */,
708 NID_aes_128_gcm, 1 /* block_size */, 16 /* key_size */, 12 /* iv_len */,
718 NID_aes_192_cbc, 16 /* block_size */, 24 /* key_size */,
724 NID_aes_192_ctr, 1 /* block_size */, 24 /* key_size */,
730 NID_aes_192_ecb, 16 /* block_size */, 24 /* key_size */,
736 NID_aes_192_gcm, 1 /* block_size */, 24 /* key_size */, 12 /* iv_len */
    [all...]
  /bootable/recovery/
fuse_sideload.h 36 uint64_t file_size, uint32_t block_size);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
hmac.py 53 if hasattr(self.inner, 'block_size'):
54 blocksize = self.inner.block_size
58 _warnings.warn('block_size of %d seems too small; using our '
63 _warnings.warn('No block_size attribute on given digest object; '
  /external/compiler-rt/test/BlocksRuntime/
byrefsanity.c 51 int Block_size; // XXX should be packed into Block_flags
  /external/kernel-headers/original/uapi/linux/
romfs_fs.h 9 #define ROMBSIZE BLOCK_SIZE
  /external/libjpeg-turbo/
jdmaster.c 114 /* Provide 1/block_size scaling */
122 /* Provide 2/block_size scaling */
130 /* Provide 3/block_size scaling */
138 /* Provide 4/block_size scaling */
146 /* Provide 5/block_size scaling */
154 /* Provide 6/block_size scaling */
162 /* Provide 7/block_size scaling */
170 /* Provide 8/block_size scaling */
178 /* Provide 9/block_size scaling */
186 /* Provide 10/block_size scaling *
    [all...]
  /external/libvpx/config/x86_64/
vp9_rtcd.h 33 int64_t vp9_block_error_c(const tran_low_t *coeff, const tran_low_t *dqcoeff, intptr_t block_size, int64_t *ssz);
34 int64_t vp9_block_error_sse2(const tran_low_t *coeff, const tran_low_t *dqcoeff, intptr_t block_size, int64_t *ssz);
37 int64_t vp9_block_error_fp_c(const int16_t *coeff, const int16_t *dqcoeff, int block_size);
38 int64_t vp9_block_error_fp_sse2(const int16_t *coeff, const int16_t *dqcoeff, int block_size);
  /external/libvpx/libvpx/test/
vp9_intrapred_test.cc 37 : pred_fn(pred), ref_fn(ref), block_size(block_size_value),
42 int block_size; member in struct:__anon24409::IntraPredParam
51 const int block_size = params_.block_size; local
59 for (int x = -1; x < block_size; x++) {
66 for (int x = block_size; x < 2 * block_size; x++) {
67 above_row_[x] = above_row_[block_size - 1];
69 for (int y = 0; y < block_size; y++) {
85 stride_ = params_.block_size * 3
93 const int block_size = params_.block_size; local
447 int block_size; member in struct:__anon24409::HighbdIntraPredParam
    [all...]
  /external/libvpx/libvpx/vp9/common/
vp9_blockd.c 38 const MACROBLOCKD *const xd, BLOCK_SIZE bsize, int plane,
46 const BLOCK_SIZE plane_bsize = get_plane_block_size(bsize, pd);
78 BLOCK_SIZE bsize,
88 BLOCK_SIZE plane_bsize, TX_SIZE tx_size, int has_eob,
  /external/ltp/testcases/commands/du/
du01.sh 41 # from --block-size, and the DU_BLOCK_SIZE, BLOCK_SIZE and
81 block_size=512
102 du_test "du -B ${block_size}" ${check5}
103 du_test "du --block-size=${block_size}" ${check5}
  /external/syslinux/gpxe/src/include/gpxe/
spi.h 224 device->nvs.block_size = 256;
234 device->nvs.block_size = 8;
243 device->nvs.block_size = 256;
252 device->nvs.block_size = 32;
  /external/vulkan-validation-layers/layers/
vk_layer_utils.cpp 558 VkExtent2D block_size = { 1, 1 }; local
588 block_size = { 4, 4 };
592 block_size = { 5, 4 };
596 block_size = { 5, 5 };
600 block_size = { 6, 5 };
604 block_size = { 6, 6 };
608 block_size = { 8, 5 };
612 block_size = { 8, 6 };
616 block_size = { 8, 8 };
620 block_size = { 10, 5 }
    [all...]
  /external/wpa_supplicant_8/src/tls/
tlsv1_record.h 43 size_t iv_size; /* also block_size */
  /hardware/intel/img/psb_video/src/
tng_VP8.h 43 #define BLOCK_SIZE 64
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
romfs_fs.h 6 #define ROMBSIZE BLOCK_SIZE
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
romfs_fs.h 9 #define ROMBSIZE BLOCK_SIZE
  /prebuilts/gdb/darwin-x86/lib/python2.7/
hmac.py 53 if hasattr(self.inner, 'block_size'):
54 blocksize = self.inner.block_size
58 _warnings.warn('block_size of %d seems too small; using our '
63 _warnings.warn('No block_size attribute on given digest object; '
  /prebuilts/gdb/linux-x86/lib/python2.7/
hmac.py 53 if hasattr(self.inner, 'block_size'):
54 blocksize = self.inner.block_size
58 _warnings.warn('block_size of %d seems too small; using our '
63 _warnings.warn('No block_size attribute on given digest object; '
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
hmac.py 53 if hasattr(self.inner, 'block_size'):
54 blocksize = self.inner.block_size
58 _warnings.warn('block_size of %d seems too small; using our '
63 _warnings.warn('No block_size attribute on given digest object; '
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
hmac.py 53 if hasattr(self.inner, 'block_size'):
54 blocksize = self.inner.block_size
58 _warnings.warn('block_size of %d seems too small; using our '
63 _warnings.warn('No block_size attribute on given digest object; '
  /system/extras/ext4_utils/include/ext4_utils/
ext4_sb.h 34 uint32_t block_size; member in struct:fs_info
  /system/extras/f2fs_utils/
f2fs_sparseblock.h 41 u_int32_t block_size; member in struct:f2fs_info
  /system/update_engine/payload_consumer/
bzip_extent_writer.h 45 uint32_t block_size) override;
fake_extent_writer.h 39 uint32_t /* block_size */) override {

Completed in 2809 milliseconds

1 2 3 4 5 6 7 8 91011>>