/Linux-v6.1/arch/arm64/boot/dts/allwinner/ |
D | sun50i-h5-cpu-opp.dtsi | 12 clock-latency-ns = <244144>; /* 8 32k periods */ 18 clock-latency-ns = <244144>; /* 8 32k periods */ 24 clock-latency-ns = <244144>; /* 8 32k periods */ 30 clock-latency-ns = <244144>; /* 8 32k periods */ 36 clock-latency-ns = <244144>; /* 8 32k periods */ 42 clock-latency-ns = <244144>; /* 8 32k periods */ 48 clock-latency-ns = <244144>; /* 8 32k periods */ 54 clock-latency-ns = <244144>; /* 8 32k periods */ 60 clock-latency-ns = <244144>; /* 8 32k periods */
|
D | sun50i-a64-cpu-opp.dtsi | 14 clock-latency-ns = <244144>; /* 8 32k periods */ 20 clock-latency-ns = <244144>; /* 8 32k periods */ 26 clock-latency-ns = <244144>; /* 8 32k periods */ 32 clock-latency-ns = <244144>; /* 8 32k periods */ 38 clock-latency-ns = <244144>; /* 8 32k periods */ 44 clock-latency-ns = <244144>; /* 8 32k periods */ 50 clock-latency-ns = <244144>; /* 8 32k periods */ 56 clock-latency-ns = <244144>; /* 8 32k periods */
|
D | sun50i-h6-cpu-opp.dtsi | 12 clock-latency-ns = <244144>; /* 8 32k periods */ 21 clock-latency-ns = <244144>; /* 8 32k periods */ 30 clock-latency-ns = <244144>; /* 8 32k periods */ 39 clock-latency-ns = <244144>; /* 8 32k periods */ 48 clock-latency-ns = <244144>; /* 8 32k periods */ 57 clock-latency-ns = <244144>; /* 8 32k periods */ 66 clock-latency-ns = <244144>; /* 8 32k periods */ 75 clock-latency-ns = <244144>; /* 8 32k periods */ 84 clock-latency-ns = <244144>; /* 8 32k periods */ 93 clock-latency-ns = <244144>; /* 8 32k periods */
|
/Linux-v6.1/fs/btrfs/tests/ |
D | extent-map-tests.c | 43 * extent [0, 16K), followed by another file extent [16K, 20K), two dio reads 44 * are entering btrfs_get_extent() concurrently, t1 is reading [8K, 16K), t2 is 45 * reading [0, 8K) 50 * -> add_extent_mapping(0, 16K) 52 * ->add_extent_mapping(0, 16K) 69 /* Add [0, 16K) */ in test_case_1() 78 test_err("cannot add extent range [0, 16K)"); in test_case_1() 83 /* Add [16K, 20K) following [0, 16K) */ in test_case_1() 99 test_err("cannot add extent range [16K, 20K)"); in test_case_1() 111 /* Add [0, 8K), should return [0, 16K) instead. */ in test_case_1() [all …]
|
/Linux-v6.1/drivers/media/common/b2c2/ |
D | flexcop-sram.c | 183 * 32K memory chip. If not, the data is read 203 * 32K memory chip. If not, the data is 285 return 32768; /* 32K */ 287 return 65536; /* 64K */ 289 return 131072; /* 128K */ 290 return 32768; /* 32K */ 293 /* FlexcopII can work with 32K, 64K or 128K of external SRAM memory. 294 - for 128K there are 4x32K chips at bank 0,1,2,3. 295 - for 64K there are 2x32K chips at bank 1,2. 296 - for 32K there is one 32K chip at bank 0. [all …]
|
/Linux-v6.1/drivers/net/wireless/ath/ |
D | key.c | 130 const struct ath_keyval *k, in ath_hw_set_keycache_entry() argument 143 switch (k->kv_type) { in ath_hw_set_keycache_entry() 164 if (k->kv_len < WLAN_KEY_LEN_WEP40) { in ath_hw_set_keycache_entry() 166 k->kv_len); in ath_hw_set_keycache_entry() 169 if (k->kv_len <= WLAN_KEY_LEN_WEP40) in ath_hw_set_keycache_entry() 171 else if (k->kv_len <= WLAN_KEY_LEN_WEP104) in ath_hw_set_keycache_entry() 180 ath_err(common, "cipher %u not supported\n", k->kv_type); in ath_hw_set_keycache_entry() 184 key0 = get_unaligned_le32(k->kv_val + 0); in ath_hw_set_keycache_entry() 185 key1 = get_unaligned_le16(k->kv_val + 4); in ath_hw_set_keycache_entry() 186 key2 = get_unaligned_le32(k->kv_val + 6); in ath_hw_set_keycache_entry() [all …]
|
/Linux-v6.1/arch/x86/crypto/ |
D | sha256-avx2-asm.S | 160 addl \disp(%rsp, SRND), h # h = k + w + h # -- 174 add h, d # d = k + w + h + d # -- 188 vpslld $(32-7), XTMP1, XTMP3 190 add y1, h # h = k + w + h + S0 # -- 192 add y2, d # d = k + w + h + d + S1 + CH = d + t1 # -- 196 add y2, h # h = k + w + h + S0 + S1 + CH = t1 + S0# -- 208 addl offset(%rsp, SRND), h # h = k + w + h # -- 223 add h, d # d = k + w + h + d # -- 225 vpslld $(32-18), XTMP1, XTMP1 242 add y1, h # h = k + w + h + S0 # -- [all …]
|
/Linux-v6.1/include/linux/ |
D | jhash.h | 14 * These are functions for producing 32-bit hashes for hash table lookup. 34 /* __jhash_mix -- mix 3 32-bit values reversibly. */ 45 /* __jhash_final - final mixing of 3 32-bit values (a,b,c) into c */ 61 * @k: sequence of bytes as key 73 const u8 *k = key; in jhash() local 78 /* All but the last block: affect some 32 bits of (a,b,c) */ in jhash() 80 a += __get_unaligned_cpu32(k); in jhash() 81 b += __get_unaligned_cpu32(k + 4); in jhash() 82 c += __get_unaligned_cpu32(k + 8); in jhash() 85 k += 12; in jhash() [all …]
|
D | zconf.h | 13 that is: 128K for windowBits=15 + 128K for memLevel = 8 (default values) 15 the default memory requirements from 256K to 128K, compile with 20 that is, 32K for windowBits=15 (default value) plus a few kilobytes 35 # define MAX_WBITS 15 /* 32K LZ77 window */ 54 typedef unsigned long uLong; /* 32 bits or more */
|
D | zutil.h | 11 /* @(#) $Id: zutil.h,v 1.1 2000/01/01 03:32:23 davem Exp $ */ 55 /* NMAX is the largest n such that 255n(n+1)/2 + (n+1)(BASE-1) <= 2^32-1 */ 65 Update a running Adler-32 checksum with the bytes buf[0..len-1] and 68 An Adler-32 checksum is almost as reliable as a CRC32 but can be computed 84 int k; in zlib_adler32() local 89 k = len < NMAX ? len : NMAX; in zlib_adler32() 90 len -= k; in zlib_adler32() 91 while (k >= 16) { in zlib_adler32() 94 k -= 16; in zlib_adler32() 96 if (k != 0) do { in zlib_adler32() [all …]
|
/Linux-v6.1/tools/include/linux/ |
D | jhash.h | 14 * These are functions for producing 32-bit hashes for hash table lookup. 34 /* __jhash_mix -- mix 3 32-bit values reversibly. */ 45 /* __jhash_final - final mixing of 3 32-bit values (a,b,c) into c */ 61 * @k: sequence of bytes as key 73 const u8 *k = key; in jhash() local 78 /* All but the last block: affect some 32 bits of (a,b,c) */ in jhash() 80 a += __get_unaligned_cpu32(k); in jhash() 81 b += __get_unaligned_cpu32(k + 4); in jhash() 82 c += __get_unaligned_cpu32(k + 8); in jhash() 85 k += 12; in jhash() [all …]
|
/Linux-v6.1/drivers/irqchip/ |
D | irq-renesas-intc-irqpin.c | 36 * SENSE is read-write 32-bit with 2-bits or 4-bits per IRQ (*) 37 * PRIO is read-write 32-bit with 4-bits per IRQ (**) 38 * SOURCE is read-only 32-bit or 8-bit with 1-bit per IRQ (***) 39 * MASK is write-only 32-bit or 8-bit with 1-bit per IRQ (***) 40 * CLEAR is write-only 32-bit or 8-bit with 1-bit per IRQ (***) 147 /* The PRIO register is assumed to be 32-bit with fixed 4-bit fields. */ in intc_irqpin_mask_unmask_prio() 149 int shift = 32 - (irq + 1) * bitfield_width; in intc_irqpin_mask_unmask_prio() 158 /* The SENSE register is assumed to be 32-bit. */ in intc_irqpin_set_sense() 160 int shift = 32 - (irq + 1) * bitfield_width; in intc_irqpin_set_sense() 305 int k; in intc_irqpin_shared_irq_handler() local [all …]
|
/Linux-v6.1/arch/sparc/crypto/ |
D | camellia_asm.S | 32 .align 32 36 ld [%o0 + 0x00], %f0 ! i0, k[0] 37 ld [%o0 + 0x04], %f1 ! i1, k[1] 38 ld [%o0 + 0x08], %f2 ! i2, k[2] 39 ld [%o0 + 0x0c], %f3 ! i3, k[3] 40 std %f0, [%o1 + 0x00] ! k[0, 1] 42 std %f2, [%o1 + 0x08] ! k[2, 3] 49 std %f0, [%o1 + 0x20] ! k[8, 9] 57 std %f2, [%o1 + 0x28] ! k[10, 11] 89 std %f0, [%o1 + 0x10] ! k[ 4, 5] [all …]
|
/Linux-v6.1/drivers/staging/media/atomisp/pci/isp/kernels/s3a/s3a_1.0/ |
D | ia_css_s3a.host.c | 145 ia_css_debug_dtrace(level, "\t%-32s = %d\n", in ia_css_ae_dump() 147 ia_css_debug_dtrace(level, "\t%-32s = %d\n", in ia_css_ae_dump() 149 ia_css_debug_dtrace(level, "\t%-32s = %d\n", in ia_css_ae_dump() 158 ia_css_debug_dtrace(level, "\t%-32s = %d\n", in ia_css_awb_dump() 160 ia_css_debug_dtrace(level, "\t%-32s = %d\n", in ia_css_awb_dump() 162 ia_css_debug_dtrace(level, "\t%-32s = %d\n", in ia_css_awb_dump() 171 ia_css_debug_dtrace(level, "\t%-32s = %d\n", in ia_css_af_dump() 173 ia_css_debug_dtrace(level, "\t%-32s = %d\n", in ia_css_af_dump() 175 ia_css_debug_dtrace(level, "\t%-32s = %d\n", in ia_css_af_dump() 177 ia_css_debug_dtrace(level, "\t%-32s = %d\n", in ia_css_af_dump() [all …]
|
/Linux-v6.1/Documentation/devicetree/bindings/opp/ |
D | allwinner,sun50i-h6-operating-points.yaml | 72 clock-latency-ns = <244144>; /* 8 32k periods */ 81 clock-latency-ns = <244144>; /* 8 32k periods */ 90 clock-latency-ns = <244144>; /* 8 32k periods */ 99 clock-latency-ns = <244144>; /* 8 32k periods */ 108 clock-latency-ns = <244144>; /* 8 32k periods */ 117 clock-latency-ns = <244144>; /* 8 32k periods */ 126 clock-latency-ns = <244144>; /* 8 32k periods */
|
/Linux-v6.1/drivers/net/wireguard/selftest/ |
D | allowedips.c | 32 if (bits == 32) { in print_node() 112 if (cidr % 32) in horrible_cidr_to_mask() 113 mask.all[cidr / 32] = (__force u32)htonl( in horrible_cidr_to_mask() 114 (0xFFFFFFFFUL << (32 - (cidr % 32))) & 0xFFFFFFFFUL); in horrible_cidr_to_mask() 256 unsigned int i, j, k, mutate_amount, cidr; in randomized_test() local 288 cidr = prandom_u32_max(32) + 1; in randomized_test() 303 mutate_amount = prandom_u32_max(32); in randomized_test() 304 for (k = 0; k < mutate_amount / 8; ++k) in randomized_test() 305 mutate_mask[k] = 0xff; in randomized_test() 306 mutate_mask[k] = 0xff in randomized_test() [all …]
|
/Linux-v6.1/arch/m68k/include/uapi/asm/ |
D | bootinfo-hp300.h | 25 #define HP_320 0 /* 16MHz 68020+HP MMU+16K external cache */ 28 #define HP_345 3 /* 50MHz 68030+32K external cache */ 29 #define HP_350 4 /* 25MHz 68020+HP MMU+32K external cache */ 31 #define HP_370 6 /* 33MHz 68030+64K external cache */ 32 #define HP_375 7 /* 50MHz 68030+32K external cache */ 36 #define HP_400 10 /* 50MHz 68030+32K external cache */
|
/Linux-v6.1/lib/ |
D | test_hash.c | 5 * produce the same thing and, for cases where a k-bit hash 24 /* 32-bit XORSHIFT generator. Seed must not be zero. */ 60 /* Low 32-bits of integer to be hashed. */ 85 test_int_hash_64(struct kunit *test, struct test_hash_params *params, u32 const *m, int *k) in test_int_hash_64() argument 87 params->h2 = hash_64_generic(*params->h64, *k); in test_int_hash_64() 91 *params->h64, *k, params->h1, params->h2); in test_int_hash_64() 95 *params->h64, *k, params->h1, *m); in test_int_hash_64() 112 int k; in test_int_hash() local 121 /* Test k = 1..32 bits */ in test_int_hash() 122 for (k = 1; k <= 32; k++) { in test_int_hash() [all …]
|
/Linux-v6.1/crypto/ |
D | wp512.c | 31 #define WP256_DIGEST_SIZE 32 34 #define WP512_LENGTHBYTES 32 784 u64 K[8]; /* the round key */ in wp512_process_buffer() local 793 state[0] = block[0] ^ (K[0] = wctx->hash[0]); in wp512_process_buffer() 794 state[1] = block[1] ^ (K[1] = wctx->hash[1]); in wp512_process_buffer() 795 state[2] = block[2] ^ (K[2] = wctx->hash[2]); in wp512_process_buffer() 796 state[3] = block[3] ^ (K[3] = wctx->hash[3]); in wp512_process_buffer() 797 state[4] = block[4] ^ (K[4] = wctx->hash[4]); in wp512_process_buffer() 798 state[5] = block[5] ^ (K[5] = wctx->hash[5]); in wp512_process_buffer() 799 state[6] = block[6] ^ (K[6] = wctx->hash[6]); in wp512_process_buffer() [all …]
|
/Linux-v6.1/arch/arm/boot/dts/ |
D | sun8i-a33.dtsi | 56 clock-latency-ns = <244144>; /* 8 32k periods */ 62 clock-latency-ns = <244144>; /* 8 32k periods */ 68 clock-latency-ns = <244144>; /* 8 32k periods */ 74 clock-latency-ns = <244144>; /* 8 32k periods */ 80 clock-latency-ns = <244144>; /* 8 32k periods */ 86 clock-latency-ns = <244144>; /* 8 32k periods */ 92 clock-latency-ns = <244144>; /* 8 32k periods */ 98 clock-latency-ns = <244144>; /* 8 32k periods */ 104 clock-latency-ns = <244144>; /* 8 32k periods */ 110 clock-latency-ns = <244144>; /* 8 32k periods */ [all …]
|
/Linux-v6.1/drivers/mtd/ |
D | ssfdc.c | 46 1MiB 2MiB 4MiB 8MiB 16MiB 32MiB 64MiB 128MiB 49 NSector 4 8 8 16 16 16 32 32 50 SumSector 2,000 4,000 8,000 16,000 32,000 64,000 128,000 256,000 68 { MiB( 32), 500, 8, 16 }, 69 { MiB( 64), 500, 8, 32 }, 70 { MiB(128), 500, 16, 32 }, 77 int k; in get_chs() local 80 k = 0; in get_chs() 81 while (chs_table[k].size > 0 && size > chs_table[k].size) in get_chs() 82 k++; in get_chs() [all …]
|
/Linux-v6.1/arch/arm64/include/asm/ |
D | atomic_ll_sc.h | 16 #define K macro 106 ATOMIC_OPS(and, and, K) in ATOMIC_OPS() 107 ATOMIC_OPS(or, orr, K) in ATOMIC_OPS() 108 ATOMIC_OPS(xor, eor, K) in ATOMIC_OPS() 253 if (sz < 32) \ 275 * handle the 'K' constraint for the value 4294967295 - thus we use no 276 * constraint for 32 bit operations. 278 __CMPXCHG_CASE(w, b, , 8, , , , , K) 279 __CMPXCHG_CASE(w, h, , 16, , , , , K) 280 __CMPXCHG_CASE(w, , , 32, , , , , K) [all …]
|
/Linux-v6.1/drivers/spi/ |
D | spi-sh-msiof.c | 100 #define SIMDR2_BITLEN1(i) (((i) - 1) << 24) /* Data Size (8-32 bits) */ 105 #define SISCR_BRPS_MASK GENMASK(12, 8) /* Prescaler Setting (1-32) */ 138 #define SIFCTR_TFWM_32 (1 << 29) /* Transfer Request when 32 empty stages */ 153 #define SIFCTR_RFWM_32 (4 << 13) /* Transfer Request when 32 valid stages */ 279 if (!div_pow && div <= 32 && div > 2) in sh_msiof_spi_set_clk_regs() 287 for (; brps > 32; div_pow++) in sh_msiof_spi_set_clk_regs() 290 /* Set transfer rate composite divisor to 2^5 * 32 = 1024 */ in sh_msiof_spi_set_clk_regs() 294 brps = 32; in sh_msiof_spi_set_clk_regs() 415 int k; in sh_msiof_spi_write_fifo_8() local 417 for (k = 0; k < words; k++) in sh_msiof_spi_write_fifo_8() [all …]
|
/Linux-v6.1/arch/m68k/fpsp040/ |
D | srem_mod.S | 28 | Step 2. Set L := expo(X)-expo(Y), k := 0, Q := 0. 39 | 3.4 k := k + 1, j := j - 1, Q := 2Q, R := 2R. Go to 129 subil #32,%d3 131 bfffo %d4{#0:#32},%d6 139 bfffo %d4{#0:#32},%d6 145 addil #32,%d6 174 subil #32,%d0 176 bfffo %d1{#0:#32},%d6 184 bfffo %d1{#0:#32},%d6 190 addil #32,%d6 [all …]
|
/Linux-v6.1/include/crypto/ |
D | twofish.h | 8 #define TF_MAX_KEY_SIZE 32 15 * subkeys, K[0] through K[7]. k holds the remaining, "round" subkeys. Note 16 * that k[i] corresponds to what the Twofish paper calls K[i+8]. */ 18 u32 s[4][256], w[8], k[32]; member
|