Home
last modified time | relevance | path

Searched refs:repeat (Results 1 – 25 of 298) sorted by relevance

12345678910>>...12

/openbsd-src/sbin/wsconsctl/
H A Dkeyboard.c49 static struct wskbd_keyrepeat_data repeat; variable
64 { "repeat.del1", &repeat.del1, FMT_UINT, FLG_MODIFY },
65 { "repeat.deln", &repeat.delN, FMT_UINT, FLG_MODIFY },
114 repeat.which = 0; in keyboard_get_values()
115 if (field_by_value(keyboard_field_tab, &repeat.del1)->flags & FLG_GET) in keyboard_get_values()
116 repeat.which |= WSKBD_KEYREPEAT_DODEL1; in keyboard_get_values()
117 if (field_by_value(keyboard_field_tab, &repeat.delN)->flags & FLG_GET) in keyboard_get_values()
118 repeat.which |= WSKBD_KEYREPEAT_DODELN; in keyboard_get_values()
119 if (repeat.which != 0 && in keyboard_get_values()
120 ioctl(fd, WSKBDIO_GETKEYREPEAT, &repeat) == -1) in keyboard_get_values()
[all …]
/openbsd-src/gnu/usr.bin/binutils/binutils/
H A Dsysinfo.y33 char * repeat; variable
209 oldrepeat = repeat;
210 repeat = $3;
216 repeat = oldrepeat;
296 repeat,
306 repeat,
331 if (repeat)
332 printf("\t/* repeat %s */\n", repeat);
H A Dsysroff.info212 (repeat "ptr->sections"
350 (repeat "ptr->dims"
380 (repeat "ptr->spupdates"
386 (repeat "ptr->nln"
451 (repeat "ptr->ns"
459 (repeat "ptr->ndir"
471 (repeat "ptr->ns"
478 (repeat "ptr->ndir"
/openbsd-src/gnu/usr.bin/binutils-2.17/binutils/
H A Dsysinfo.y27 static char * repeat; variable
205 oldrepeat = repeat;
206 repeat = $3;
212 repeat = oldrepeat;
292 repeat,
302 repeat,
327 if (repeat)
328 printf("\t/* repeat %s */\n", repeat);
H A Dsysroff.info212 (repeat "ptr->sections"
350 (repeat "ptr->dims"
380 (repeat "ptr->spupdates"
386 (repeat "ptr->nln"
451 (repeat "ptr->ns"
459 (repeat "ptr->ndir"
471 (repeat "ptr->ns"
478 (repeat "ptr->ndir"
/openbsd-src/usr.bin/tmux/
H A Dcmd-bind-key.c61 int repeat; in cmd_bind_key_exec() local
77 repeat = args_has(args, 'r'); in cmd_bind_key_exec()
80 key_bindings_add(tablename, key, note, repeat, NULL); in cmd_bind_key_exec()
86 key_bindings_add(tablename, key, note, repeat, value->cmdlist); in cmd_bind_key_exec()
105 key_bindings_add(tablename, key, note, repeat, pr->cmdlist); in cmd_bind_key_exec()
H A Dcmd-list-keys.c157 int repeat, width, tablewidth, keywidth, found = 0; in cmd_list_keys_exec() local
213 repeat = 0; in cmd_list_keys_exec()
230 repeat = 1; in cmd_list_keys_exec()
263 if (!repeat) in cmd_list_keys_exec()
/openbsd-src/usr.bin/passwd/
H A Dlocal_passwd.c206 char repeat[1024]; in getnewpasswd() local
223 p = readpassphrase("Retype new password:", repeat, sizeof(repeat), in getnewpasswd()
226 explicit_bzero(repeat, sizeof(repeat)); in getnewpasswd()
230 explicit_bzero(repeat, sizeof(repeat)); in getnewpasswd()
/openbsd-src/games/snake/
H A Dsnake.c247 int repeat = 1; in mainloop() local
260 repeat = c - '0'; in mainloop()
262 repeat = 10 * repeat + (c - '0'); in mainloop()
265 repeat = 1; in mainloop()
299 repeat = you.col; in mainloop()
304 repeat = you.col - money.col; in mainloop()
308 repeat = you.line; in mainloop()
313 repeat = you.line - money.line; in mainloop()
317 repeat = ccnt - 1 - you.col; in mainloop()
322 repeat = money.col - you.col; in mainloop()
[all …]
/openbsd-src/gnu/gcc/gcc/config/v850/
H A Dv850-c.c118 int repeat; in ghs_pragma_section() local
130 if (type == CPP_EOF && !repeat) in ghs_pragma_section()
136 repeat = 0; in ghs_pragma_section()
147 repeat = 1; in ghs_pragma_section()
176 while (repeat); in ghs_pragma_section()
/openbsd-src/gnu/usr.bin/gcc/gcc/config/v850/
H A Dv850-c.c117 int repeat; local
129 if (type == CPP_EOF && !repeat)
135 repeat = 0;
146 repeat = 1;
175 while (repeat);
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/compile/
H A D20020314-1.c14 repeat: in user_send_buffer()
19 goto repeat; in user_send_buffer()
/openbsd-src/gnu/usr.bin/perl/dist/threads-shared/t/
H A Dwait.t73 "repeat", # cond var == lock var; explicit lock; e.g.: cond_wait($c, $c)
79 my $test_type :shared; # simple|repeat|twain
118 cond_wait($cond, $cond), last if /repeat/;
148 $ok = cond_timedwait($cond, time() + $to, $cond), last if /repeat/;
181 $ok = cond_timedwait($cond, time() + $to, $cond), last if /repeat/;
209 my $test_type :shared; # simple|repeat|twain
251 cond_wait($cond, $cond), last if /repeat/;
281 $ok = cond_timedwait($cond, time() + $to, $cond), last if /repeat/;
314 $ok = cond_timedwait($cond, time() + $to, $cond), last if /repeat/;
H A Dwaithires.t75 "repeat", # cond var == lock var; explicit lock; e.g.: cond_wait($c, $c)
79 # run cond_timedwait, and repeat if it times out (give up after 10 secs)
108 my $test_type :shared; # simple|repeat|twain
167 ($ok, $t) = do_cond_timedwait($cond, $to, $cond), last if /repeat/;
212 $ok = cond_timedwait($cond, time() + $to, $cond), last if /repeat/;
240 my $test_type :shared; # simple|repeat|twain
302 ($ok, $t) = do_cond_timedwait($cond, $to, $cond), last if /repeat/;
347 $ok = cond_timedwait($cond, time() + $to, $cond), last if /repeat/;
/openbsd-src/gnu/usr.bin/perl/lib/feature/
H A Dunicode_strings.t65 my $repeat = 25; # Length to make strings.
69 $posix{'uc'} = 'A' x $repeat;
70 $posix{'lc'} = 'a' x $repeat ;
73 $cyrillic{'uc'} = chr(0x42F) x $repeat;
74 $cyrillic{'lc'} = chr(0x44F) x $repeat;
77 $latin1{'uc'} = chr(utf8::unicode_to_native 0xD8) x $repeat;
78 $latin1{'lc'} = chr(utf8::unicode_to_native 0xF8) x $repeat;
/openbsd-src/gnu/gcc/gcc/
H A Dloop-unswitch.c269 int repeat; in unswitch_single_loop() local
322 repeat = 0; in unswitch_single_loop()
356 repeat = 1; in unswitch_single_loop()
364 repeat = 1; in unswitch_single_loop()
366 } while (repeat); in unswitch_single_loop()
/openbsd-src/gnu/llvm/lldb/source/Interpreter/
H A DInterpreterProperties.td39 def RepeatPreviousCommand: Property<"repeat-previous-command", "Boolean">,
42 …Desc<"If true, LLDB will repeat the previous command if no command was passed to the interpreter. …
/openbsd-src/lib/libcrypto/arc4random/
H A Dgetentropy_aix.c201 int save_errno = errno, e, pgs = sysconf(_SC_PAGESIZE), faster = 0, repeat; in getentropy_fallback() local
224 repeat = 2; in getentropy_fallback()
228 repeat = REPEAT; in getentropy_fallback()
233 for (j = 0; j < repeat; j++) { in getentropy_fallback()
H A Dgetentropy_solaris.c241 int save_errno = errno, e, pgs = getpagesize(), faster = 0, repeat; in getentropy_fallback() local
258 repeat = 2; in getentropy_fallback()
262 repeat = REPEAT; in getentropy_fallback()
267 for (j = 0; j < repeat; j++) { in getentropy_fallback()
H A Dgetentropy_hpux.c205 int save_errno = errno, e, pgs = sysconf(_SC_PAGESIZE), faster = 0, repeat; in getentropy_fallback() local
224 repeat = 2; in getentropy_fallback()
228 repeat = REPEAT; in getentropy_fallback()
233 for (j = 0; j < repeat; j++) { in getentropy_fallback()
H A Dgetentropy_osx.c208 int save_errno = errno, e, pgs = getpagesize(), faster = 0, repeat; in getentropy_fallback() local
232 repeat = 2; in getentropy_fallback()
236 repeat = REPEAT; in getentropy_fallback()
241 for (j = 0; j < repeat; j++) { in getentropy_fallback()
H A Dgetentropy_linux.c322 int save_errno = errno, e, pgs = getpagesize(), faster = 0, repeat; in getentropy_fallback() local
338 repeat = 2; in getentropy_fallback()
342 repeat = REPEAT; in getentropy_fallback()
347 for (j = 0; j < repeat; j++) { in getentropy_fallback()
/openbsd-src/gnu/llvm/lld/COFF/
H A DICF.cpp63 std::atomic<bool> repeat = {false}; member in lld::coff::ICF
123 repeat = true; in segregate()
298 repeat = false; in run()
301 } while (repeat); in run()
/openbsd-src/gnu/llvm/llvm/utils/
H A Dshuffle_fuzz.py108 for _ in itertools.repeat(None, width)]
109 for _ in itertools.repeat(None, args.max_shuffle_height - i)]
180 s += ''.join(['\\00' for _ in itertools.repeat(None, 128 - len(s) + 2)])
/openbsd-src/sys/dev/usb/
H A Dusbdi.c170 pipe->repeat, pipe->interval); in usbd_dump_pipe()
237 ipipe->repeat = 1; in usbd_open_pipe_intr()
246 ipipe->repeat = 0; in usbd_open_pipe_intr()
567 pipe->repeat = 0; in usbd_abort_pipe()
767 if (!pipe->repeat) { in usb_transfer_complete()
773 if (!pipe->repeat) { in usb_transfer_complete()
782 pipe->repeat, SIMPLEQ_FIRST(&pipe->queue))); in usb_transfer_complete()
805 if (pipe->repeat) { in usb_transfer_complete()
818 if (!pipe->repeat) { in usb_transfer_complete()

12345678910>>...12