HomeSort by: relevance | last modified time | path
    Searched refs:which (Results 1 - 25 of 1672) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/bsd/ipf/dist/lib/
getnattype.c 26 char *which; local
34 which = "MAP";
37 which = "MAP-BLOCK";
40 which = "RDR";
43 which = "RWR-MAP";
46 which = "RWR-RDR";
49 which = "BIMAP";
52 which = "DIV-RDR";
55 which = "DIV-MAP";
58 which = "ENC-RDR"
    [all...]
  /src/bin/ksh/
mkman 12 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 }
  /src/usr.bin/whereis/
Makefile 5 MAN= whereis.1 which.1
6 LINKS= ${BINDIR}/whereis ${BINDIR}/which
  /src/games/sail/
display.h 34 void display_set_obp(int which, bool show);
35 void display_set_dbp(int which, bool show);
  /src/external/bsd/unbound/dist/contrib/
create_unbound_ad_servers.sh 15 CAT=`which cat`
16 ECHO=`which echo`
17 WGET=`which wget`
18 TR=`which tr`
unbound_cache.sh 26 BASENAME=`which basename`
27 CAT=`which cat`
28 CUT=`which cut`
29 ECHO=`which echo`
30 EXPR=`which expr`
31 GETOPT=`which getopt`
32 ID=`which id`
33 LS=`which ls`
  /src/external/gpl3/gcc/dist/maintainer-scripts/
generate_libstdcxx_web_docs 32 which $i
55 for which in api manual
57 if [ -f libstdc++-$which-single.xml ] # Only needed for GCC 4.7.x
59 mv libstdc++-$which-single.xml libstdc++-$which.xml
61 gzip --best libstdc++-$which.xml
62 gzip --best libstdc++-$which.pdf
63 mv libstdc++-$which{.html,-html}
64 tar czf libstdc++-$which-html.tar.gz libstdc++-$which-htm
    [all...]
  /src/external/gpl3/gcc.old/dist/maintainer-scripts/
generate_libstdcxx_web_docs 32 which $i
55 for which in api manual
57 if [ -f libstdc++-$which-single.xml ] # Only needed for GCC 4.7.x
59 mv libstdc++-$which-single.xml libstdc++-$which.xml
61 gzip --best libstdc++-$which.xml
62 gzip --best libstdc++-$which.pdf
63 mv libstdc++-$which{.html,-html}
64 tar czf libstdc++-$which-html.tar.gz libstdc++-$which-htm
    [all...]
  /src/sys/dev/wscons/
wsbelldata.h 40 (dstp)->pitch = ((srcp)->which & WSKBD_BELL_DOPITCH) ? \
42 (dstp)->period = ((srcp)->which & WSKBD_BELL_DOPERIOD) ? \
44 (dstp)->volume = ((srcp)->which & WSKBD_BELL_DOVOLUME) ? \
46 (dstp)->which = WSKBD_BELL_DOALL; \
  /src/external/mpl/bind/dist/tests/dns/
rdatasetstats_test.c 37 dns_rdatastatstype_t which; local
41 which = DNS_RDATASTATSTYPE_VALUE(type, attributes);
42 dns_rdatasetstats_increment(stats, which);
45 which = DNS_RDATASTATSTYPE_VALUE(type, attributes);
46 dns_rdatasetstats_increment(stats, which);
51 dns_rdatastatstype_t which; local
55 which = DNS_RDATASTATSTYPE_VALUE(0, attributes);
56 dns_rdatasetstats_increment(stats, which);
61 dns_rdatastatstype_t which; local
65 which = DNS_RDATASTATSTYPE_VALUE(type, attributes)
83 dns_rdatastatstype_t which; local
    [all...]
  /src/sys/compat/linux32/common/
linux32_resource.c 80 syscallarg(int) which;
84 int which; local
86 which = linux_to_bsd_limit(SCARG(uap, which));
87 if (which < 0)
88 return -which;
91 bsd_to_linux_rlimit(&orl, &l->l_proc->p_rlimit[which]);
100 syscallarg(int) which;
106 int which; local
111 which = linux_to_bsd_limit(SCARG(uap, which))
137 int which; local
    [all...]
  /src/external/mit/xorg/lib/
mesa-which.mk 1 # $NetBSD: mesa-which.mk,v 1.3 2021/07/11 20:52:06 mrg Exp $
  /src/sbin/wsconsctl/
keyboard.c 124 bell.which = 0;
126 bell.which |= WSKBD_BELL_DOPITCH;
128 bell.which |= WSKBD_BELL_DOPERIOD;
130 bell.which |= WSKBD_BELL_DOVOLUME;
131 if (bell.which != 0 && ioctl(fd, WSKBDIO_GETBELL, &bell) < 0)
134 dfbell.which = 0;
136 dfbell.which |= WSKBD_BELL_DOPITCH;
138 dfbell.which |= WSKBD_BELL_DOPERIOD;
140 dfbell.which |= WSKBD_BELL_DOVOLUME;
141 if (dfbell.which != 0 &
    [all...]
  /src/sys/compat/netbsd32/
netbsd32_rlimit.c 49 fixlimit(int which, struct rlimit *alim)
51 switch (which) {
74 syscallarg(int) which;
77 int which = SCARG(uap, which); local
80 if ((u_int)which >= RLIM_NLIMITS)
83 alim = l->l_proc->p_rlimit[which];
85 fixlimit(which, &alim);
95 syscallarg(int) which;
98 int which = SCARG(uap, which) local
    [all...]
  /src/sys/arch/arm/xscale/
i80312_gpio.c 59 i80312_gpio_set_direction(uint8_t which, uint8_t val)
63 sc->sc_gpio_dir = (sc->sc_gpio_dir & ~which) | val;
74 i80312_gpio_set_val(uint8_t which, uint8_t val)
78 sc->sc_gpio_val = (sc->sc_gpio_val & ~which) | val;
i80321_gpio.c 56 i80321_gpio_set_direction(uint8_t which, uint8_t val)
60 sc->sc_gpio_dir = (sc->sc_gpio_dir & ~which) | val;
70 i80321_gpio_set_val(uint8_t which, uint8_t val)
74 sc->sc_gpio_val = (sc->sc_gpio_val & ~which) | val;
  /src/external/bsd/libbind/dist/bsd/
setitimer.c 21 __setitimer(int which, const struct itimerval *value,
  /src/sys/compat/common/
kern_resource_43.c 71 syscallarg(int) which;
75 int which = SCARG(uap, which); local
78 if ((u_int)which >= RLIM_NLIMITS)
81 olim.rlim_cur = p->p_rlimit[which].rlim_cur;
84 olim.rlim_max = p->p_rlimit[which].rlim_max;
95 syscallarg(int) which;
98 int which = SCARG(uap, which); local
108 return (dosetrlimit(l, l->l_proc, which, &lim))
    [all...]
  /src/external/gpl2/lvm2/dist/daemons/cmirrord/
functions.h 28 const char *which, char **buf, uint32_t debug_who);
30 const char *which, char *buf, int size);
  /src/lib/libc/gen/
fmtmsg.c 143 writeit(FILE *stream, unsigned int which, const char *label,
150 ((which & MM_VERBLABEL) && label != MM_NULLLBL) ?
152 ((which & MM_VERBLABEL) && label != MM_NULLLBL) ?
154 (which & MM_VERBSEVERITY) ?
156 (which & MM_VERBSEVERITY) ?
158 ((which & MM_VERBTEXT) && text != MM_NULLTXT) ?
160 ((which & MM_VERBLABEL) && label != MM_NULLLBL) ||
161 ((which & MM_VERBSEVERITY)) ||
162 ((which & MM_VERBTEXT) && text != MM_NULLTXT) ?
164 ((which & MM_VERBACTION) && action != MM_NULLACT)
    [all...]
  /src/external/mit/libuv/dist/src/unix/
openbsd.c 51 int which[] = {CTL_VM, VM_LOADAVG}; local
53 if (sysctl(which, ARRAY_SIZE(which), &info, &size, NULL, 0) < 0) return;
116 int which[] = {CTL_VM, VM_UVMEXP}; local
118 if (sysctl(which, ARRAY_SIZE(which), &info, &size, NULL, 0))
127 int which[] = {CTL_HW, HW_PHYSMEM64}; local
130 if (sysctl(which, ARRAY_SIZE(which), &info, &size, NULL, 0))
172 static int which[] = {CTL_KERN, KERN_BOOTTIME} local
190 int which[] = {CTL_HW,HW_MODEL}; local
    [all...]
  /src/external/gpl3/gcc/dist/libgfortran/intrinsics/
cshift0.c 31 ptrdiff_t shift, int which, index_type size)
54 if (which < 1 || which > GFC_DESCRIPTOR_RANK (array))
98 cshift0_i1 ((gfc_array_i1 *)ret, (gfc_array_i1 *) array, shift, which);
103 cshift0_i2 ((gfc_array_i2 *)ret, (gfc_array_i2 *) array, shift, which);
108 cshift0_i4 ((gfc_array_i4 *)ret, (gfc_array_i4 *) array, shift, which);
113 cshift0_i8 ((gfc_array_i8 *)ret, (gfc_array_i8 *) array, shift, which);
120 which);
125 cshift0_r4 ((gfc_array_r4 *)ret, (gfc_array_r4 *) array, shift, which);
129 cshift0_r8 ((gfc_array_r8 *)ret, (gfc_array_r8 *) array, shift, which);
    [all...]
  /src/external/gpl3/gcc.old/dist/libgfortran/intrinsics/
cshift0.c 31 ptrdiff_t shift, int which, index_type size)
54 if (which < 1 || which > GFC_DESCRIPTOR_RANK (array))
98 cshift0_i1 ((gfc_array_i1 *)ret, (gfc_array_i1 *) array, shift, which);
103 cshift0_i2 ((gfc_array_i2 *)ret, (gfc_array_i2 *) array, shift, which);
108 cshift0_i4 ((gfc_array_i4 *)ret, (gfc_array_i4 *) array, shift, which);
113 cshift0_i8 ((gfc_array_i8 *)ret, (gfc_array_i8 *) array, shift, which);
120 which);
125 cshift0_r4 ((gfc_array_r4 *)ret, (gfc_array_r4 *) array, shift, which);
129 cshift0_r8 ((gfc_array_r8 *)ret, (gfc_array_r8 *) array, shift, which);
    [all...]
  /src/usr.bin/renice/
renice.c 60 * or groups of processes which are already
66 int which = PRIO_PROCESS; local
84 which = PRIO_PGRP;
88 which = PRIO_USER;
92 which = PRIO_PROCESS;
95 if (which == PRIO_USER) {
117 errs += donice(which, who, prio, incr);
145 donice(int which, id_t who, int prio, int incr)
150 if ((oldprio = getpriority(which, who)) == -1 && errno != 0) {
163 if (setpriority(which, who, prio) == -1)
    [all...]
  /src/external/apache2/llvm/dist/clang/tools/diag-build/
diag-build.sh 23 # 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)

Completed in 40 milliseconds

1 2 3 4 5 6 7 8 91011>>