/external/python/cryptography/src/cryptography/hazmat/primitives/ |
D | padding.py | 31 def _byte_padding_check(block_size): argument 39 def _byte_padding_update(buffer_, data, block_size): argument 55 def _byte_padding_pad(buffer_, block_size, paddingfn): argument 63 def _byte_unpadding_update(buffer_, data, block_size): argument 79 def _byte_unpadding_check(buffer_, block_size, checkfn): argument 96 def __init__(self, block_size): argument 109 def __init__(self, block_size): argument 131 def __init__(self, block_size): argument 150 def __init__(self, block_size): argument 163 def __init__(self, block_size): argument [all …]
|
D | hashes.py | 114 block_size = 64 variable in SHA1 121 block_size = 128 variable in SHA512_224 128 block_size = 128 variable in SHA512_256 135 block_size = 64 variable in SHA224 142 block_size = 64 variable in SHA256 149 block_size = 128 variable in SHA384 156 block_size = 128 variable in SHA512 221 block_size = 64 variable in MD5 229 block_size = 128 variable in BLAKE2b 244 block_size = 64 variable in BLAKE2s
|
/external/scapy/scapy/layers/tls/crypto/ |
D | cipher_block.py | 113 block_size = 16 variable in Cipher_AES_128_CBC 123 block_size = 16 variable in Cipher_CAMELLIA_128_CBC 136 block_size = 8 variable in Cipher_DES_CBC 154 block_size = 8 variable in Cipher_3DES_EDE_CBC 160 block_size = 8 variable in Cipher_IDEA_CBC 166 block_size = 16 variable in Cipher_SEED_CBC 190 block_size = 64 variable in _ARC2 208 block_size = 8 variable in Cipher_RC2_CBC
|
/external/squashfs-tools/squashfs-tools/ |
D | compressor.h | 47 int block_size, int datablock) in compressor_init() 56 void *dest, void *src, int size, int block_size, int *error) in compressor_compress() 63 void *src, int size, int block_size, int *error) in compressor_uncompress() 83 static inline int compressor_options_post(struct compressor *comp, int block_size) in compressor_options_post() 92 int block_size, int *size) in compressor_dump_options() 101 int block_size, void *buffer, int size) in compressor_extract_options() 110 int block_size, void *buffer, int size) in compressor_check_options()
|
D | lzo_wrapper.c | 129 static int lzo_options_post(int block_size) in lzo_options_post() 165 static void *lzo_dump_options(int block_size, int *size) in lzo_dump_options() 210 static int lzo_extract_options(int block_size, void *buffer, int size) in lzo_extract_options() 316 static int squashfs_lzo_init(void **strm, int block_size, int datablock) in squashfs_lzo_init() 341 int block_size, int *error) in lzo_compress()
|
D | lz4_wrapper.c | 77 static void *lz4_dump_options(int block_size, int *size) in lz4_dump_options() 110 static int lz4_extract_options(int block_size, void *buffer, int size) in lz4_extract_options() 162 static int lz4_check_options(int block_size, void *buffer, int size) in lz4_check_options() 224 int block_size, int *error) in lz4_compress()
|
D | gzip_wrapper.c | 150 static int gzip_options_post(int block_size) in gzip_options_post() 172 static void *gzip_dump_options(int block_size, int *size) in gzip_dump_options() 224 static int gzip_extract_options(int block_size, void *buffer, int size) in gzip_extract_options() 338 static int gzip_init(void **strm, int block_size, int datablock) in gzip_init() 396 static int gzip_compress(void *strm, void *d, void *s, int size, int block_size, in gzip_compress()
|
D | xz_wrapper.c | 164 static int xz_options_post(int block_size) in xz_options_post() 226 static void *xz_dump_options(int block_size, int *size) in xz_dump_options() 277 static int xz_extract_options(int block_size, void *buffer, int size) in xz_extract_options() 383 static int xz_init(void **strm, int block_size, int datablock) in xz_init() 437 int block_size, int *error) in xz_compress()
|
/external/libgav1/libgav1/src/tile/bitstream/ |
D | partition.cc | 30 BlockSize block_size) { in PartitionCdfGatherHorizontalAlike() 54 BlockSize block_size) { in PartitionCdfGatherVerticalAlike() 85 BlockSize block_size) { in GetPartitionCdf() 103 bool Tile::ReadPartition(int row4x4, int column4x4, BlockSize block_size, in ReadPartition()
|
/external/python/cryptography/src/cryptography/hazmat/primitives/ciphers/ |
D | algorithms.py | 30 block_size = 128 variable in AES 46 block_size = 128 variable in Camellia 61 block_size = 64 variable in TripleDES 80 block_size = 64 variable in Blowfish 95 block_size = 64 variable in CAST5 122 block_size = 64 variable in IDEA 137 block_size = 128 variable in SEED
|
/external/libgav1/libgav1/src/ |
D | prediction_mask.cc | 132 int BlockShape(BlockSize block_size) { in BlockShape() 140 uint8_t GetWedgeDirection(BlockSize block_size, int index) { in GetWedgeDirection() 144 uint8_t GetWedgeOffsetX(BlockSize block_size, int index) { in GetWedgeOffsetX() 148 uint8_t GetWedgeOffsetY(BlockSize block_size, int index) { in GetWedgeOffsetY() 193 const auto block_size = static_cast<BlockSize>(size); in GenerateWedgeMask() local
|
/external/icing/icing/index/main/ |
D | flash-index-storage-header.h | 38 int block_size; member 63 const Filesystem* filesystem, int fd, int block_size) { in Read() 72 explicit HeaderBlock(const Filesystem* filesystem, int block_size) in HeaderBlock() 106 std::unique_ptr<uint8_t[]> buffer, int block_size) in HeaderBlock()
|
D | index-block.cc | 37 uint32_t block_size) { in ValidatePostingListBytes() 53 uint32_t block_size, int posting_list_index_bits) { in ApproximateFullPostingListHitsForBlock() 64 uint32_t block_size) { in CreateFromPreexistingIndexBlockRegion() 82 off_t offset, uint32_t block_size, in CreateFromUninitializedRegion()
|
/external/python/cryptography/tests/hypothesis/ |
D | test_padding.py | 13 def test_pkcs7(block_size, data): argument 27 def test_ansix923(block_size, data): argument
|
/external/libaom/libaom/aom_dsp/ |
D | noise_util.c | 23 float aom_noise_psd_get_default_value(int block_size, float factor) { in aom_noise_psd_get_default_value() 33 int block_size; member 38 struct aom_noise_tx_t *aom_noise_tx_malloc(int block_size) { in aom_noise_tx_malloc() 92 const int block_size = noise_tx->block_size; in aom_noise_tx_filter() local 123 const int block_size = noise_tx->block_size; in aom_noise_tx_add_energy() local
|
/external/tensorflow/tensorflow/core/kernels/ |
D | scan_ops_gpu.h | 257 const int block_size = 1024; in LaunchScan() local 263 const int block_size = 512; in LaunchScan() local 269 const int block_size = 256; in LaunchScan() local 275 const int block_size = 128; in LaunchScan() local 287 const int block_size = 64; in LaunchScan() local 293 const int block_size = 32; in LaunchScan() local
|
/external/tensorflow/tensorflow/python/kernel_tests/ |
D | depthtospace_op_test.py | 40 def _testOne(self, inputs, block_size, outputs, dtype=dtypes.float32): argument 263 def depthToSpaceUsingTranspose(self, tensor, block_size, data_format): argument 284 block_size, data_format, use_gpu): argument 340 def _checkGrad(self, x, block_size, data_format): argument 362 def _compare(self, b, h, w, d, block_size, data_format): argument
|
D | spacetodepth_op_test.py | 38 def _testOne(self, inputs, block_size, outputs, dtype=dtypes.float32): argument 230 def spaceToDepthUsingTranspose(self, tensor, block_size, data_format): argument 261 block_size, data_format, data_type, use_gpu): argument 340 def _checkGrad(self, x, block_size, data_format): argument 358 def _compare(self, b, h, w, d, block_size, data_format): argument
|
/external/XNNPACK/test/ |
D | depthtospace-microkernel-tester.h | 67 inline DepthToSpaceMicrokernelTester& block_size(size_t block_size) { in block_size() function 73 inline size_t block_size() const { in block_size() function
|
/external/python/cryptography/tests/ |
D | doubles.py | 17 block_size = 128 variable in DummyCipherAlgorithm 32 block_size = None variable in DummyHashAlgorithm
|
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/transforms/ |
D | tpu_space_to_depth_pass.cc | 158 LogicalResult HandlePad(TF::PadOp op, int32_t kernel_size, int32_t block_size) { in HandlePad() 207 void HandleConv2DInput(TF::Conv2DOp conv2d, int64_t block_size) { in HandleConv2DInput() 262 void HandleConv2DFilter(TF::Conv2DOp conv2d, int64_t block_size) { in HandleConv2DFilter() 338 int64_t block_size) { in HandleConv2DBackPropFilter() 424 Value input, int32_t block_size, in BuildSpaceToDepth() 441 int32_t block_size, in HandleHostInput() 455 int32_t block_size) { in HandleHostReplicatedInputs() 480 void HandleCluster(tf_device::ClusterFuncOp cluster_func, int32_t block_size, in HandleCluster() 582 void HandleFirstConvolution(TF::Conv2DOp conv2d, int64_t block_size) { in HandleFirstConvolution() 679 int64_t block_size = GetConv2DBlockSize(conv2d); in runOnOperation() local [all …]
|
/external/libvpx/libvpx/test/ |
D | vp9_intrapred_test.cc | 42 int block_size; member 51 const int block_size = params_.block_size; in RunTest() local 93 const int block_size = params_.block_size; in CheckPrediction() local 456 int block_size; member
|
/external/libtextclassifier/native/utils/base/ |
D | arena.h | 100 size_t block_size() const { return block_size_; } in block_size() function 184 explicit UnsafeArena(const size_t block_size) in UnsafeArena() 186 UnsafeArena(const size_t block_size, bool align) in UnsafeArena() 193 UnsafeArena(char* first_block, const size_t block_size) in UnsafeArena() 195 UnsafeArena(char* first_block, const size_t block_size, bool align) in UnsafeArena()
|
/external/libaom/libaom/test/ |
D | error_block_test.cc | 48 const tran_low_t *dqcoeff, intptr_t block_size, in BlockError8BitWrapper() 77 intptr_t block_size; in TEST_P() local 120 intptr_t block_size; in TEST_P() local 176 intptr_t block_size; in TEST_P() local
|
/external/tensorflow/tensorflow/core/platform/ |
D | threadpool.h | 78 absl::optional<int64> block_size) in SchedulingParams() 85 absl::optional<int64> block_size() const { return block_size_; } in block_size() function
|