/optee_os/core/drivers/clk/sam/ |
A D | sama5d2_clk.c | 80 .r = { .min = 0, .max = 83000000 }, 84 .r = { .min = 0, .max = 83000000 }, 94 .r = { .min = 0, .max = 83000000 }, 98 .r = { .min = 0, .max = 83000000 }, 102 .r = { .min = 0, .max = 83000000 }, 106 .r = { .min = 0, .max = 83000000 }, 110 .r = { .min = 0, .max = 83000000 }, 114 .r = { .min = 0, .max = 83000000 }, 118 .r = { .min = 0, .max = 83000000 }, 122 .r = { .min = 0, .max = 83000000 }, [all …]
|
A D | at91_peripheral.c | 40 if (periph->range.max) { in clk_sam9x5_peripheral_autodiv() 47 if (parent_rate >> shift <= periph->range.max) in clk_sam9x5_peripheral_autodiv() 120 if (periph->id < PERIPHERAL_ID_MIN || !periph->range.max) { in clk_sam9x5_peripheral_set_rate() 127 if (periph->range.max && rate > periph->range.max) in clk_sam9x5_peripheral_set_rate()
|
A D | at91_pll.c | 145 if (parent_rate > charac->input.max) { in clk_pll_get_best_div_mul() 146 tmpdiv = DIV_ROUND_UP(parent_rate, charac->input.max); in clk_pll_get_best_div_mul() 210 bestrate <= (long)charac->output[i].max) in clk_pll_get_best_div_mul()
|
A D | at91_generated.c | 97 if (gck->range.max && rate > gck->range.max) in clk_generated_set_rate()
|
A D | at91_clk.h | 38 unsigned long max; member 41 #define CLK_RANGE(MIN, MAX) {.min = MIN, .max = MAX,}
|
/optee_os/core/lib/zlib/ |
A D | inftrees.c | 43 unsigned min, max; /* minimum and maximum code lengths */ local 115 for (max = MAXBITS; max >= 1; max--) 116 if (count[max] != 0) break; 117 if (root > max) root = max; 118 if (max == 0) { /* no symbols to code at all */ 127 for (min = 1; min < max; min++) 138 if (left > 0 && (type == CODES || max != 1)) 254 if (len == max) break; 270 while (curr + drop < max) {
|
/optee_os/lib/libmbedtls/core/ |
A D | mbed_helpers.c | 16 TEE_Result mbed_gen_random_upto(mbedtls_mpi *n, mbedtls_mpi *max) in mbed_gen_random_upto() argument 18 size_t sz = mbedtls_mpi_size(max); in mbed_gen_random_upto() 27 mbedtls_mpi_cmp_mpi(n, max) == -1) in mbed_gen_random_upto()
|
A D | mbed_helpers.h | 41 TEE_Result mbed_gen_random_upto(mbedtls_mpi *n, mbedtls_mpi *max);
|
/optee_os/core/arch/arm/dts/ |
A D | stm32mp157c-ed1.dts | 83 regulator-max-microvolt = <2900000>; 163 regulator-max-microvolt = <1350000>; 172 regulator-max-microvolt = <1350000>; 181 regulator-max-microvolt = <3300000>; 191 regulator-max-microvolt = <3300000>; 200 regulator-max-microvolt = <2900000>; 207 regulator-max-microvolt = <2800000>; 214 regulator-max-microvolt = <750000>; 222 regulator-max-microvolt = <3300000>; 229 regulator-max-microvolt = <2900000>; [all …]
|
A D | stm32mp15xx-dkx.dtsi | 125 max-speed = <1000>; 247 regulator-max-microvolt = <1350000>; 256 regulator-max-microvolt = <1350000>; 265 regulator-max-microvolt = <3300000>; 275 regulator-max-microvolt = <3300000>; 284 regulator-max-microvolt = <1800000>; 292 regulator-max-microvolt = <3300000>; 300 regulator-max-microvolt = <750000>; 308 regulator-max-microvolt = <3300000>; 315 regulator-max-microvolt = <2900000>; [all …]
|
A D | fsl-lx2160a-rdb.dts | 28 regulator-max-microvolt = <3300000>; 61 spi-max-frequency = <50000000>; 72 spi-max-frequency = <50000000>;
|
A D | at91-sama5d2_xplained.dts | 92 spi-max-frequency = <80000000>; 142 spi-max-frequency = <50000000>; 199 regulator-max-microvolt = <1350000>; 208 regulator-suspend-max-microvolt=<1400000>; 217 regulator-max-microvolt = <1300000>; 231 regulator-max-microvolt = <3300000>; 245 regulator-max-microvolt = <2500000>; 259 regulator-max-microvolt = <3300000>; 273 regulator-max-microvolt = <3300000>; 287 regulator-max-microvolt = <1800000>;
|
A D | fsl-lx2160a-qds.dts | 28 regulator-max-microvolt = <3300000>; 178 spi-max-frequency = <1000000>; 190 spi-max-frequency = <1000000>; 202 spi-max-frequency = <1000000>;
|
/optee_os/core/lib/libtomcrypt/src/pk/asn1/der/generalizedtime/ |
A D | der_decode_generalizedtime.c | 37 #define DECODE_V(y, max) do {\ argument 39 if (y >= max) return CRYPT_INVALID_PACKET; \ 43 #define DECODE_V4(y, max) do {\ argument 45 if (y >= max) return CRYPT_INVALID_PACKET; \
|
/optee_os/core/drivers/crypto/caam/include/ |
A D | caam_types.h | 30 size_t max; /* Maximum size of the block */ member 38 uint8_t max; /* Maximum size */ member
|
/optee_os/lib/libunw/ |
A D | unwind_arm32.c | 121 unsigned int max = 0; in find_index() local 133 max = (idx_end - idx_start) / sizeof(struct unwind_idx); in find_index() 135 while (min != max) { in find_index() 136 mid = min + (max - min + 1) / 2; in find_index() 146 max = mid - 1; in find_index()
|
/optee_os/lib/libmbedtls/mbedtls/library/ |
A D | ssl_cache.c | 311 void mbedtls_ssl_cache_set_max_entries( mbedtls_ssl_cache_context *cache, int max ) in mbedtls_ssl_cache_set_max_entries() argument 313 if( max < 0 ) max = 0; in mbedtls_ssl_cache_set_max_entries() 315 cache->max_entries = max; in mbedtls_ssl_cache_set_max_entries()
|
/optee_os/core/drivers/crypto/caam/cipher/ |
A D | caam_cipher.c | 35 .def_key = { .min = 16, .max = 32, .mod = 8 }, 44 .def_key = { .min = 16, .max = 32, .mod = 8 }, 53 .def_key = { .min = 16, .max = 32, .mod = 8 }, 65 .def_key = { .min = 16, .max = 32, .mod = 8 }, 80 .def_key = { .min = 8, .max = 8, .mod = 8 }, 89 .def_key = { .min = 8, .max = 8, .mod = 8 }, 104 .def_key = { .min = 16, .max = 24, .mod = 8 }, 114 .def_key = { .min = 16, .max = 24, .mod = 8 }, 155 if (size >= def->min && size <= def->max && !(size % def->mod)) in do_check_keysize() 316 cipherdata->blockbuf.max = cipherdata->alg->size_block; in do_allocate()
|
/optee_os/core/lib/libfdt/ |
A D | fdt_ro.c | 105 uint32_t max = 0; in fdt_find_max_phandle() local 121 if (value > max) in fdt_find_max_phandle() 122 max = value; in fdt_find_max_phandle() 126 *phandle = max; in fdt_find_max_phandle() 133 uint32_t max; in fdt_generate_phandle() local 136 err = fdt_find_max_phandle(fdt, &max); in fdt_generate_phandle() 140 if (max == FDT_MAX_PHANDLE) in fdt_generate_phandle() 144 *phandle = max + 1; in fdt_generate_phandle()
|
/optee_os/core/lib/libtomcrypt/src/pk/asn1/der/utctime/ |
A D | der_decode_utctime.c | 36 #define DECODE_V(y, max) \ argument 38 if (y >= max) return CRYPT_INVALID_PACKET; \
|
/optee_os/core/drivers/crypto/caam/utils/ |
A D | utils_mem.c | 209 ret = caam_alloc_align_buf(&block->buf, block->max); in caam_cpy_block_src() 218 block->max); in caam_cpy_block_src() 220 cpy_size = block->max - block->filled; in caam_cpy_block_src()
|
/optee_os/ |
A D | .checkpatch.conf | 5 --max-line-length=80
|
/optee_os/out/arm/export-ta_arm32/host_include/mbedtls/ |
A D | ssl_cache.h | 136 void mbedtls_ssl_cache_set_max_entries( mbedtls_ssl_cache_context *cache, int max );
|
/optee_os/out/arm/export-ta_arm64/host_include/mbedtls/ |
A D | ssl_cache.h | 136 void mbedtls_ssl_cache_set_max_entries( mbedtls_ssl_cache_context *cache, int max );
|
/optee_os/lib/libmbedtls/mbedtls/include/mbedtls/ |
A D | ssl_cache.h | 136 void mbedtls_ssl_cache_set_max_entries( mbedtls_ssl_cache_context *cache, int max );
|