| /OK3568_Linux_fs/kernel/drivers/gpu/drm/i915/gt/ |
| H A D | intel_llc.c | 48 struct ia_constants *consts) in get_ia_constants() argument 59 consts->max_ia_freq = cpu_max_MHz(); in get_ia_constants() 61 consts->min_ring_freq = in get_ia_constants() 64 consts->min_ring_freq = mult_frac(consts->min_ring_freq, 8, 3); in get_ia_constants() 66 consts->min_gpu_freq = rps->min_freq; in get_ia_constants() 67 consts->max_gpu_freq = rps->max_freq; in get_ia_constants() 70 consts->min_gpu_freq /= GEN9_FREQ_SCALER; in get_ia_constants() 71 consts->max_gpu_freq /= GEN9_FREQ_SCALER; in get_ia_constants() 79 const struct ia_constants *consts, in calc_ia_freq() argument 84 const int diff = consts->max_gpu_freq - gpu_freq; in calc_ia_freq() [all …]
|
| H A D | selftest_llc.c | 14 struct ia_constants consts; in gen6_verify_ring_freq() local 21 if (!get_ia_constants(llc, &consts)) in gen6_verify_ring_freq() 24 for (gpu_freq = consts.min_gpu_freq; in gen6_verify_ring_freq() 25 gpu_freq <= consts.max_gpu_freq; in gen6_verify_ring_freq() 32 calc_ia_freq(llc, gpu_freq, &consts, &ia_freq, &ring_freq); in gen6_verify_ring_freq() 39 gpu_freq, consts.min_gpu_freq, consts.max_gpu_freq); in gen6_verify_ring_freq() 47 gpu_freq, consts.min_gpu_freq, consts.max_gpu_freq, in gen6_verify_ring_freq() 57 gpu_freq, consts.min_gpu_freq, consts.max_gpu_freq, in gen6_verify_ring_freq()
|
| /OK3568_Linux_fs/kernel/crypto/ |
| H A D | cmac.c | 56 __be64 *consts = PTR_ALIGN((void *)ctx->ctx, in crypto_cmac_digest_setkey() local 67 memset(consts, 0, bs); in crypto_cmac_digest_setkey() 68 crypto_cipher_encrypt_one(ctx->child, (u8 *)consts, (u8 *)consts); in crypto_cmac_digest_setkey() 73 _const[0] = be64_to_cpu(consts[1]); in crypto_cmac_digest_setkey() 74 _const[1] = be64_to_cpu(consts[0]); in crypto_cmac_digest_setkey() 82 consts[i + 0] = cpu_to_be64(_const[1]); in crypto_cmac_digest_setkey() 83 consts[i + 1] = cpu_to_be64(_const[0]); in crypto_cmac_digest_setkey() 89 _const[0] = be64_to_cpu(consts[0]); in crypto_cmac_digest_setkey() 96 consts[i] = cpu_to_be64(_const[0]); in crypto_cmac_digest_setkey() 173 u8 *consts = PTR_ALIGN((void *)tctx->ctx, in crypto_cmac_digest_final() local [all …]
|
| H A D | xcbc.c | 56 u8 *consts = PTR_ALIGN(&ctx->ctx[0], alignmask + 1); in crypto_xcbc_digest_setkey() local 64 crypto_cipher_encrypt_one(ctx->child, consts, (u8 *)ks + bs); in crypto_xcbc_digest_setkey() 65 crypto_cipher_encrypt_one(ctx->child, consts + bs, (u8 *)ks + bs * 2); in crypto_xcbc_digest_setkey() 140 u8 *consts = PTR_ALIGN(&tctx->ctx[0], alignmask + 1); in crypto_xcbc_digest_final() local 160 crypto_xor(prev, consts + offset, bs); in crypto_xcbc_digest_final()
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-python/recipes-devtools/python/python3-pyruvate/ |
| H A D | 0001-linux.rs-Define-consts-for-rv32-architecture.patch | 4 Subject: [PATCH] linux.rs: Define consts for rv32 architecture 16 @@ -34,6 +34,7 @@ mod consts { 22 mod consts {
|
| /OK3568_Linux_fs/kernel/arch/arm64/crypto/ |
| H A D | aes-glue.c | 123 u8 __aligned(8) consts[]; 748 be128 *consts = (be128 *)ctx->consts; in cmac_setkey() local 758 aes_ecb_encrypt(ctx->consts, (u8[AES_BLOCK_SIZE]){}, ctx->key.key_enc, in cmac_setkey() 762 cmac_gf128_mul_by_x(consts, consts); in cmac_setkey() 763 cmac_gf128_mul_by_x(consts + 1, consts); in cmac_setkey() 788 aes_ecb_encrypt(ctx->consts, ks[1], ctx->key.key_enc, rounds, 2); in xcbc_setkey() 891 u8 *consts = tctx->consts; in cmac_final() local 895 consts += AES_BLOCK_SIZE; in cmac_final() 898 mac_do_update(&tctx->key, consts, 1, ctx->dg, 0, 1); in cmac_final()
|
| /OK3568_Linux_fs/u-boot/tools/ |
| H A D | .proftool.cmd | |
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-webserver/recipes-httpd/cherokee/cherokee/ |
| H A D | cherokee-install-configured.py-once.patch | 35 consts.py \
|
| /OK3568_Linux_fs/kernel/drivers/crypto/inside-secure/ |
| H A D | safexcel_hash.c | 2181 __be64 consts[4]; in safexcel_cmac_setkey() local 2203 memset(consts, 0, AES_BLOCK_SIZE); in safexcel_cmac_setkey() 2204 crypto_cipher_encrypt_one(ctx->kaes, (u8 *)consts, (u8 *)consts); in safexcel_cmac_setkey() 2207 _const[0] = be64_to_cpu(consts[1]); in safexcel_cmac_setkey() 2208 _const[1] = be64_to_cpu(consts[0]); in safexcel_cmac_setkey() 2216 consts[i + 0] = cpu_to_be64(_const[1]); in safexcel_cmac_setkey() 2217 consts[i + 1] = cpu_to_be64(_const[0]); in safexcel_cmac_setkey() 2222 ctx->base.ipad.be[i] = cpu_to_be32(((u32 *)consts)[i]); in safexcel_cmac_setkey()
|
| /OK3568_Linux_fs/kernel/arch/x86/crypto/ |
| H A D | crc32c-pcl-intel-asm_64.S | 222 pmovzxdq (%bufp,%rax), %xmm0 # 2 consts: K1:K2
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-python/recipes-devtools/python/ |
| H A D | python3-pyruvate_1.1.2.bb | 119 …file://0001-linux.rs-Define-consts-for-rv32-architecture.patch;patchdir=../cargo_home/bitbake/nix-…
|
| /OK3568_Linux_fs/kernel/arch/mips/cavium-octeon/ |
| H A D | octeon-irq.c | 2865 union cvmx_ciu3_const consts; in octeon_irq_init_ciu3() local 2883 consts.u64 = cvmx_read_csr(base_addr + CIU3_CONST); in octeon_irq_init_ciu3()
|
| /OK3568_Linux_fs/kernel/drivers/crypto/vmx/ |
| H A D | aesp8-ppc.pl | 3794 my $consts=1; 3799 if ($consts && m/\.(long|byte)\s+(.+)\s+(\?[a-z]*)$/o) { 3825 $consts=0 if (m/Lconsts:/o); # end of table
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/files/ |
| H A D | buildhistory_filelist1.txt | 1695 -rw-r--r-- root root 1471 ./usr/include/bits/sigevent-consts.h 1697 -rw-r--r-- root root 204 ./usr/include/bits/siginfo-consts-arch.h 1698 -rw-r--r-- root root 6855 ./usr/include/bits/siginfo-consts.h
|
| H A D | buildhistory_filelist2.txt | 1696 -rw-r--r-- root root 1471 ./usr/include/bits/sigevent-consts.h 1698 -rw-r--r-- root root 204 ./usr/include/bits/siginfo-consts-arch.h 1699 -rw-r--r-- root root 6855 ./usr/include/bits/siginfo-consts.h
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/share/info/ |
| H A D | ld.info | 2484 around a problem with consts that is described here:
|
| H A D | gcc.info | 821 -fkeep-static-consts -flimit-function-alignment -flive-range-shrinkage 8591 '-fkeep-static-consts' 8598 '-fno-keep-static-consts' option. 33691 Static consts initialized in-class are not marked unless they are 60952 * fkeep-static-consts: Optimize Options. (line 378)
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/share/info/ |
| H A D | ld.info | 2484 around a problem with consts that is described here:
|
| H A D | gcc.info | 821 -fkeep-static-consts -flimit-function-alignment -flive-range-shrinkage 8591 '-fkeep-static-consts' 8598 '-fno-keep-static-consts' option. 33691 Static consts initialized in-class are not marked unless they are 60952 * fkeep-static-consts: Optimize Options. (line 378)
|