Searched refs:which (Results 1 - 25 of 795) sorted by relevance

1234567891011>>

/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/
H A D990214-1.c6 bar (int64_t which) argument
8 switch (which & 15 ) {
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.mike/
H A Dp2736.C10 int which; member in struct:A
11 A(int i) :which(i) {
16 if (++count != which)
/openbsd-current/distrib/special/more/
H A Dtgoto.c76 int which = destline; local
103 if (which < 10)
105 if (which < 100)
112 *dp++ = (which / 100) | '0';
113 which %= 100;
120 *dp++ = which / 10 | '0';
124 *dp++ = which % 10 | '0';
128 which = oncol ? destcol : destline;
133 if (which > *cp++)
134 which
[all...]
/openbsd-current/usr.bin/which/
H A DMakefile3 PROG= which
4 MAN= which.1 whereis.1
5 LINKS= ${BINDIR}/which ${BINDIR}/whereis
/openbsd-current/gnu/usr.bin/perl/t/re/
H A Dreg_posixcc.t119 foreach my $which ("[$yes]","[$no]","[^$yes]","[^$no]") {
120 if ($got{$which}{'utf8'} != $got{$which}{'not-utf8'}){
121 is($got{$which}{'utf8'},$got{$which}{'not-utf8'},
122 "chr($display_b) X 2=~ /$which/ should have the same results regardless of internal string encoding");
123 push @{$singles{$which}},$b;
126 foreach my $which ($yes,$no) {
128 if ($got{"[$which]"}{$strtype} == $got{"[^$which]"}{
[all...]
/openbsd-current/lib/libc/termios/
H A Dtcflush.c37 tcflush(int fd, int which) argument
41 switch (which) {
/openbsd-current/regress/sys/ffs/tests/truncate/
H A D11.t8 cp -pf `which sleep` ${n0}
/openbsd-current/gnu/lib/libstdc++/libstdc++/libsupc++/
H A Deh_alloc.cc115 unsigned int which = 0; local
122 if (++which >= EMERGENCY_OBJ_COUNT)
126 emergency_used |= (bitmask_type)1 << which;
127 ret = &emergency_buffer[which][0];
150 unsigned int which local
155 emergency_used &= ~((bitmask_type)1 << which);
158 emergency_used &= ~((bitmask_type)1 << which);
/openbsd-current/sbin/wsconsctl/
H A Dkeyboard.c84 bell.which = 0;
86 bell.which |= WSKBD_BELL_DOPITCH;
88 bell.which |= WSKBD_BELL_DOPERIOD;
90 bell.which |= WSKBD_BELL_DOVOLUME;
91 if (bell.which != 0 && ioctl(fd, WSKBDIO_GETBELL, &bell) == -1)
94 dfbell.which = 0;
96 dfbell.which |= WSKBD_BELL_DOPITCH;
98 dfbell.which |= WSKBD_BELL_DOPERIOD;
100 dfbell.which |= WSKBD_BELL_DOVOLUME;
101 if (dfbell.which !
[all...]
/openbsd-current/regress/usr.bin/ssh/
H A Dkey-options.sh25 which=$1
29 verbose "key option pty $which"
32 fail "key option failed $which"
37 *) fail "key option failed $which (pty $r)" ;;
42 which=$1
46 verbose "key option pty $which"
51 fail "key option failed $which (pty $r)"
54 /dev/*) fail "key option failed $which (pty $r)" ;;
99 which=$1
103 verbose "key option expiry-time $which"
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/compile/
H A D20020312-1.x1 # This does not compile on HC11/HC12 due to the asm which requires
H A D20001205-1.x1 # This does not work on m68hc11 due to the asm statement which
H A D920520-1.x3 # This does not work on m68hc11 due to the asm which forces a
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/execute/ieee/
H A Dmzero2.x1 # freebsd sets up the fpu with a different precision control which causes
/openbsd-current/gnu/gcc/libstdc++-v3/libsupc++/
H A Deh_alloc.cc111 unsigned int which = 0; local
118 if (++which >= EMERGENCY_OBJ_COUNT)
122 emergency_used |= (bitmask_type)1 << which;
123 ret = &emergency_buffer[which][0];
150 const unsigned int which local
154 emergency_used &= ~((bitmask_type)1 << which);
/openbsd-current/regress/sys/kern/itimer/
H A Ditimer.c28 int which, sig; local
34 which = ITIMER_REAL;
38 which = ITIMER_VIRTUAL;
42 which = ITIMER_PROF;
57 if (setitimer(which, &itv, NULL) != 0)
64 switch (which) {
/openbsd-current/sys/arch/i386/i386/
H A Dsoftintr.c78 softintr_dispatch(int which) argument
80 struct i386_soft_intr *si = &i386_soft_intrs[which];
113 int which; local
117 which = I386_SOFTINTR_SOFTCLOCK;
121 which = I386_SOFTINTR_SOFTNET;
126 which = I386_SOFTINTR_SOFTTTY;
133 si = &i386_soft_intrs[which];
/openbsd-current/gnu/llvm/clang/tools/diag-build/
H A Ddiag-build.sh23 # but GNU sed uses -r. Find out which one this system accepts.
38 elif [[ ! -z $(which clang) ]]; then
39 CC=$(which clang)
51 elif [[ ! -z $(which clang++) ]]; then
52 CXX=$(which clang++)
58 diagtool=$(which diagtool)
/openbsd-current/gnu/usr.bin/binutils/gdb/
H A Dcore-regset.c51 CORE_REG_SECT points to an array of bytes, which are the contents
52 of a `note' from a core file which BFD thinks might contain
55 WHICH says which register set corelow suspects this is:
62 fetch_core_registers (char *core_reg_sect, unsigned core_reg_size, int which, argument
68 switch (which)
/openbsd-current/gnu/usr.bin/cvs/src/
H A Dupdate.h15 int xaflag, int xprune, int xpipeout, int which,
/openbsd-current/regress/sys/ffs/tests/open/
H A D20.t8 cp -pf `which sleep` ${n0}
/openbsd-current/gnu/lib/libreadline/examples/
H A Dhistexamp.c94 int which; local
95 if ((sscanf (line + 6, "%d", &which)) == 1)
97 HIST_ENTRY *entry = remove_history (which);
99 fprintf (stderr, "No such entry %d\n", which);
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/execute/
H A D930529-1.x2 # division by a constant, which gets converted to multiplication
3 # by a large constant, which gets turned into an induction variable.
/openbsd-current/sys/arch/mips64/include/
H A Dsysarch.h35 int which; member in struct:mips64_cacheflush_args
/openbsd-current/lib/libc/arch/mips64/gen/
H A Dcacheflush.c33 args.which = cache;

Completed in 341 milliseconds

1234567891011>>