Lines Matching refs:rc
401 TEE_Result rc = TEE_ERROR_GENERIC; in stm32_rng_read() local
414 rc = enable_rng_clock(); in stm32_rng_read()
415 if (rc) in stm32_rng_read()
416 return rc; in stm32_rng_read()
430 rc = read_available(rng_base, out_ptr, &sz); in stm32_rng_read()
433 assert(!rc || rc == TEE_ERROR_NO_DATA); in stm32_rng_read()
434 if (rc) in stm32_rng_read()
440 rc = TEE_ERROR_GENERIC; in stm32_rng_read()
444 if (!rc) { in stm32_rng_read()
454 assert(!rc || rc == TEE_ERROR_GENERIC); in stm32_rng_read()
457 return rc; in stm32_rng_read()