Home | History | Annotate | Download | only in HAL3

Lines Matching refs:rat

2076  *   @rat     : ptr to struct to store rational info
2084 int32_t getRational(rat_t *rat, int num, int denom)
2086 if (NULL == rat) {
2087 ALOGE("%s: NULL rat input", __func__);
2090 rat->num = num;
2091 rat->denom = denom;