Lines Matching full:retry
72 int retry; in x86_rdrand_store() local
86 retry = RETRY_COUNT; in x86_rdrand_store()
90 "jc 2f\n\t" /* CF is set on success, exit retry loop */ in x86_rdrand_store()
91 "dec %0\n\t" /* otherwise, retry-- */ in x86_rdrand_store()
94 : "+r" (retry), "=r" (rndval) : : "cc"); in x86_rdrand_store()
95 if (retry == 0) in x86_rdrand_store()
106 int retry; in x86_rdseed_store() local
108 retry = RETRY_COUNT; in x86_rdseed_store()
112 "jc 2f\n\t" /* CF is set on success, exit retry loop */ in x86_rdseed_store()
113 "dec %0\n\t" /* otherwise, retry-- */ in x86_rdseed_store()
116 : "+r" (retry), "=r" (rndval) : : "cc"); in x86_rdseed_store()
118 return (retry != 0); in x86_rdseed_store()