Searched refs:consts (Results 1 - 14 of 14) sorted by relevance

/linux-master/drivers/gpu/drm/i915/gt/
H A Dselftest_llc.c12 struct ia_constants consts; local
19 if (!get_ia_constants(llc, &consts))
22 for (gpu_freq = consts.min_gpu_freq;
23 gpu_freq <= consts.max_gpu_freq;
30 calc_ia_freq(llc, gpu_freq, &consts, &ia_freq, &ring_freq);
36 gpu_freq, consts.min_gpu_freq, consts.max_gpu_freq);
44 gpu_freq, consts.min_gpu_freq, consts.max_gpu_freq,
54 gpu_freq, consts
[all...]
H A Dintel_llc.c51 struct ia_constants *consts)
59 consts->max_ia_freq = cpu_max_MHz();
61 consts->min_ring_freq =
64 consts->min_ring_freq = mult_frac(consts->min_ring_freq, 8, 3);
66 consts->min_gpu_freq = intel_rps_get_min_raw_freq(rps);
67 consts->max_gpu_freq = intel_rps_get_max_raw_freq(rps);
74 const struct ia_constants *consts,
79 const int diff = consts->max_gpu_freq - gpu_freq;
90 ring_freq = max(consts
50 get_ia_constants(struct intel_llc *llc, struct ia_constants *consts) argument
72 calc_ia_freq(struct intel_llc *llc, unsigned int gpu_freq, const struct ia_constants *consts, unsigned int *out_ia_freq, unsigned int *out_ring_freq) argument
120 struct ia_constants consts; local
[all...]
/linux-master/crypto/
H A Dcmac.c26 * | consts (block size * 2)
31 __be64 consts[]; member in struct:cmac_tfm_ctx
55 __be64 *consts = ctx->consts; local
65 memset(consts, 0, bs);
66 crypto_cipher_encrypt_one(ctx->child, (u8 *)consts, (u8 *)consts);
71 _const[0] = be64_to_cpu(consts[1]);
72 _const[1] = be64_to_cpu(consts[0]);
80 consts[
[all...]
H A Dxcbc.c25 * | consts (block size * 2)
30 u8 consts[]; member in struct:xcbc_tfm_ctx
55 u8 *consts = ctx->consts; local
63 crypto_cipher_encrypt_one(ctx->child, consts, (u8 *)ks + bs);
64 crypto_cipher_encrypt_one(ctx->child, consts + bs, (u8 *)ks + bs * 2);
155 crypto_xor(prev, &tctx->consts[offset], bs);
/linux-master/arch/arm64/crypto/
H A Dsm4-ce-glue.c63 u8 __aligned(8) consts[]; member in struct:sm4_mac_tfm_ctx
527 be128 *consts = (be128 *)ctx->consts; local
533 memset(consts, 0, SM4_BLOCK_SIZE);
541 sm4_ce_crypt_block(ctx->key.rkey_enc, (u8 *)consts, (const u8 *)consts);
546 a = be64_to_cpu(consts[0].a);
547 b = be64_to_cpu(consts[0].b);
548 consts[0].a = cpu_to_be64((a << 1) | (b >> 63));
549 consts[
654 const u8 *consts = tctx->consts; local
[all...]
H A Daes-glue.c129 u8 __aligned(8) consts[]; member in struct:mac_tfm_ctx
821 be128 *consts = (be128 *)ctx->consts; local
831 aes_ecb_encrypt(ctx->consts, (u8[AES_BLOCK_SIZE]){}, ctx->key.key_enc,
835 cmac_gf128_mul_by_x(consts, consts);
836 cmac_gf128_mul_by_x(consts + 1, consts);
861 aes_ecb_encrypt(ctx->consts, ks[1], ctx->key.key_enc, rounds, 2);
964 u8 *consts local
[all...]
/linux-master/tools/net/ynl/lib/
H A Dnlspec.py418 consts dict of all constants/enums
463 self.consts = collections.OrderedDict()
576 self.consts[elem['name']] = self.new_enum(elem)
578 self.consts[elem['name']] = self.new_struct(elem)
580 self.consts[elem['name']] = elem
H A Dynl.py476 enum = self.consts[attr_spec['enum']]
564 enum = self.consts[attr_spec['enum']]
751 members = self.consts[name].members
767 members = self.consts[name].members
796 members = self.consts[name].members
/linux-master/arch/powerpc/crypto/
H A Daesp10-ppc.pl533 my $consts=1;
538 if ($consts && m/\.(long|byte)\s+(.+)\s+(\?[a-z]*)$/o) {
564 $consts=0 if (m/Lconsts:/o); # end of table
H A Daesp8-ppc.pl3837 my $consts=1;
3842 if ($consts && m/\.(long|byte)\s+(.+)\s+(\?[a-z]*)$/o) {
3868 $consts=0 if (m/Lconsts:/o); # end of table
/linux-master/tools/net/ynl/
H A Dynl-gen-c.py66 if self.nested_attrs in self.family.consts:
83 elif value in self.family.consts:
305 enum = self.family.consts[self.attr['enum']]
337 self.is_bitfield = self.family.consts[self.attr['enum']]['type'] == 'flags'
342 self.type_name = self.family.consts[self.attr['enum']].user_type
351 enum = self.family.consts[self.attr['enum']]
354 flags = self.family.consts[self.checks['flags-mask']]
509 enum = self.family.consts[self.attr['enum']]
700 if self.nested and space_name in family.consts:
895 self.consts
[all...]
/linux-master/drivers/crypto/inside-secure/
H A Dsafexcel_hash.c2143 __be64 consts[4]; local
2158 memset(consts, 0, AES_BLOCK_SIZE);
2159 aes_encrypt(ctx->aes, (u8 *)consts, (u8 *)consts);
2162 _const[0] = be64_to_cpu(consts[1]);
2163 _const[1] = be64_to_cpu(consts[0]);
2171 consts[i + 0] = cpu_to_be64(_const[1]);
2172 consts[i + 1] = cpu_to_be64(_const[0]);
2177 ctx->base.ipad.be[i] = cpu_to_be32(((u32 *)consts)[i]);
/linux-master/arch/x86/crypto/
H A Dcrc32c-pcl-intel-asm_64.S221 pmovzxdq (%bufp,%rax), %xmm0 # 2 consts: K1:K2
/linux-master/arch/mips/cavium-octeon/
H A Docteon-irq.c2881 union cvmx_ciu3_const consts; local
2896 consts.u64 = cvmx_read_csr(base_addr + CIU3_CONST);

Completed in 275 milliseconds