| /OK3568_Linux_fs/buildroot/dl/sox/git/src/ |
| H A D | aiff.c | 43 uint32_t chunksize; in lsx_aiffstartread() local 101 lsx_readdw(ft, &chunksize); in lsx_aiffstartread() 106 chunksize -= 18; in lsx_aiffstartread() 107 if (chunksize > 0) { in lsx_aiffstartread() 109 chunksize -= 4; in lsx_aiffstartread() 140 while(chunksize-- > 0) in lsx_aiffstartread() 146 lsx_readdw(ft, &chunksize); in lsx_aiffstartread() 149 chunksize -= 8; in lsx_aiffstartread() 150 ssndsize = chunksize; in lsx_aiffstartread() 154 chunksize += (chunksize % 2); in lsx_aiffstartread() [all …]
|
| H A D | 8svx.c | 35 uint32_t chunksize; in startread() local 64 lsx_readdw(ft, &chunksize); in startread() 65 if (chunksize != 20) in startread() 84 lsx_readdw(ft, &chunksize); in startread() 85 if (chunksize & 1) in startread() 86 chunksize++; in startread() 87 chunk_buf = lsx_malloc(chunksize + (size_t)2); in startread() 88 if (lsx_readbuf(ft, chunk_buf,(size_t)chunksize) in startread() 89 != chunksize) in startread() 94 chunk_buf[chunksize] = '\0'; in startread() [all …]
|
| H A D | maud.c | 46 uint32_t chunksize; in startread() local 82 lsx_readdw(ft, &chunksize); in startread() 83 if (chunksize != 8*4) in startread() 160 lsx_readdw(ft, &chunksize); in startread() 161 if (chunksize & 1) in startread() 162 chunksize++; in startread() 163 chunk_buf = lsx_malloc(chunksize + (size_t)1); in startread() 164 if (lsx_readbuf(ft, chunk_buf, (size_t)chunksize) in startread() 165 != chunksize) in startread() 170 chunk_buf[chunksize] = '\0'; in startread() [all …]
|
| /OK3568_Linux_fs/kernel/lib/ |
| H A D | decompress_unlz4.c | 38 size_t chunksize = 0; in unlz4() local 91 chunksize = get_unaligned_le32(inp); in unlz4() 92 if (chunksize == ARCHIVE_MAGICNUMBER) { in unlz4() 120 chunksize = get_unaligned_le32(inp); in unlz4() 121 if (chunksize == ARCHIVE_MAGICNUMBER) { in unlz4() 131 if (!fill && chunksize == 0) { in unlz4() 143 if (chunksize > LZ4_compressBound(uncomp_chunksize)) { in unlz4() 147 size = fill(inp, chunksize); in unlz4() 148 if (size < chunksize) { in unlz4() 161 chunksize = ret; in unlz4() [all …]
|
| /OK3568_Linux_fs/u-boot/common/ |
| H A D | dlmalloc.c | 459 #define chunksize(p) ((p)->size & ~(SIZE_BITS)) macro 807 assert(chunksize(next) >= MINSIZE); 890 while (FD != BK && S < chunksize(FD)) FD = FD->fd; \ 992 INTERNAL_SIZE_T size = chunksize(p); 1019 INTERNAL_SIZE_T size = chunksize(p); 1075 INTERNAL_SIZE_T old_top_size = chunksize(old_top); 1291 victim_size = chunksize(victim); 1308 victim_size = chunksize(victim); 1334 victim_size = chunksize(victim); 1397 victim_size = chunksize(victim); [all …]
|
| /OK3568_Linux_fs/kernel/crypto/ |
| H A D | streebog_generic.c | 1006 size_t chunksize; in streebog_update() local 1009 chunksize = STREEBOG_BLOCK_SIZE - ctx->fillsize; in streebog_update() 1010 if (chunksize > len) in streebog_update() 1011 chunksize = len; in streebog_update() 1012 memcpy(&ctx->buffer[ctx->fillsize], data, chunksize); in streebog_update() 1013 ctx->fillsize += chunksize; in streebog_update() 1014 len -= chunksize; in streebog_update() 1015 data += chunksize; in streebog_update()
|
| H A D | chacha_generic.c | 81 .chunksize = CHACHA_BLOCK_SIZE, 96 .chunksize = CHACHA_BLOCK_SIZE, 111 .chunksize = CHACHA_BLOCK_SIZE,
|
| H A D | aead.c | 224 if (max3(alg->maxauthsize, alg->ivsize, alg->chunksize) > in aead_prepare_alg() 228 if (!alg->chunksize) in aead_prepare_alg() 229 alg->chunksize = base->cra_blocksize; in aead_prepare_alg()
|
| H A D | simd.c | 183 alg->chunksize = ialg->chunksize; in simd_skcipher_create_compat() 431 alg->chunksize = ialg->chunksize; in simd_aead_create_compat()
|
| /OK3568_Linux_fs/kernel/drivers/crypto/bcm/ |
| H A D | cipher.c | 136 unsigned int chunksize, u32 stat_pad_len) in spu_skcipher_rx_sg_create() argument 161 rctx->dst_nents, chunksize); in spu_skcipher_rx_sg_create() 162 if (datalen < chunksize) { in spu_skcipher_rx_sg_create() 164 __func__, chunksize, datalen); in spu_skcipher_rx_sg_create() 199 u8 tx_frag_num, unsigned int chunksize, u32 pad_len) in spu_skcipher_tx_sg_create() argument 225 rctx->src_nents, chunksize); in spu_skcipher_tx_sg_create() 226 if (unlikely(datalen < chunksize)) { in spu_skcipher_tx_sg_create() 308 unsigned int chunksize; /* Num bytes of request to submit */ in handle_skcipher_req() local 339 chunksize = ctx->max_payload; in handle_skcipher_req() 341 chunksize = remaining; in handle_skcipher_req() [all …]
|
| H A D | spu2.h | 181 u32 chunksize, u16 hash_block_size); 213 unsigned int assoclen, unsigned int chunksize,
|
| H A D | spu.c | 427 u32 chunksize, u16 hash_block_size) in spum_hash_pad_len() argument 435 used_space_last_block = chunksize % hash_block_size; in spum_hash_pad_len() 442 used_space_last_block = chunksize % hash_block_size + 1; in spum_hash_pad_len() 1146 unsigned int chunksize, in spum_ccm_update_iv() argument 1200 chunksize -= digestsize; in spum_ccm_update_iv() 1203 format_value_ccm(chunksize, &cipher_parms->iv_buf[15 - L + 1], L); in spum_ccm_update_iv()
|
| H A D | spu.h | 229 u32 chunksize, u16 hash_block_size); 271 unsigned int chunksize,
|
| /OK3568_Linux_fs/kernel/drivers/md/ |
| H A D | md-bitmap.c | 470 sb->chunksize = cpu_to_le32(bitmap->mddev->bitmap_info.chunksize); in md_bitmap_update_sb() 500 pr_debug(" chunksize: %d B\n", le32_to_cpu(sb->chunksize)); in md_bitmap_print_sb() 522 unsigned long chunksize, daemon_sleep, write_behind; in md_bitmap_new_disk_sb() local 534 chunksize = bitmap->mddev->bitmap_info.chunksize; in md_bitmap_new_disk_sb() 535 BUG_ON(!chunksize); in md_bitmap_new_disk_sb() 536 if (!is_power_of_2(chunksize)) { in md_bitmap_new_disk_sb() 541 sb->chunksize = cpu_to_le32(chunksize); in md_bitmap_new_disk_sb() 582 unsigned long chunksize, daemon_sleep, write_behind; in md_bitmap_read_sb() local 591 chunksize = 128 * 1024 * 1024; in md_bitmap_read_sb() 610 (bitmap->mddev->bitmap_info.chunksize >> 9)); in md_bitmap_read_sb() [all …]
|
| H A D | md-bitmap.h | 131 __le32 chunksize; /* 52 the bitmap chunk size in bytes */ member 270 int chunksize, int init);
|
| /OK3568_Linux_fs/kernel/fs/ocfs2/ |
| H A D | ioctl.c | 396 unsigned int chunksize) in o2ffg_update_histogram() argument 400 index = __ilog2_u32(chunksize); in o2ffg_update_histogram() 405 hist->fc_clusters[index] += chunksize; in o2ffg_update_histogram() 409 unsigned int chunksize) in o2ffg_update_stats() argument 411 if (chunksize > stats->ffs_max) in o2ffg_update_stats() 412 stats->ffs_max = chunksize; in o2ffg_update_stats() 414 if (chunksize < stats->ffs_min) in o2ffg_update_stats() 415 stats->ffs_min = chunksize; in o2ffg_update_stats() 417 stats->ffs_avg += chunksize; in o2ffg_update_stats() 422 unsigned int chunksize) in ocfs2_info_update_ffg() argument [all …]
|
| /OK3568_Linux_fs/kernel/scripts/dtc/ |
| H A D | data.c | 85 size_t chunksize, ret; in data_copy_file() local 88 chunksize = 4096; in data_copy_file() 90 chunksize = maxlen - d.len; in data_copy_file() 92 d = data_grow_for(d, chunksize); in data_copy_file() 93 ret = fread(d.val + d.len, 1, chunksize, f); in data_copy_file()
|
| /OK3568_Linux_fs/u-boot/scripts/dtc/ |
| H A D | data.c | 98 size_t chunksize, ret; in data_copy_file() local 101 chunksize = 4096; in data_copy_file() 103 chunksize = maxlen - d.len; in data_copy_file() 105 d = data_grow_for(d, chunksize); in data_copy_file() 106 ret = fread(d.val + d.len, 1, chunksize, f); in data_copy_file()
|
| /OK3568_Linux_fs/kernel/arch/arm/crypto/ |
| H A D | chacha-glue.c | 206 .chunksize = CHACHA_BLOCK_SIZE, 221 .chunksize = CHACHA_BLOCK_SIZE, 236 .chunksize = CHACHA_BLOCK_SIZE, 255 .chunksize = CHACHA_BLOCK_SIZE, 271 .chunksize = CHACHA_BLOCK_SIZE, 287 .chunksize = CHACHA_BLOCK_SIZE,
|
| /OK3568_Linux_fs/kernel/drivers/firmware/efi/libstub/ |
| H A D | file.c | 223 unsigned long chunksize = min(size, efi_chunk_size); in handle_cmdline_files() local 225 status = file->read(file, &chunksize, addr); in handle_cmdline_files() 230 addr += chunksize; in handle_cmdline_files() 231 size -= chunksize; in handle_cmdline_files()
|
| /OK3568_Linux_fs/kernel/arch/mips/crypto/ |
| H A D | chacha-glue.c | 92 .chunksize = CHACHA_BLOCK_SIZE, 107 .chunksize = CHACHA_BLOCK_SIZE, 122 .chunksize = CHACHA_BLOCK_SIZE,
|
| /OK3568_Linux_fs/kernel/arch/arm64/crypto/ |
| H A D | chacha-neon-glue.c | 175 .chunksize = CHACHA_BLOCK_SIZE, 191 .chunksize = CHACHA_BLOCK_SIZE, 207 .chunksize = CHACHA_BLOCK_SIZE,
|
| /OK3568_Linux_fs/kernel/net/sctp/ |
| H A D | sm_make_chunk.c | 222 size_t chunksize; in sctp_make_init() local 245 chunksize = sizeof(init) + addrs_len; in sctp_make_init() 246 chunksize += SCTP_PAD4(SCTP_SAT_LEN(num_types)); in sctp_make_init() 249 chunksize += sizeof(ecap_param); in sctp_make_init() 252 chunksize += sizeof(prsctp_param); in sctp_make_init() 271 chunksize += sizeof(aiparam); in sctp_make_init() 278 chunksize += vparam_len; in sctp_make_init() 283 chunksize += sizeof(asoc->c.auth_random); in sctp_make_init() 288 chunksize += SCTP_PAD4(ntohs(auth_hmacs->length)); in sctp_make_init() 295 chunksize += SCTP_PAD4(ntohs(auth_chunks->length)); in sctp_make_init() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/crypto/qce/ |
| H A D | skcipher.c | 303 unsigned int chunksize; member 333 .chunksize = AES_BLOCK_SIZE, 403 alg->chunksize = def->chunksize; in qce_skcipher_register_one()
|
| /OK3568_Linux_fs/kernel/arch/x86/crypto/ |
| H A D | chacha_glue.c | 242 .chunksize = CHACHA_BLOCK_SIZE, 257 .chunksize = CHACHA_BLOCK_SIZE, 272 .chunksize = CHACHA_BLOCK_SIZE,
|