| /linux/lib/zlib_inflate/ |
| H A D | inflate.h | 33 TABLE, /* i: waiting for dynamic block table lengths */ 34 LENLENS, /* i: waiting for code length code lengths */ 35 CODELENS, /* i: waiting for length/lit and distance code lengths */ 104 unsigned ncode; /* number of code length code lengths */ 105 unsigned nlen; /* number of length code lengths */ 106 unsigned ndist; /* number of distance code lengths */ 107 unsigned have; /* number of code lengths in lens[] */ 109 unsigned short lens[320]; /* temporary storage for code lengths */
|
| H A D | inftrees.c | 13 The code lengths are lens[0..codes-1]. The result starts at *table, 28 unsigned min, max; /* minimum and maximum code lengths */ in zlib_inflate_table() 62 Process a set of code lengths to create a canonical Huffman code. The in zlib_inflate_table() 63 code lengths are lens[0..codes-1]. Each length corresponds to the in zlib_inflate_table() 66 for codes with equal lengths. Then the code starts with all zero bits in zlib_inflate_table() 87 codes at all, checking for a valid set of lengths, and looking ahead in zlib_inflate_table() 92 /* accumulate lengths for codes (assumes lens[] all in 0..MAXBITS) */ in zlib_inflate_table() 98 /* bound code lengths, force root to be within code lengths */ in zlib_inflate_table() 116 /* check for an over-subscribed or incomplete set of lengths */ in zlib_inflate_table() 150 code lengths to determine what size sub-table is needed. The length in zlib_inflate_table()
|
| /linux/tools/testing/selftests/arm64/fp/ |
| H A D | sve-probe-vls.c | 32 * Enumerate up to SVE_VQ_MAX vector lengths in main() 55 ksft_test_result_pass("Enumerated %d vector lengths\n", nvqs); in main() 56 ksft_test_result_pass("All vector lengths valid\n"); in main() 58 /* Print out the vector lengths in ascending order: */ in main()
|
| /linux/arch/arm64/crypto/ |
| H A D | sm4-ce-gcm-glue.c | 28 const u8 *ghash_table, const u8 *lengths); 32 const u8 *ghash_table, const u8 *lengths); 135 const u8 *ghash_table, const u8 *lengths)) in gcm_crypt() argument 140 be128 __aligned(8) lengths; in gcm_crypt() 144 lengths.a = cpu_to_be64(req->assoclen * 8); in gcm_crypt() 145 lengths.b = cpu_to_be64(walk->total * 8); in gcm_crypt() 161 l = (const u8 *)&lengths; in gcm_crypt()
|
| /linux/fs/ntfs3/lib/ |
| H A D | lzx_decompress.c | 17 /* The smallest and largest allowed match lengths */ 21 /* Number of distinct match lengths that can be represented */ 24 /* Number of match lengths for which no length symbol is required */ 65 /* Maximum lengths (in bits) of the codewords in each Huffman code */ 120 * lengths 246 * the codeword lengths for this Huffman code were read, or all 0's 262 /* Read the lengths of the precode codewords. These are given in lzx_read_codeword_lens() 279 /* Decode the codeword lengths. */ in lzx_read_codeword_lens() 306 /* Run of identical lengths */ in lzx_read_codeword_lens() 326 * lengths will still be in range, and data that in lzx_read_codeword_lens() [all …]
|
| H A D | decompress_common.c | 28 * reconstructed directly from the codeword lengths. A prefix code is 64 * used symbols are assigned the shortest codeword lengths. 105 * Returns 0 on success, or -1 if the lengths do not form a valid prefix 135 /* We can assume all lengths are <= max_codeword_len, but we in make_huffman_decode_table() 139 * exactly filled by the lengths, by this measure. in make_huffman_decode_table() 146 /* The lengths overflow the codespace; that is, the code in make_huffman_decode_table() 154 /* The lengths do not fill the codespace; that is, they form an in make_huffman_decode_table()
|
| H A D | xpress_decompress.c | 26 /* An array that maps symbols to codeword lengths */ 69 /* Read the Huffman codeword lengths. */ in xpress_decompress()
|
| /linux/fs/orangefs/ |
| H A D | xattr.c | 469 if (new_op->downcall.resp.listxattr.lengths[i] < 0 || in orangefs_listxattr() 470 new_op->downcall.resp.listxattr.lengths[i] > in orangefs_listxattr() 472 gossip_err("%s: impossible value for lengths[%d]\n", in orangefs_listxattr() 474 new_op->downcall.resp.listxattr.lengths[i]); in orangefs_listxattr() 478 if (total + new_op->downcall.resp.listxattr.lengths[i] > size) in orangefs_listxattr() 489 listxattr.lengths[i])) { in orangefs_listxattr() 495 new_op->downcall.resp.listxattr.lengths[i]); in orangefs_listxattr() 496 total += new_op->downcall.resp.listxattr.lengths[i]; in orangefs_listxattr() 503 key_size += new_op->downcall.resp.listxattr.lengths[i]; in orangefs_listxattr()
|
| /linux/include/trace/events/ |
| H A D | dma.h | 296 __dynamic_array(unsigned int, lengths, min(ents, DMA_TRACE_MAX_ENTRIES)) 316 ((unsigned int *)__get_dynamic_array(lengths))[i] = 332 __print_array(__get_dynamic_array(lengths), 333 __get_dynamic_array_len(lengths) / 451 __dynamic_array(unsigned int, lengths, nents) 463 ((unsigned int *)__get_dynamic_array(lengths))[i] = 475 __print_array(__get_dynamic_array(lengths), 476 __get_dynamic_array_len(lengths) /
|
| /linux/include/crypto/ |
| H A D | sha2.h | 225 * @raw_key_len: the key length in bytes. All key lengths are supported. 255 * @raw_key_len: the key length in bytes. All key lengths are supported. 311 * @raw_key_len: the key length in bytes. All key lengths are supported. 429 * @raw_key_len: the key length in bytes. All key lengths are supported. 459 * @raw_key_len: the key length in bytes. All key lengths are supported. 515 * @raw_key_len: the key length in bytes. All key lengths are supported. 638 * @raw_key_len: the key length in bytes. All key lengths are supported. 668 * @raw_key_len: the key length in bytes. All key lengths are supported. 724 * @raw_key_len: the key length in bytes. All key lengths are supported. 813 * @raw_key_len: the key length in bytes. All key lengths are supported. [all …]
|
| H A D | md5.h | 115 * @raw_key_len: the key length in bytes. All key lengths are supported. 141 * @raw_key_len: the key length in bytes. All key lengths are supported. 196 * @raw_key_len: the key length in bytes. All key lengths are supported.
|
| /linux/Documentation/devicetree/bindings/spi/ |
| H A D | nvidia,tegra210-quad-peripheral-props.yaml | 17 Tap value varies based on platform design trace lengths from Tegra 26 Tap value varies based on platform design trace lengths from Tegra
|
| /linux/lib/zlib_deflate/ |
| H A D | deftree.c | 14 * a Huffman encoding of the lengths of all the code strings (in 16 * reconstructed from the lengths in the inflate process, as described 75 /* The lengths of the bit length codes are sent in order of decreasing 76 * probability, to avoid transmitting the lengths for unused bit length codes. 84 /* The static literal tree. Since the bit lengths are imposed, there is no 344 * Compute the optimal bit lengths for a tree and update the total bit length 373 /* In a first pass, compute the optimal bit lengths (which may in gen_bitlen() 412 /* Now recompute all bit lengths, scanning in increasing frequency. in gen_bitlen() 414 * lengths instead of fixing only the wrong ones. This idea is taken in gen_bitlen() 477 * Construct one Huffman tree and assigns the code bit strings and lengths. [all …]
|
| H A D | defutil.h | 27 /* number of codes used to transfer the bit lengths */ 172 struct ct_data_s bl_tree[2*BL_CODES+1]; /* Huffman tree for bit lengths */ 192 uch *l_buf; /* buffer for literals or lengths */ 195 /* Size of match buffer for literals/lengths. There are 4 reasons for 218 * the same number of elements. To use different lengths, an extra flag
|
| /linux/Documentation/devicetree/bindings/display/ti/ |
| H A D | ti,omap5-dss.txt | 64 - reg: addresses and lengths of the register spaces for 'proto', 'phy' and 'pll' 86 - reg: addresses and lengths of the register spaces for 'wp', 'pll', 'phy',
|
| H A D | ti,omap4-dss.txt | 83 - reg: addresses and lengths of the register spaces for 'proto', 'phy' and 'pll' 105 - reg: addresses and lengths of the register spaces for 'wp', 'pll', 'phy',
|
| /linux/security/selinux/ |
| H A D | Kconfig | 58 chain lengths are high (e.g. > 20) then selecting a higher value here 80 shorter chain lengths especially when expanding AVC nodes via
|
| /linux/drivers/mtd/parsers/ |
| H A D | Kconfig | 100 of devices. It is used to describe the offsets and lengths of kernel 159 the offsets, lengths and names of all the images stored in the
|
| /linux/net/rds/ |
| H A D | info.h | 16 * or not by comparing the lengths.
|
| /linux/Documentation/networking/ |
| H A D | udplite.rst | 215 lengths), only the first fragment needs to be considered. When using 216 larger checksum coverage lengths, each eligible fragment needs to be 230 coverage lengths are likely to be expected.
|
| /linux/include/uapi/linux/cifs/ |
| H A D | cifs_mount.h | 19 /* Max string lengths for cifs mounting options. */
|
| /linux/include/uapi/scsi/ |
| H A D | scsi_netlink_fc.h | 30 /* macro to round up message lengths to 8byte boundary */
|
| /linux/tools/testing/selftests/arm64/signal/ |
| H A D | sve_helpers.c | 23 * Enumerate up to SVE_VQ_MAX vector lengths in sve_fill_vls()
|
| /linux/drivers/net/ethernet/cisco/enic/ |
| H A D | vnic_vic.h | 9 /* Note: String field lengths include null char */
|
| /linux/include/asm-generic/ |
| H A D | checksum.h | 14 * this function must be called with even lengths, except
|