Home
last modified time | relevance | path

Searched refs:pret (Results 1 – 7 of 7) sorted by relevance

/freebsd/sys/dev/ocs_fc/
H A Docs_vpd.h125 uint8_t *pret = NULL; in ocs_find_vpd() local
169 pret = pstart; in ocs_find_vpd()
198 return pret; in ocs_find_vpd()
/freebsd/sys/contrib/libsodium/src/libsodium/randombytes/sysrandom/
H A Drandombytes_sysrandom.c138 int pret; in randombytes_block_on_dev_random() local
148 pret = poll(&pfd, 1, -1); in randombytes_block_on_dev_random()
149 } while (pret < 0 && (errno == EINTR || errno == EAGAIN)); in randombytes_block_on_dev_random()
150 if (pret != 1) { in randombytes_block_on_dev_random()
/freebsd/sys/contrib/libsodium/src/libsodium/randombytes/salsa20/
H A Drandombytes_salsa20_random.c186 int pret; in randombytes_block_on_dev_random() local
196 pret = poll(&pfd, 1, -1); in randombytes_block_on_dev_random()
197 } while (pret < 0 && (errno == EINTR || errno == EAGAIN)); in randombytes_block_on_dev_random()
198 if (pret != 1) { in randombytes_block_on_dev_random()
/freebsd/contrib/unbound/util/
H A Dtube.c407 int pret; in pollit() local
417 pret = poll(&fds, 1, msec); in pollit()
419 if(pret == -1) in pollit()
421 if(pret != 0) in pollit()
H A Dnetevent.c442 int pret; local
447 pret = poll(&p, 1, SEND_BLOCKED_WAIT_TIMEOUT);
449 pret = WSAPoll(&p, 1,
452 if(pret == 0) {
462 } else if(pret < 0 &&
479 } else if((pret < 0 &&
497 pret = poll(NULL, 0, (SEND_BLOCKED_WAIT_TIMEOUT/10)<<(retries+1));
499 pret = WSAPoll(NULL, 0, (SEND_BLOCKED_WAIT_TIMEOUT/10)<<(retries+1));
501 if(pret < 0 &&
751 int pret; local
[all …]
/freebsd/sys/kern/
H A Dkern_fail.c410 fail_point_pause(struct fail_point *fp, enum fail_point_return_code *pret, in fail_point_pause() argument
425 enum fail_point_return_code *pret) in fail_point_sleep() argument
447 *pret = FAIL_POINT_RC_QUEUED; in fail_point_sleep()
/freebsd/contrib/jemalloc/src/
H A Dmalloc_io.c214 uintmax_t pret = ret; in malloc_strtoumax() local
217 if (ret < pret) { in malloc_strtoumax()