Searched refs:tries (Results 1 - 25 of 127) sorted by relevance

123456

/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/execute/
H A D991216-4.c2 static void bug(int size, int tries) argument
8 for (i = 1; i < tries; i++) num++;
/openbsd-current/sys/ddb/
H A Ddb_hangman.c114 db_hang(int tries, char *word, struct _abc *sabc) argument
124 cnputc((*p >= '0' && *p <= '9') ? ((tries <= (*p) - '0') ?
156 size_t tries; local
164 tries = 0;
170 tries = skill + 1;
177 db_hang(tries, word, sabc);
195 tries--;
199 if (tries && len)
202 if (!tries && skill > 2) {
208 if (tries)
[all...]
/openbsd-current/regress/usr.bin/ssh/
H A Dkextype.sh15 tries="1 2 3 4"
18 for i in $tries; do
H A Dcipher-speed.sh21 tries="1 2"
25 for x in $tries; do
H A Dintegrity.sh8 tries=10
26 for off in `jot $tries $startoffset`; do
H A Dkeytype.sh48 tries="1 2 3"
73 for i in $tries; do
/openbsd-current/libexec/mail.local/
H A Dlocking.c61 int tries = 0; local
78 if (tries > 9) {
82 sleep(1U << tries);
83 tries++;
/openbsd-current/games/hangman/
H A Dksyms.c36 uint tries; local
42 for (tries = 0; tries < MAXBADWORDS; tries++) {
80 if (tries >= MAXBADWORDS) {
/openbsd-current/regress/lib/libc/mkstemp/
H A Dmkstemp_test.c78 int tries, fd; local
80 for (tries = 0; tries < MAX_TRIES; tries++) {
97 int tries, fd; local
99 for (tries = 0; tries < MAX_TRIES; tries++) {
/openbsd-current/lib/libc/yp/
H A Dyp_maplist.c43 int tries = 0, r; local
57 if (tries++)
H A Dyp_master.c44 int tries = 0, r; local
66 if (tries++)
H A Dyp_first.c46 int tries = 0, r; local
70 if (tries++)
H A Dypmatch_cache.c145 int tries = 0, r; local
188 if (tries++)
222 int tries = 0, r; local
249 if (tries++)
/openbsd-current/usr.sbin/radiusctl/
H A Dparser.h57 unsigned int tries; member in struct:parse_result
/openbsd-current/lib/libc/stdlib/
H A D__mktemp4.c42 unsigned int tries; local
60 tries = INT_MAX;
79 } while (--tries);
/openbsd-current/usr.sbin/map-mbone/
H A Dmapper.c72 int tries; /* How many requests sent? -1 for aliases */ member in struct:node
114 n->tries = 0;
274 if (node->tries == 0) /* Never heard of 'em; must have hit them at */
275 node->tries = 1; /* least once, though...*/
276 else if (node->tries == -1) /* follow alias link */
285 node->tries = 1;
327 if (ifc_node->tries == 0) { /* new node */
328 ifc_node->tries = -1;
331 && (ifc_node->tries > 0 || ifc_node->u.alias != node)) {
335 if (ifc_node->tries
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/compile/
H A Ddll.x3 # the mcore-elf toolchain), so the code here tries to determine
/openbsd-current/usr.bin/lock/
H A Dlock.c73 int ch, sectimeout, usemine, cnt, tries = 10, backoff = 3; local
94 * We allow "login-tries" attempts to login but start
97 tries = login_getcapnum(lc, "login-tries", 10, 10);
213 cnt %= tries;
218 sleep((u_int)((cnt - backoff) * tries / 2));
/openbsd-current/sys/dev/pci/drm/
H A Ddrm_suballoc.c226 unsigned int *tries)
261 /* limit the number of tries each freelist gets */
262 if (tries[i] > 2)
280 ++tries[best_idx];
317 unsigned int tries[DRM_SUBALLOC_MAX_QUEUES]; local
341 tries[i] = 0;
353 } while (drm_suballoc_next_hole(sa_manager, fences, tries));
224 drm_suballoc_next_hole(struct drm_suballoc_manager *sa_manager, struct dma_fence **fences, unsigned int *tries) argument
/openbsd-current/gnu/usr.bin/perl/cpan/CPAN/lib/CPAN/
H A DNox.pm37 This package has the same functionality as CPAN.pm, but tries to
H A DComplete.pm60 my @tries = grep {substr($_,0,$i) eq $try} @perlret;
61 # warn "try[$try]tries[@tries]";
62 if (@tries == @perlret) {
/openbsd-current/sys/kern/
H A Dvfs_getcwd.c56 int eofflag, tries, dirbuflen = 0, len, reclen, error = 0; local
67 tries = 0;
146 if (error == EINVAL && tries < 3) {
147 tries++;
155 tries = 0;
/openbsd-current/sys/arch/sparc64/dev/
H A Dcomkbd_ebus.c425 int tries; local
427 for (tries = 5; tries != 0; tries--) {
486 if (tries == 0)
491 return tries;
H A Dce4231.c391 int tries; local
411 for (tries = CS_TIMEOUT;
412 tries && CS_READ(sc, AD1848_IADDR) == SP_IN_INIT; tries--)
414 if (tries == 0)
497 int tries; local
524 tries = CS_TIMEOUT;
525 for (tries = CS_TIMEOUT;
526 tries && CS_READ(sc, AD1848_IADDR) == SP_IN_INIT; tries
[all...]
/openbsd-current/sys/dev/sbus/
H A Dcs4231.c340 int tries; local
364 for (tries = CS_TIMEOUT;
365 tries && CS_READ(sc, AD1848_IADDR) == SP_IN_INIT; tries--)
367 if (tries == 0)
533 int tries; local
555 tries = CS_TIMEOUT;
556 for (tries = CS_TIMEOUT;
557 tries && CS_READ(sc, AD1848_IADDR) == SP_IN_INIT; tries
[all...]

Completed in 402 milliseconds

123456