/third_party/typescript/tests/baselines/reference/ |
H A D | binaryArithmeticControlFlowGraphNotTooLarge.js | 5 var a, b, c, d, ab, bc, cd, da, blocks = this.blocks; 8 a = blocks[0] - 1; 10 d = ((a & 0xefcdab89) | (~a & 0x98badcfe)) + blocks[1] + 271733878; 12 c = ((d & a) | (~d & 0xefcdab89)) + blocks[2] - 1732584194; 14 b = ((c & d) | (~c & a)) + blocks[3] - 271733879; 21 a += ((b & c) | (~b & d)) + blocks[0]; 23 d += ((a & b) | (~a & c)) + blocks[1]; 25 c += ((d & a) | (~d & b)) + blocks[2]; 27 b += ((c & d) | (~c & a)) + blocks[ [all...] |
/third_party/mesa3d/src/gallium/frontends/xvmc/ |
H A D | block.c | 38 Status XvMCCreateBlocks(Display *dpy, XvMCContext *context, unsigned int num_blocks, XvMCBlockArray *blocks) in XvMCCreateBlocks() argument 47 assert(blocks); in XvMCCreateBlocks() 49 blocks->context_id = context->context_id; in XvMCCreateBlocks() 50 blocks->num_blocks = num_blocks; in XvMCCreateBlocks() 51 blocks->blocks = MALLOC(BLOCK_SIZE_BYTES * num_blocks); in XvMCCreateBlocks() 52 blocks->privData = NULL; in XvMCCreateBlocks() 58 Status XvMCDestroyBlocks(Display *dpy, XvMCBlockArray *blocks) in XvMCDestroyBlocks() argument 61 assert(blocks); in XvMCDestroyBlocks() 62 FREE(blocks in XvMCDestroyBlocks() 68 XvMCCreateMacroBlocks(Display *dpy, XvMCContext *context, unsigned int num_blocks, XvMCMacroBlockArray *blocks) XvMCCreateMacroBlocks() argument 88 XvMCDestroyMacroBlocks(Display *dpy, XvMCMacroBlockArray *blocks) XvMCDestroyMacroBlocks() argument [all...] |
/third_party/ffmpeg/libavcodec/ppc/ |
H A D | blockdsp.c | 54 static void clear_blocks_dcbz32_ppc(int16_t *blocks) in clear_blocks_dcbz32_ppc() argument 56 register int misal = (unsigned long) blocks & 0x00000010, i = 0; in clear_blocks_dcbz32_ppc() 59 ((unsigned long *) blocks)[0] = 0L; in clear_blocks_dcbz32_ppc() 60 ((unsigned long *) blocks)[1] = 0L; in clear_blocks_dcbz32_ppc() 61 ((unsigned long *) blocks)[2] = 0L; in clear_blocks_dcbz32_ppc() 62 ((unsigned long *) blocks)[3] = 0L; in clear_blocks_dcbz32_ppc() 66 __asm__ volatile ("dcbz %0,%1" :: "b" (blocks), "r" (i) : "memory"); in clear_blocks_dcbz32_ppc() 68 ((unsigned long *) blocks)[188] = 0L; in clear_blocks_dcbz32_ppc() 69 ((unsigned long *) blocks)[189] = 0L; in clear_blocks_dcbz32_ppc() 70 ((unsigned long *) blocks)[19 in clear_blocks_dcbz32_ppc() 78 clear_blocks_dcbz128_ppc(int16_t *blocks) clear_blocks_dcbz128_ppc() argument [all...] |
/third_party/node/deps/openssl/openssl/providers/implementations/ciphers/ |
H A D | cipher_aes_cbc_hmac_sha1_hw.c | 36 void aesni_cbc_sha1_enc(const void *inp, void *out, size_t blocks, 108 int blocks; member 114 int blocks; member 135 } blocks[8]; in tls1_multi_block_encrypt() local 146 if (RAND_bytes_ex(ctx->base.libctx, (IVs = blocks[0].c), 16 * x4, 0) <= 0) in tls1_multi_block_encrypt() 178 memcpy(blocks[0].c, sctx->md.data, 8); in tls1_multi_block_encrypt() 179 seqnum = BSWAP8(blocks[0].q[0]); in tls1_multi_block_encrypt() 195 blocks[i].q[0] = BSWAP8(seqnum + i); in tls1_multi_block_encrypt() 198 blocks[i].c[j] = ((u8 *)sctx->md.data)[j] + carry; in tls1_multi_block_encrypt() 199 carry = (blocks[ in tls1_multi_block_encrypt() 381 size_t aes_off = 0, blocks; aesni_cbc_hmac_sha1_cipher() local [all...] |
H A D | cipher_aes_cbc_hmac_sha256_hw.c | 36 int aesni_cbc_sha256_enc(const void *inp, void *out, size_t blocks, 112 int blocks; member 118 int blocks; member 139 } blocks[8]; in tls1_multi_block_encrypt() local 150 if (RAND_bytes_ex(ctx->base.libctx, (IVs = blocks[0].c), 16 * x4, 0) <= 0) in tls1_multi_block_encrypt() 182 memcpy(blocks[0].c, sctx->md.data, 8); in tls1_multi_block_encrypt() 183 seqnum = BSWAP8(blocks[0].q[0]); in tls1_multi_block_encrypt() 203 blocks[i].q[0] = BSWAP8(seqnum + i); in tls1_multi_block_encrypt() 206 blocks[i].c[j] = ((u8 *)sctx->md.data)[j] + carry; in tls1_multi_block_encrypt() 207 carry = (blocks[ in tls1_multi_block_encrypt() 404 size_t aes_off = 0, blocks; aesni_cbc_hmac_sha256_cipher() local [all...] |
H A D | cipher_rc4_hmac_md5_hw.c | 58 size_t md5_off = MD5_CBLOCK - ctx->md.num, blocks; in cipher_hw_rc4_hmac_md5_cipher() local 75 && (blocks = (plen - md5_off) / MD5_CBLOCK) in cipher_hw_rc4_hmac_md5_cipher() 81 &ctx->md, in + md5_off, blocks); in cipher_hw_rc4_hmac_md5_cipher() 82 blocks *= MD5_CBLOCK; in cipher_hw_rc4_hmac_md5_cipher() 83 rc4_off += blocks; in cipher_hw_rc4_hmac_md5_cipher() 84 md5_off += blocks; in cipher_hw_rc4_hmac_md5_cipher() 85 ctx->md.Nh += blocks >> 29; in cipher_hw_rc4_hmac_md5_cipher() 86 ctx->md.Nl += blocks <<= 3; in cipher_hw_rc4_hmac_md5_cipher() 87 if (ctx->md.Nl < (unsigned int)blocks) in cipher_hw_rc4_hmac_md5_cipher() 121 && (blocks in cipher_hw_rc4_hmac_md5_cipher() [all...] |
H A D | cipher_chacha20_hw.c | 70 size_t blocks = inl / CHACHA_BLK_SIZE; in chacha20_cipher() local 77 if (sizeof(size_t) > sizeof(unsigned int) && blocks > (1U << 28)) in chacha20_cipher() 78 blocks = (1U << 28); in chacha20_cipher() 84 * amount of blocks to the exact overflow point... in chacha20_cipher() 86 ctr32 += (unsigned int)blocks; in chacha20_cipher() 87 if (ctr32 < blocks) { in chacha20_cipher() 88 blocks -= ctr32; in chacha20_cipher() 91 blocks *= CHACHA_BLK_SIZE; in chacha20_cipher() 92 ChaCha20_ctr32(out, in, blocks, ctx->key.d, ctx->counter); in chacha20_cipher() 93 inl -= blocks; in chacha20_cipher() [all...] |
/third_party/openssl/providers/implementations/ciphers/ |
H A D | cipher_aes_cbc_hmac_sha1_hw.c | 36 void aesni_cbc_sha1_enc(const void *inp, void *out, size_t blocks, 108 int blocks; member 114 int blocks; member 135 } blocks[8]; in tls1_multi_block_encrypt() local 146 if (RAND_bytes_ex(ctx->base.libctx, (IVs = blocks[0].c), 16 * x4, 0) <= 0) in tls1_multi_block_encrypt() 178 memcpy(blocks[0].c, sctx->md.data, 8); in tls1_multi_block_encrypt() 179 seqnum = BSWAP8(blocks[0].q[0]); in tls1_multi_block_encrypt() 195 blocks[i].q[0] = BSWAP8(seqnum + i); in tls1_multi_block_encrypt() 198 blocks[i].c[j] = ((u8 *)sctx->md.data)[j] + carry; in tls1_multi_block_encrypt() 199 carry = (blocks[ in tls1_multi_block_encrypt() 381 size_t aes_off = 0, blocks; aesni_cbc_hmac_sha1_cipher() local [all...] |
H A D | cipher_aes_cbc_hmac_sha256_hw.c | 36 int aesni_cbc_sha256_enc(const void *inp, void *out, size_t blocks, 112 int blocks; member 118 int blocks; member 139 } blocks[8]; in tls1_multi_block_encrypt() local 150 if (RAND_bytes_ex(ctx->base.libctx, (IVs = blocks[0].c), 16 * x4, 0) <= 0) in tls1_multi_block_encrypt() 182 memcpy(blocks[0].c, sctx->md.data, 8); in tls1_multi_block_encrypt() 183 seqnum = BSWAP8(blocks[0].q[0]); in tls1_multi_block_encrypt() 203 blocks[i].q[0] = BSWAP8(seqnum + i); in tls1_multi_block_encrypt() 206 blocks[i].c[j] = ((u8 *)sctx->md.data)[j] + carry; in tls1_multi_block_encrypt() 207 carry = (blocks[ in tls1_multi_block_encrypt() 404 size_t aes_off = 0, blocks; aesni_cbc_hmac_sha256_cipher() local [all...] |
H A D | cipher_rc4_hmac_md5_hw.c | 58 size_t md5_off = MD5_CBLOCK - ctx->md.num, blocks; in cipher_hw_rc4_hmac_md5_cipher() local 75 && (blocks = (plen - md5_off) / MD5_CBLOCK) in cipher_hw_rc4_hmac_md5_cipher() 81 &ctx->md, in + md5_off, blocks); in cipher_hw_rc4_hmac_md5_cipher() 82 blocks *= MD5_CBLOCK; in cipher_hw_rc4_hmac_md5_cipher() 83 rc4_off += blocks; in cipher_hw_rc4_hmac_md5_cipher() 84 md5_off += blocks; in cipher_hw_rc4_hmac_md5_cipher() 85 ctx->md.Nh += blocks >> 29; in cipher_hw_rc4_hmac_md5_cipher() 86 ctx->md.Nl += blocks <<= 3; in cipher_hw_rc4_hmac_md5_cipher() 87 if (ctx->md.Nl < (unsigned int)blocks) in cipher_hw_rc4_hmac_md5_cipher() 121 && (blocks in cipher_hw_rc4_hmac_md5_cipher() [all...] |
H A D | cipher_chacha20_hw.c | 70 size_t blocks = inl / CHACHA_BLK_SIZE; in chacha20_cipher() local 77 if (sizeof(size_t) > sizeof(unsigned int) && blocks > (1U << 28)) in chacha20_cipher() 78 blocks = (1U << 28); in chacha20_cipher() 84 * amount of blocks to the exact overflow point... in chacha20_cipher() 86 ctr32 += (unsigned int)blocks; in chacha20_cipher() 87 if (ctr32 < blocks) { in chacha20_cipher() 88 blocks -= ctr32; in chacha20_cipher() 91 blocks *= CHACHA_BLK_SIZE; in chacha20_cipher() 92 ChaCha20_ctr32(out, in, blocks, ctx->key.d, ctx->counter); in chacha20_cipher() 93 inl -= blocks; in chacha20_cipher() [all...] |
/third_party/node/deps/openssl/openssl/crypto/evp/ |
H A D | e_aes_cbc_hmac_sha1.c | 59 void aesni_cbc_sha1_enc(const void *inp, void *out, size_t blocks, 63 void aesni256_cbc_sha1_dec(const void *inp, void *out, size_t blocks, 146 int blocks; member 154 int blocks; member 172 } blocks[8]; in tls1_1_multi_block_encrypt() local 183 if (RAND_bytes((IVs = blocks[0].c), 16 * x4) <= 0) in tls1_1_multi_block_encrypt() 215 memcpy(blocks[0].c, key->md.data, 8); in tls1_1_multi_block_encrypt() 216 seqnum = BSWAP8(blocks[0].q[0]); in tls1_1_multi_block_encrypt() 232 blocks[i].q[0] = BSWAP8(seqnum + i); in tls1_1_multi_block_encrypt() 235 blocks[ in tls1_1_multi_block_encrypt() 417 size_t aes_off = 0, blocks; aesni_cbc_hmac_sha1_cipher() local [all...] |
H A D | e_aes_cbc_hmac_sha256.c | 59 int aesni_cbc_sha256_enc(const void *inp, void *out, size_t blocks, 141 int blocks; member 149 int blocks; member 167 } blocks[8]; in tls1_1_multi_block_encrypt() local 178 if (RAND_bytes((IVs = blocks[0].c), 16 * x4) <= 0) in tls1_1_multi_block_encrypt() 211 memcpy(blocks[0].c, key->md.data, 8); in tls1_1_multi_block_encrypt() 212 seqnum = BSWAP8(blocks[0].q[0]); in tls1_1_multi_block_encrypt() 231 blocks[i].q[0] = BSWAP8(seqnum + i); in tls1_1_multi_block_encrypt() 234 blocks[i].c[j] = ((u8 *)key->md.data)[j] + carry; in tls1_1_multi_block_encrypt() 235 carry = (blocks[ in tls1_1_multi_block_encrypt() 432 size_t aes_off = 0, blocks; aesni_cbc_hmac_sha256_cipher() local [all...] |
H A D | e_rc4_hmac_md5.c | 40 MD5_CTX *ctx, const void *inp, size_t blocks); 83 md5_off = MD5_CBLOCK - key->md.num, blocks; in rc4_hmac_md5_cipher() local 99 if (plen > md5_off && (blocks = (plen - md5_off) / MD5_CBLOCK) && in rc4_hmac_md5_cipher() 105 &key->md, in + md5_off, blocks); in rc4_hmac_md5_cipher() 106 blocks *= MD5_CBLOCK; in rc4_hmac_md5_cipher() 107 rc4_off += blocks; in rc4_hmac_md5_cipher() 108 md5_off += blocks; in rc4_hmac_md5_cipher() 109 key->md.Nh += blocks >> 29; in rc4_hmac_md5_cipher() 110 key->md.Nl += blocks <<= 3; in rc4_hmac_md5_cipher() 111 if (key->md.Nl < (unsigned int)blocks) in rc4_hmac_md5_cipher() [all...] |
/third_party/openssl/crypto/evp/ |
H A D | e_aes_cbc_hmac_sha1.c | 59 void aesni_cbc_sha1_enc(const void *inp, void *out, size_t blocks, 63 void aesni256_cbc_sha1_dec(const void *inp, void *out, size_t blocks, 146 int blocks; member 154 int blocks; member 172 } blocks[8]; in tls1_1_multi_block_encrypt() local 183 if (RAND_bytes((IVs = blocks[0].c), 16 * x4) <= 0) in tls1_1_multi_block_encrypt() 215 memcpy(blocks[0].c, key->md.data, 8); in tls1_1_multi_block_encrypt() 216 seqnum = BSWAP8(blocks[0].q[0]); in tls1_1_multi_block_encrypt() 232 blocks[i].q[0] = BSWAP8(seqnum + i); in tls1_1_multi_block_encrypt() 235 blocks[ in tls1_1_multi_block_encrypt() 417 size_t aes_off = 0, blocks; aesni_cbc_hmac_sha1_cipher() local [all...] |
H A D | e_aes_cbc_hmac_sha256.c | 59 int aesni_cbc_sha256_enc(const void *inp, void *out, size_t blocks, 141 int blocks; member 149 int blocks; member 167 } blocks[8]; in tls1_1_multi_block_encrypt() local 178 if (RAND_bytes((IVs = blocks[0].c), 16 * x4) <= 0) in tls1_1_multi_block_encrypt() 211 memcpy(blocks[0].c, key->md.data, 8); in tls1_1_multi_block_encrypt() 212 seqnum = BSWAP8(blocks[0].q[0]); in tls1_1_multi_block_encrypt() 231 blocks[i].q[0] = BSWAP8(seqnum + i); in tls1_1_multi_block_encrypt() 234 blocks[i].c[j] = ((u8 *)key->md.data)[j] + carry; in tls1_1_multi_block_encrypt() 235 carry = (blocks[ in tls1_1_multi_block_encrypt() 432 size_t aes_off = 0, blocks; aesni_cbc_hmac_sha256_cipher() local [all...] |
H A D | e_rc4_hmac_md5.c | 40 MD5_CTX *ctx, const void *inp, size_t blocks); 83 md5_off = MD5_CBLOCK - key->md.num, blocks; in rc4_hmac_md5_cipher() local 99 if (plen > md5_off && (blocks = (plen - md5_off) / MD5_CBLOCK) && in rc4_hmac_md5_cipher() 105 &key->md, in + md5_off, blocks); in rc4_hmac_md5_cipher() 106 blocks *= MD5_CBLOCK; in rc4_hmac_md5_cipher() 107 rc4_off += blocks; in rc4_hmac_md5_cipher() 108 md5_off += blocks; in rc4_hmac_md5_cipher() 109 key->md.Nh += blocks >> 29; in rc4_hmac_md5_cipher() 110 key->md.Nl += blocks <<= 3; in rc4_hmac_md5_cipher() 111 if (key->md.Nl < (unsigned int)blocks) in rc4_hmac_md5_cipher() [all...] |
/third_party/mesa3d/src/amd/compiler/ |
H A D | aco_dominance.cpp | 44 program->blocks[0].logical_idom = 0; in dominator_tree() 45 program->blocks[0].linear_idom = 0; in dominator_tree() 47 for (unsigned i = 1; i < program->blocks.size(); i++) { in dominator_tree() 48 Block& block = program->blocks[i]; in dominator_tree() 52 if ((int)program->blocks[pred_idx].logical_idom == -1) in dominator_tree() 62 pred_idx = program->blocks[pred_idx].logical_idom; in dominator_tree() 64 new_logical_idom = program->blocks[new_logical_idom].logical_idom; in dominator_tree() 69 if ((int)program->blocks[pred_idx].linear_idom == -1) in dominator_tree() 79 pred_idx = program->blocks[pred_idx].linear_idom; in dominator_tree() 81 new_linear_idom = program->blocks[new_linear_ido in dominator_tree() [all...] |
/third_party/ffmpeg/libavcodec/ |
H A D | smcenc.c | 136 /* Number of 4x4 blocks in frame. */ in smc_encode_stream() 150 int blocks = 0; in smc_encode_stream() local 238 blocks = coded_blocks; in smc_encode_stream() 244 blocks = intra_skip_blocks; in smc_encode_stream() 250 blocks = intra_skip_blocks; in smc_encode_stream() 256 blocks = inter_skip_blocks; in smc_encode_stream() 262 blocks = inter_skip_blocks; in smc_encode_stream() 267 if (blocks <= 16) { in smc_encode_stream() 268 bytestream2_put_byte(pb, 0x60 | (blocks - 1)); in smc_encode_stream() 271 bytestream2_put_byte(pb, blocks in smc_encode_stream() [all...] |
H A D | pcm-dvd.c | 147 void *dst, int blocks) in pcm_dvd_decode_samples() 156 bytestream2_init(&gb, src, blocks * s->block_size); in pcm_dvd_decode_samples() 160 bytestream2_get_buffer(&gb, dst16, blocks * s->block_size); in pcm_dvd_decode_samples() 161 dst16 += blocks * s->block_size / 2; in pcm_dvd_decode_samples() 163 int samples = blocks * avctx->ch_layout.nb_channels; in pcm_dvd_decode_samples() 180 } while (--blocks); in pcm_dvd_decode_samples() 195 } while (--blocks); in pcm_dvd_decode_samples() 207 } while (--blocks); in pcm_dvd_decode_samples() 220 } while (--blocks); in pcm_dvd_decode_samples() 235 int blocks; in pcm_dvd_decode_frame() local 146 pcm_dvd_decode_samples(AVCodecContext *avctx, const uint8_t *src, void *dst, int blocks) pcm_dvd_decode_samples() argument [all...] |
/third_party/littlefs/scripts/ |
H A D | readtree.py | 22 if set(m.blocks) == set(tail): 24 cycle = m.blocks 30 blocks = {} 35 blocks[id(data[-1])] = block 38 mdir.blocks = tuple(blocks[id(p.data)] for p in mdir.pair) 83 dirtable[frozenset(dir[0].blocks)] = dir 114 blocks = struct.unpack('<II', gstate[4:4+8].ljust(8, b'\xff')) 119 blocks[0], blocks[ [all...] |
/third_party/pulseaudio/src/tests/ |
H A D | memblock-test.c | 76 pa_memblock* blocks[5]; in START_TEST() local 95 blocks[0] = pa_memblock_new_fixed(pool_a, (void*) txt, sizeof(txt), 1); in START_TEST() 97 blocks[1] = pa_memblock_new(pool_a, sizeof(txt)); in START_TEST() 98 x = pa_memblock_acquire(blocks[1]); in START_TEST() 99 snprintf(x, pa_memblock_get_length(blocks[1]), "%s", txt); in START_TEST() 100 pa_memblock_release(blocks[1]); in START_TEST() 102 blocks[2] = pa_memblock_new_pool(pool_a, sizeof(txt)); in START_TEST() 103 x = pa_memblock_acquire(blocks[2]); in START_TEST() 104 snprintf(x, pa_memblock_get_length(blocks[2]), "%s", txt); in START_TEST() 105 pa_memblock_release(blocks[ in START_TEST() [all...] |
/third_party/mesa3d/src/compiler/glsl/ |
H A D | link_uniform_blocks.cpp | 179 * For uniform blocks laid out according to [std140] rules, the in visit_field() 221 static void process_block_array_leaf(const char *name, gl_uniform_block *blocks, 238 size_t name_length, gl_uniform_block *blocks, in process_block_array() 256 process_block_array(ub_array->array, name, new_length, blocks, in process_block_array() 260 process_block_array_leaf(*name, blocks, in process_block_array() 270 gl_uniform_block *blocks, in process_block_array_leaf() 281 blocks[i].name.string = ralloc_strdup(blocks, name); in process_block_array_leaf() 282 resource_name_updated(&blocks[i].name); in process_block_array_leaf() 283 blocks[ in process_block_array_leaf() 237 process_block_array(struct uniform_block_array_elements *ub_array, char **name, size_t name_length, gl_uniform_block *blocks, ubo_visitor *parcel, gl_uniform_buffer_variable *variables, const struct link_uniform_block_active *const b, unsigned *block_index, unsigned binding_offset, const struct gl_constants *consts, struct gl_shader_program *prog, unsigned first_index) process_block_array() argument 269 process_block_array_leaf(const char *name, gl_uniform_block *blocks, ubo_visitor *parcel, gl_uniform_buffer_variable *variables, const struct link_uniform_block_active *const b, unsigned *block_index, unsigned binding_offset, unsigned linearized_index, const struct gl_constants *consts, struct gl_shader_program *prog) process_block_array_leaf() argument 358 struct gl_uniform_block *blocks = create_buffer_blocks() local [all...] |
/third_party/f2fs-tools/lib/ |
H A D | libf2fs_io.c | 51 static char **blocks; variable 132 * RA: number of read access blocks in dcache_print_statistics() 299 * some blocks may be cached, and others don't. 411 if (blocks[cur_block]) in sparse_read_blk() 413 blocks[cur_block], F2FS_BLKSIZE); in sparse_read_blk() 414 else if (blocks) in sparse_read_blk() 428 if (blocks[cur_block] == zeroed_block) in sparse_write_blk() 429 blocks[cur_block] = NULL; in sparse_write_blk() 430 if (!blocks[cur_block]) { in sparse_write_blk() 431 blocks[cur_bloc in sparse_write_blk() [all...] |
/third_party/node/deps/openssl/openssl/crypto/modes/ |
H A D | ctr128.c | 168 size_t blocks = len / 16; in CRYPTO_ctr128_encrypt_ctr32() local 174 if (sizeof(size_t) > sizeof(unsigned int) && blocks > (1U << 28)) in CRYPTO_ctr128_encrypt_ctr32() 175 blocks = (1U << 28); in CRYPTO_ctr128_encrypt_ctr32() 180 * amount of blocks to the exact overflow point... in CRYPTO_ctr128_encrypt_ctr32() 182 ctr32 += (u32)blocks; in CRYPTO_ctr128_encrypt_ctr32() 183 if (ctr32 < blocks) { in CRYPTO_ctr128_encrypt_ctr32() 184 blocks -= ctr32; in CRYPTO_ctr128_encrypt_ctr32() 187 (*func) (in, out, blocks, key, ivec); in CRYPTO_ctr128_encrypt_ctr32() 193 blocks *= 16; in CRYPTO_ctr128_encrypt_ctr32() 194 len -= blocks; in CRYPTO_ctr128_encrypt_ctr32() [all...] |