mbedtls_ct_size_gt() function
Constant-flow "greater than" comparison: return x > y This is equivalent to \p x > \p y, but is likely to be compiled to code using bitwise operation rather than a branch.
Syntax
static unsigned mbedtls_ct_size_gt(size_t x,
size_t y);
Arguments
x
The first value to analyze.
y
The second value to analyze.
Return value
1 if \p x greater than \p y, otherwise 0.