Lines Matching refs:if1
254 * condition ? if1 : if0.
257 * \param if1 Value to use if \p condition == MBEDTLS_CT_TRUE.
260 * \return \c if1 if \p condition == MBEDTLS_CT_TRUE, otherwise \c if0.
263 size_t if1,
270 * condition ? if1 : if0.
273 * \param if1 Value to use if \p condition == MBEDTLS_CT_TRUE.
276 * \return \c if1 if \p condition == MBEDTLS_CT_TRUE, otherwise \c if0.
279 unsigned if1,
286 * condition ? if1 : if0.
289 * \param if1 Value to use if \p condition == MBEDTLS_CT_TRUE.
292 * \return \c if1 if \p condition == MBEDTLS_CT_TRUE, otherwise \c if0.
295 mbedtls_ct_condition_t if1,
304 * condition ? if1 : if0.
307 * \param if1 Value to use if \p condition == MBEDTLS_CT_TRUE.
310 * \return \c if1 if \p condition == MBEDTLS_CT_TRUE, otherwise \c if0.
313 mbedtls_mpi_uint if1, \
322 * condition ? if1 : 0.
324 * Functionally equivalent to mbedtls_ct_uint_if(condition, if1, 0) but
328 * \param if1 Value to use if \p condition == MBEDTLS_CT_TRUE.
330 * \return \c if1 if \p condition == MBEDTLS_CT_TRUE, otherwise 0.
332 static inline unsigned mbedtls_ct_uint_if_else_0(mbedtls_ct_condition_t condition, unsigned if1);
338 * condition ? if1 : 0.
340 * Functionally equivalent to mbedtls_ct_bool_if(condition, if1, 0) but
344 * \param if1 Value to use if \p condition == MBEDTLS_CT_TRUE.
346 * \return \c if1 if \p condition == MBEDTLS_CT_TRUE, otherwise 0.
349 mbedtls_ct_condition_t if1);
355 * condition ? if1 : 0.
357 * Functionally equivalent to mbedtls_ct_size_if(condition, if1, 0) but
361 * \param if1 Value to use if \p condition == MBEDTLS_CT_TRUE.
363 * \return \c if1 if \p condition == MBEDTLS_CT_TRUE, otherwise 0.
365 static inline size_t mbedtls_ct_size_if_else_0(mbedtls_ct_condition_t condition, size_t if1);
373 * condition ? if1 : 0.
375 * Functionally equivalent to mbedtls_ct_mpi_uint_if(condition, if1, 0) but
379 * \param if1 Value to use if \p condition == MBEDTLS_CT_TRUE.
381 * \return \c if1 if \p condition == MBEDTLS_CT_TRUE, otherwise 0.
384 mbedtls_mpi_uint if1);
406 * condition ? if1 : if0.
409 * \param if1 Value to use if \p condition == MBEDTLS_CT_TRUE.
412 * \return \c if1 if \p condition == MBEDTLS_CT_TRUE, otherwise \c if0.
414 static inline int mbedtls_ct_error_if(mbedtls_ct_condition_t condition, int if1, int if0);
420 * condition ? if1 : 0.
422 * Functionally equivalent to mbedtls_ct_error_if(condition, if1, 0) but
426 * \param if1 Value to use if \p condition == MBEDTLS_CT_TRUE.
428 * \return \c if1 if \p condition == MBEDTLS_CT_TRUE, otherwise 0.
430 static inline int mbedtls_ct_error_if_else_0(mbedtls_ct_condition_t condition, int if1);