Lines Matching defs:out
88 * out (out): Deserialized form.
96 ossl_curve448_scalar_decode(curve448_scalar_t out,
104 * out (out): Deserialized form.
107 ossl_curve448_scalar_decode_long(curve448_scalar_t out,
113 * ser (out): Serialized form of a scalar.
121 * Add two scalars. |a|, |b| and |out| may alias each other.
125 * out (out): a+b.
128 ossl_curve448_scalar_add(curve448_scalar_t out,
132 * Subtract two scalars. |a|, |b| and |out| may alias each other.
135 * out (out): a-b.
138 ossl_curve448_scalar_sub(curve448_scalar_t out,
142 * Multiply two scalars. |a|, |b| and |out| may alias each other.
146 * out (out): a*b.
149 ossl_curve448_scalar_mul(curve448_scalar_t out,
153 * Halve a scalar. |a| and |out| may alias each other.
156 * out (out): a/2.
159 ossl_curve448_scalar_halve(curve448_scalar_t out, const curve448_scalar_t a);
166 * out (out): Will become a copy of a.
168 static ossl_inline void curve448_scalar_copy(curve448_scalar_t out,
171 *out = *a;
178 * a (out): A copy of the point.
206 * two_a (out): The sum a+a.
216 * out (out): The scaled point base*scalar
226 ossl_x448_int(uint8_t out[X448_PUBLIC_BYTES],
246 * out (out): The scaled and encoded point.
251 uint8_t out[X448_PUBLIC_BYTES],
258 * out (out): The scaled point base*scalar
262 ossl_x448_derive_public_key(uint8_t out[X448_PUBLIC_BYTES],
266 * Multiply a precomputed base point by a scalar: out = scalar*base.
268 * scaled (out): The scaled point base*scalar
284 * combo (out): The linear combination scalar1*base + scalar2*base2.