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

1234567891011>>

/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.target/i386/
H A D990214-1.c7 bar (int64_t which) argument
9 switch (which & 15 ) {
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.target/i386/
H A D990214-1.c6 bar (int64_t which) argument
8 switch (which & 15 ) {
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.old-deja/g++.mike/
H A Dp2736.C13 int which; member in struct:A
14 A(int i) :which(i) {
19 if (++count != which)
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.old-deja/g++.mike/
H A Dp2736.C11 int which; member in struct:A
12 A(int i) :which(i) {
17 if (++count != which)
/netbsd-6-1-5-RELEASE/bin/ksh/
H A Dmkman12 echo "usage: $0 [-v] which-shell ksh.Man-file" 1>&2
19 sh) which=0;;
20 ksh) which=1;;
35 [ $verbose = yes ] && echo "$0: Generating $which man page (0=sh,1=ksh)..." 1>&2
37 ${AWK} 'BEGIN { ksh = '$which'; pr = 1 }
/netbsd-6-1-5-RELEASE/usr.bin/whereis/
H A DMakefile5 MAN= whereis.1 which.1
6 LINKS= ${BINDIR}/whereis ${BINDIR}/which
/netbsd-6-1-5-RELEASE/games/sail/
H A Ddisplay.h34 void display_set_obp(int which, bool show);
35 void display_set_dbp(int which, bool show);
/netbsd-6-1-5-RELEASE/dist/ipf/lib/
H A Dgetnattype.c27 char *which; local
44 which = "MAP";
47 which = "MAP-BLOCK";
50 which = "RDR";
53 which = "BIMAP";
57 which = unknownbuf;
60 return which;
/netbsd-6-1-5-RELEASE/sys/dev/iscsi/
H A Discsi_profile.h44 perf_snap(int index, perfpoint_t which) argument
50 perfdata[index - 1].pctr[which] = rv;
54 perf_snapcond(int index, perfpoint_t which) argument
56 uint64_t *pdst = &perfdata[index - 1].pctr[which];
68 #define PERF_SNAP(ccb,which) if (ccb->perf_index) \
69 perf_snap(ccb->perf_index,which)
70 #define PERF_SNAPC(ccb,which) if (ccb->perf_index) \
71 perf_snapcond(ccb->perf_index,which)
76 #define PERF_PDUSET(pdu,ccb,which) {pdu->perf_index = ccb->perf_index; \
77 pdu->perf_which = which;}
[all...]
/netbsd-6-1-5-RELEASE/sbin/wsconsctl/
H A Dkeyboard.c90 bell.which = 0;
92 bell.which |= WSKBD_BELL_DOPITCH;
94 bell.which |= WSKBD_BELL_DOPERIOD;
96 bell.which |= WSKBD_BELL_DOVOLUME;
97 if (bell.which != 0 && ioctl(fd, WSKBDIO_GETBELL, &bell) < 0)
100 dfbell.which = 0;
102 dfbell.which |= WSKBD_BELL_DOPITCH;
104 dfbell.which |= WSKBD_BELL_DOPERIOD;
106 dfbell.which |= WSKBD_BELL_DOVOLUME;
107 if (dfbell.which !
[all...]
/netbsd-6-1-5-RELEASE/sys/compat/osf1/
H A Dosf1_resource.c53 switch (SCARG(uap, which)) {
55 SCARG(&a, which) = RLIMIT_CPU;
58 SCARG(&a, which) = RLIMIT_FSIZE;
61 SCARG(&a, which) = RLIMIT_DATA;
64 SCARG(&a, which) = RLIMIT_STACK;
67 SCARG(&a, which) = RLIMIT_CORE;
70 SCARG(&a, which) = RLIMIT_RSS;
73 SCARG(&a, which) = RLIMIT_NOFILE;
76 SCARG(&a, which) = RLIMIT_AS;
124 switch (SCARG(uap, which)) {
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/ntp/dist/sntp/
H A Dheader.h72 extern void open_socket (int which, char *hostnames, int timespan);
74 extern void write_socket (int which, void *packet, int length);
76 extern int read_socket (int which, void *packet, int length, int waiting);
78 extern int flush_socket (int which);
80 /* extern void close_socket (int which); */
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/ld/testsuite/ld-mips-elf/
H A Dmips16-pic-4a.s4 # Define a stub for f1, which is defined in another file.
/netbsd-6-1-5-RELEASE/sys/netiso/
H A Dtp_timer.h77 #define tp_ctimeout(tpcb, which, timo) ((tpcb)->tp_timer[which] = (timo))
78 #define tp_cuntimeout(tpcb, which) ((tpcb)->tp_timer[which] = 0)
/netbsd-6-1-5-RELEASE/sys/compat/common/
H A Dkern_resource_43.c57 syscallarg(int) which;
61 int which = SCARG(uap, which); local
64 if ((u_int)which >= RLIM_NLIMITS)
66 olim.rlim_cur = p->p_rlimit[which].rlim_cur;
69 olim.rlim_max = p->p_rlimit[which].rlim_max;
80 syscallarg(int) which;
83 int which = SCARG(uap, which); local
93 return (dosetrlimit(l, l->l_proc, which,
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/libsupc++/
H A Deh_alloc.cc109 unsigned int which = 0; local
116 if (++which >= EMERGENCY_OBJ_COUNT)
120 emergency_used |= (bitmask_type)1 << which;
121 ret = &emergency_buffer[which][0];
149 const unsigned int which local
153 emergency_used &= ~((bitmask_type)1 << which);
173 unsigned int which = 0; local
178 if (++which >= EMERGENCY_OBJ_COUNT)
182 dependents_used |= (bitmask_type)1 << which;
183 ret = &dependents_buffer[which];
212 const unsigned int which local
[all...]
/netbsd-6-1-5-RELEASE/lib/libc/termios/
H A Dtcflush.c54 tcflush(fd, which)
55 int fd, which;
61 switch (which) {
/netbsd-6-1-5-RELEASE/external/bsd/libbind/dist/bsd/
H A Dsetitimer.c21 __setitimer(int which, const struct itimerval *value, argument
/netbsd-6-1-5-RELEASE/lib/libc/gen/
H A Dfmtmsg.c145 writeit(stream, which, label, sevstr, text, action, tag)
147 unsigned int which;
157 ((which & MM_VERBLABEL) && label != MM_NULLLBL) ?
159 ((which & MM_VERBLABEL) && label != MM_NULLLBL) ?
161 (which & MM_VERBSEVERITY) ?
163 (which & MM_VERBSEVERITY) ?
165 ((which & MM_VERBTEXT) && text != MM_NULLTXT) ?
167 ((which & MM_VERBLABEL) && label != MM_NULLLBL) ||
168 ((which & MM_VERBSEVERITY)) ||
169 ((which
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/arm/xscale/
H A Di80312_gpio.c59 i80312_gpio_set_direction(uint8_t which, uint8_t val) argument
63 sc->sc_gpio_dir = (sc->sc_gpio_dir & ~which) | val;
74 i80312_gpio_set_val(uint8_t which, uint8_t val) argument
78 sc->sc_gpio_val = (sc->sc_gpio_val & ~which) | val;
H A Di80321_gpio.c56 i80321_gpio_set_direction(uint8_t which, uint8_t val) argument
60 sc->sc_gpio_dir = (sc->sc_gpio_dir & ~which) | val;
70 i80321_gpio_set_val(uint8_t which, uint8_t val) argument
74 sc->sc_gpio_val = (sc->sc_gpio_val & ~which) | val;
/netbsd-6-1-5-RELEASE/external/gpl2/lvm2/dist/daemons/cmirrord/
H A Dfunctions.h28 const char *which, char **buf, uint32_t debug_who);
30 const char *which, char *buf, int size);
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/ld/testsuite/ld-elf/
H A Dwrap.exp34 if { [which $CC] == 0 } {
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/ld/testsuite/ld-mmix/
H A Dstart4.s2 # section (which .init is, which .text isn't). Here, we don't refer to
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.c-torture/execute/ieee/
H A Dmzero2.x1 # freebsd sets up the fpu with a different precision control which causes

Completed in 378 milliseconds

1234567891011>>