Home
last modified time | relevance | path

Searched refs:param (Results 1 – 25 of 26) sorted by relevance

12

/lib/mbedtls/external/mbedtls/tests/scripts/
A Dgenerate_psa_wrappers.py115 param: BufferParameter,
123 param.buffer_name, param.size_name
136 for param in buffer_parameters:
137 self._write_poison_buffer_parameter(out, param, poison)
158 param
159 for param in self._detect_buffer_parameters(function.arguments,
162 function.arguments[param.index].name))
A Dgenerate_psa_tests.py65 param: Optional[int] = None,
78 import_dependencies = [('!' if param is None else '') +
81 import_dependencies += [('!' if param == i else '') +
98 if not generate_dependencies and param is not None:
/lib/mbedtls/external/mbedtls/tests/suites/
A Dhost_test.function7 * \param str String parameter.
30 * \param str Input string.
31 * \param p_value Pointer to output value.
77 * \param f FILE pointer
79 * \param len Length of the buf.
127 * \param buf Input string
128 * \param len Input string length
129 * \param params Out params found
271 * \param n Buffer test length.
272 * \param ref_buf Expected buffer.
[all …]
A Dmain_test.function67 * \param exp_id Expression identifier.
68 * \param out_value Pointer to int to hold the integer.
99 * \param dep_id Dependency identifier.
127 * \param param_array The array of parameters. Each element is a `void *`
150 * \param func_idx Test function index.
151 * \param params The array of parameters to pass to the test function.
190 * \param func_idx Test function index.
225 * \param argc Command line arguments count.
226 * \param argv Array of command line arguments.
A Dtest_suite_dhm.function5 mbedtls_dhm_parameter param,
12 TEST_ASSERT(mbedtls_dhm_get_value(ctx, param, &actual) == 0);
39 /* The DHM param output from Mbed TLS has leading zeros stripped, as
A Dtest_suite_net.function27 * \param ctx An initialized, but unopened socket context.
29 * \param wanted_fd The desired file descriptor.
A Dtest_suite_bignum_core.function10 * \param[in] A Little-endian presentation of the left operand.
11 * \param[in] B Little-endian presentation of the right operand.
12 * \param limbs Number of limbs in each MPI (\p A, \p B, \p S and \p X).
13 * \param[in] S Little-endian presentation of the expected sum.
14 * \param carry Expected carry from the addition.
15 * \param[in,out] X Temporary storage to be used for results.
86 * \param[in] A Little-endian presentation of the left operand.
87 * \param[in] B Little-endian presentation of the right operand.
89 * \param[in] S Little-endian presentation of the expected sum.
90 * \param carry Expected carry from the addition.
[all …]
A Dtest_suite_psa_crypto_entropy.function19 * \param expected_size Expected size in bytes.
A Dtest_suite_psa_crypto.function71 * \param buffer Pointer to the beginning of the buffer.
72 * \param c Expected value of every byte.
73 * \param size Size of the buffer in bytes.
331 * \param key_type_arg Type of key passed in
333 * \param alg_arg The type of algorithm used
334 * \param nonce Nonce data
335 * \param additional_data Additional data
339 * \param input_data Data to encrypt / decrypt
347 * \param expected_output Expected output
599 * \param key_type_arg Type of key passed in
[all …]
A Dtest_suite_psa_crypto_driver_wrappers.function421 * \param modulus Key modulus. Must not have leading zeros.
422 * \param private_exponent Key private exponent.
423 * \param alg An RSA algorithm.
424 * \param input_data The input plaintext.
425 * \param buf The ciphertext produced by the driver.
426 * \param length Length of \p buf in bytes.
A Dtest_suite_pk.function254 * \param pk The PK object to fill. It must have been initialized
256 * \param curve_or_keybits - For RSA keys, the key size in bits.
A Dtest_suite_shax.data2414 SHA-3 invalid param
A Dtest_suite_x509parse.data1403 X509 CRT ASN1 (TBS, inv AlgID, param inv length encoding)
1407 X509 CRT ASN1 (TBS, inv AlgID, param length out of bounds)
1411 X509 CRT ASN1 (TBS, inv AlgID, param length mismatch)
/lib/mbedtls/external/mbedtls/scripts/
A Dgenerate_ssl_debug_helpers.py86 param = match.groupdict()['param']
90 stack.append((directive, param, start, end))
108 param = "!( {} )".format(pair_param)
111 param = pair_param
114 param = pair_param
116 stack.append((directive, param, start, end))
/lib/efi_loader/
A Defi_variable_tee.c102 struct tee_param param[2]; in optee_mm_communicate() local
131 memset(param, 0, sizeof(param)); in optee_mm_communicate()
132 param[0].attr = TEE_PARAM_ATTR_TYPE_MEMREF_INOUT; in optee_mm_communicate()
133 param[0].u.memref.size = buf_size; in optee_mm_communicate()
134 param[0].u.memref.shm = shm; in optee_mm_communicate()
135 param[1].attr = TEE_PARAM_ATTR_TYPE_VALUE_OUTPUT; in optee_mm_communicate()
137 rc = tee_invoke_func(conn.tee, &arg, 2, param); in optee_mm_communicate()
147 switch (param[1].u.value.a) { in optee_mm_communicate()
/lib/mbedtls/external/mbedtls/programs/test/
A Dudp_proxy_wrapper.sh64 for param; do
65 case "$param" in
/lib/lwip/lwip/contrib/apps/LwipMibCompiler/CCodeGeneration/
A DFunction.cs79 foreach (VariableType param in decl.Parameter) in FromDeclaration()
81 result.parameter.Add(param.Clone() as VariableType); in FromDeclaration()
/lib/mbedtls/external/mbedtls/library/
A Ddhm.c79 static int dhm_check_range(const mbedtls_mpi *param, const mbedtls_mpi *P) in dhm_check_range() argument
88 if (mbedtls_mpi_cmp_int(param, 2) < 0 || in dhm_check_range()
89 mbedtls_mpi_cmp_mpi(param, &U) > 0) { in dhm_check_range()
114 mbedtls_dhm_parameter param, in mbedtls_dhm_get_value() argument
118 switch (param) { in mbedtls_dhm_get_value()
/lib/mbedtls/external/mbedtls/include/mbedtls/
A Ddhm.h320 mbedtls_dhm_parameter param,
/lib/mbedtls/external/mbedtls/scripts/data_files/driver_templates/
A Dpsa_crypto_driver_wrappers_no_static.c.jinja75 * \param[in] attributes The key attributes.
76 * \param[out] key_buffer_size Minimum buffer size to contain the key material
A Dpsa_crypto_driver_wrappers.h.jinja694 * \param[in] attributes The key attributes
695 * \param[in] data The input key data.
696 * \param[in] data_length The input data length.
697 * \param[out] key_buffer_size Minimum buffer size to contain the key material.
/lib/
A Dbch.c486 int rem, c, r, p, k, param[m]; in solve_linear_system() local
516 param[k++] = c; in solve_linear_system()
528 rows[r] = (p && (r == param[p-1])) ? in solve_linear_system()
540 rows[param[c]] = (rows[param[c]] & ~1)|((p >> c) & 1); in solve_linear_system()
/lib/mbedtls/external/mbedtls/scripts/mbedtls_dev/
A Dcrypto_knowledge.py95 [param.strip() for param in params])
/lib/lwip/lwip/src/apps/http/
A Dhttpd.c2165 char *param = (char *)strstr(uri, "?"); local
2166 if (param != NULL) {
2168 *param = 0;
2182 if (param != NULL) {
2183 *param = '?';
/lib/zstd/decompress/
A Dzstd_decompress.c1652 size_t ZSTD_DCtx_getParameter(ZSTD_DCtx* dctx, ZSTD_dParameter param, int* value) in ZSTD_DCtx_getParameter() argument
1654 switch (param) { in ZSTD_DCtx_getParameter()

Completed in 105 milliseconds

12