/u-boot/lib/rsa/ |
A D | rsa-mod-exp.c | 47 int64_t acc = 0; in subtract_modulus() local 51 acc += (uint64_t)num[i] - key->modulus[i]; in subtract_modulus() 52 num[i] = (uint32_t)acc; in subtract_modulus() 53 acc >>= 32; in subtract_modulus() 196 uint32_t val[key->len], acc[key->len], tmp[key->len]; in pow_mod() local 224 montgomery_mul(key, tmp, acc, acc); /* tmp = acc^2 / R mod n */ in pow_mod() 228 montgomery_mul(key, acc, tmp, a_scaled); in pow_mod() 231 memcpy(acc, tmp, key->len * sizeof(acc[0])); in pow_mod() 236 montgomery_mul(key, tmp, acc, acc); /* tmp = acc^2 / R mod n */ in pow_mod() 238 memcpy(result, acc, key->len * sizeof(result[0])); in pow_mod() [all …]
|
/u-boot/lib/ |
A D | sscanf.c | 39 u64 acc; member 59 u64 acc; in str_to_int_convert() local 140 acc += c; in str_to_int_convert() 146 info->acc = acc; in str_to_int_convert() 165 u64 acc; in strtoq() local 173 acc = info->acc; in strtoq() 178 acc = -acc; in strtoq() 184 return acc; in strtoq() 200 u64 acc; in strtouq() local 208 acc = info->acc; in strtouq() [all …]
|
A D | xxhash.c | 126 static uint64_t xxh64_round(uint64_t acc, const uint64_t input) in xxh64_round() argument 128 acc += input * PRIME64_2; in xxh64_round() 129 acc = xxh_rotl64(acc, 31); in xxh64_round() 130 acc *= PRIME64_1; in xxh64_round() 131 return acc; in xxh64_round() 134 static uint64_t xxh64_merge_round(uint64_t acc, uint64_t val) in xxh64_merge_round() argument 137 acc ^= val; in xxh64_merge_round() 138 acc = acc * PRIME64_1 + PRIME64_4; in xxh64_merge_round() 139 return acc; in xxh64_merge_round()
|
/u-boot/board/gdsys/a38x/ |
A D | keyprogram.c | 47 u8 acc = 0; in decode_hexstr() local 62 acc = 16 * val; in decode_hexstr() 64 (*result)[i / 2] = acc + val; in decode_hexstr()
|
/u-boot/arch/arm/dts/ |
A D | armada-xp-crs328-4c-20s-4s.dtsi | 57 devbus,acc-first-ps = <124000>; 58 devbus,acc-next-ps = <248000>;
|
A D | armada-xp-crs305-1g-4s.dtsi | 57 devbus,acc-first-ps = <124000>; 58 devbus,acc-next-ps = <248000>;
|
A D | armada-xp-crs326-24g-2s.dtsi | 57 devbus,acc-first-ps = <124000>; 58 devbus,acc-next-ps = <248000>;
|
A D | armada-xp-db-xc3-24g4xg.dts | 56 devbus,acc-first-ps = <124000>; 57 devbus,acc-next-ps = <248000>;
|
A D | armada-385-atl-x530.dtsi | 94 devbus,acc-first-ps = <124000>; 95 devbus,acc-next-ps = <248000>;
|
A D | armada-xp-gp.dts | 78 devbus,acc-first-ps = <124000>; 79 devbus,acc-next-ps = <248000>;
|
A D | armada-xp-maxbcm.dts | 111 devbus,acc-first-ps = <124000>; 112 devbus,acc-next-ps = <248000>;
|
/u-boot/board/cobra5272/ |
A D | README | 19 1. Modify include/configs/cobra5272.h acc. to your prefs
|
/u-boot/drivers/video/ |
A D | mx3fb.c | 79 u32 acc; member 449 ((fmt_cfg[di_setup].acc - 1) << 12), DI_DISP_ACC_CC); in sdc_init_panel()
|
/u-boot/drivers/video/nexell/soc/ |
A D | s5pxx18_soc_dpc.h | 359 void nx_dpc_set_mputime(u32 module_index, u8 setup, u8 hold, u8 acc);
|
A D | s5pxx18_soc_dpc.c | 1104 void nx_dpc_set_mputime(u32 module_index, u8 setup, u8 hold, u8 acc) in nx_dpc_set_mputime() argument 1110 writel((u32)(acc), &pregister->dpcmputime1); in nx_dpc_set_mputime()
|