Home | History | Annotate | Download | only in smp

Lines Matching full:vres

1342 **                  Vres = g2(U, V, X, Y) mod 10**6
1349 ** Returns Vres.
1351 ** Vres = 1000000 means that the calculation fails.
1365 UINT32 vres;
1405 /* vres = cmac mod 2**32 mod 10**6 */
1407 STREAM_TO_UINT32(vres, p);
1409 p_prnt = (UINT8 *) &vres;
1413 while (vres > BTM_MAX_PASSKEY_VAL)
1414 vres -= (BTM_MAX_PASSKEY_VAL + 1);
1416 p_prnt = (UINT8 *) &vres;
1420 SMP_TRACE_ERROR("Value for numeric comparison = %d", vres);
1421 return vres;