Searched refs:val (Results 176 - 200 of 2597) sorted by relevance

1234567891011>>

/freebsd-9.3-release/contrib/bmake/
H A Dhash.h132 * Hash_SetValue(h, val);
134 * char *val;
137 #define Hash_SetValue(h, val) ((h)->clientInfo.clientPtr = (val))
138 #define Hash_SetTimeValue(h, val) ((h)->clientInfo.clientTime = (val))
/freebsd-9.3-release/contrib/cvs/src/
H A Dedit.h30 const char *val, const char *watches,
37 const char *val));
/freebsd-9.3-release/contrib/ofed/management/infiniband-diags/src/
H A Dperfquery.c130 static void aggregate_4bit(uint32_t *dest, uint32_t val) argument
132 if ((((*dest) + val) < (*dest))
133 || ((*dest) + val) > 0xf)
136 (*dest) = (*dest) + val;
139 static void aggregate_8bit(uint32_t *dest, uint32_t val) argument
141 if ((((*dest) + val) < (*dest))
142 || ((*dest) + val) > 0xff)
145 (*dest) = (*dest) + val;
148 static void aggregate_16bit(uint32_t *dest, uint32_t val) argument
150 if ((((*dest) + val) < (*des
157 aggregate_32bit(uint32_t *dest, uint32_t val) argument
165 aggregate_64bit(uint64_t *dest, uint64_t val) argument
175 uint32_t val; local
218 uint32_t val = ALL_PORTS; local
247 uint32_t val; local
275 uint32_t val = ALL_PORTS; local
[all...]
/freebsd-9.3-release/contrib/top/
H A Dutils.c62 char *itoa(val)
64 register int val;
75 if (val == 0)
79 else while (val != 0)
81 *--ptr = (val % 10) + '0';
82 val /= 10;
88 * itoa7(val) - like itoa, except the number is right justified in a 7
93 char *itoa7(val)
95 register int val;
106 if (val
[all...]
/freebsd-9.3-release/crypto/heimdal/lib/roken/
H A Dmkstemp.c55 pid_t val; local
56 val = getpid();
59 template[start] = '0' + val % 10;
60 val /= 10;
/freebsd-9.3-release/lib/libc/inet/
H A Dinet_net_pton.c195 int val; local
198 val = 0;
205 if (n++ != 0 && val == 0) /*%< no leading zeros */
207 val *= 10;
208 val += (pch - digits);
209 if (val > 128) /*%< range */
217 *bitsp = val;
226 u_int val; local
229 val = 0;
236 if (n++ != 0 && val
271 u_int val; local
[all...]
/freebsd-9.3-release/sys/compat/ndis/
H A Dsubr_hal.c134 WRITE_PORT_ULONG(port, val)
136 uint32_t val;
138 bus_space_write_4(NDIS_BUS_SPACE_IO, 0x0, (bus_size_t)port, val);
142 WRITE_PORT_USHORT(uint16_t *port, uint16_t val) argument
144 bus_space_write_2(NDIS_BUS_SPACE_IO, 0x0, (bus_size_t)port, val);
148 WRITE_PORT_UCHAR(uint8_t *port, uint8_t val) argument
150 bus_space_write_1(NDIS_BUS_SPACE_IO, 0x0, (bus_size_t)port, val);
154 WRITE_PORT_BUFFER_ULONG(port, val, cnt)
156 uint32_t *val;
160 (bus_size_t)port, val, cn
[all...]
/freebsd-9.3-release/sys/contrib/rdma/krping/
H A Dgetopt.h15 int val; member in struct:krping_option
/freebsd-9.3-release/sys/dev/io/
H A Diodev.h39 u_int val; member in struct:iodev_pio_req
/freebsd-9.3-release/tools/regression/netinet/ipsockopt/
H A Dipsockopt.c394 int val[2]; local
401 val[0] = -1;
402 val[1] = -1;
403 len = sizeof(val);
404 if (getsockopt(sock, IPPROTO_IP, option, val, &len) < 0)
408 if (len != sizeof(val[0]))
412 if (val[0] == -1)
416 if (val[0] != initial)
419 val[0], initial);
424 val[
534 int newvalue, val[2]; local
[all...]
/freebsd-9.3-release/crypto/openssl/crypto/x509v3/
H A Dv3_pci.c76 static int process_pci_value(CONF_VALUE *val, argument
82 if (strcmp(val->name, "language") == 0) {
86 X509V3_conf_err(val);
89 if (!(*language = OBJ_txt2obj(val->value, 0))) {
92 X509V3_conf_err(val);
95 } else if (strcmp(val->name, "pathlen") == 0) {
99 X509V3_conf_err(val);
102 if (!X509V3_get_value_int(val, pathlen)) {
105 X509V3_conf_err(val);
108 } else if (strcmp(val
[all...]
/freebsd-9.3-release/contrib/gdb/gdb/
H A Dregcache.h46 int regnum, LONGEST *val);
48 int regnum, ULONGEST *val);
50 int regnum, LONGEST val);
52 int regnum, ULONGEST val);
79 int regnum, LONGEST *val);
81 int regnum, ULONGEST *val);
83 int regnum, LONGEST val);
85 int regnum, ULONGEST val);
99 extern void supply_register (int regnum, const void *val);
251 extern void write_register (int regnum, LONGEST val);
[all...]
H A Di386obsd-nat.c55 i386obsd_sigtramp_start_addr = (CORE_ADDR)_ps.val - 128;
56 i386obsd_sigtramp_end_addr = (CORE_ADDR)_ps.val;
/freebsd-9.3-release/contrib/ntp/sntp/libopts/
H A Dnumeric.c110 long val; local
131 val = strtol(od->optArg.argString, &pz, 0);
138 case 't': val *= 1000;
139 case 'g': val *= 1000;
140 case 'm': val *= 1000;
141 case 'k': val *= 1000; break;
143 case 'T': val *= 1024;
144 case 'G': val *= 1024;
145 case 'M': val *= 1024;
146 case 'K': val *
[all...]
/freebsd-9.3-release/contrib/binutils/bfd/
H A Dstab-syms.c52 #define __define_name(val, str) case val: return str;
/freebsd-9.3-release/contrib/gcclibs/libgomp/config/linux/
H A Dmutex.h54 int val = __sync_lock_test_and_set (mutex, 0); local
55 if (__builtin_expect (val > 1, 0))
/freebsd-9.3-release/lib/libkse/arch/arm/include/
H A Datomic_ops.h37 * Atomic (tmp = *dst, *dst = val), then *res = tmp
39 * void atomic_swap32(intptr_t *dst, intptr_t val, intptr_t *res);
42 atomic_swap32(volatile intptr_t *dst, intptr_t val, intptr_t *res) argument
44 *res = __swp(val, dst);
/freebsd-9.3-release/lib/libkse/arch/i386/include/
H A Datomic_ops.h34 * Atomic (tmp = *dst, *dst = val), then *res = tmp
36 * void atomic_swap32(intptr_t *dst, intptr_t val, intptr_t *res);
39 atomic_swap32(volatile intptr_t *dst, intptr_t val, intptr_t *res) argument
43 : "=m" (*res) : "m" (*dst), "r" (val) : "memory");
/freebsd-9.3-release/lib/libkse/arch/powerpc/include/
H A Datomic_ops.h35 * Atomic (tmp = *dst, *dst = val), then *res = tmp
37 * void atomic_swap32(intptr_t *dst, intptr_t val, intptr_t *res);
40 atomic_swap32(volatile intptr_t *dst, intptr_t val, intptr_t *res) argument
48 " stwcx. %3, 0, %4\n" /* attempt to store val */
52 : "r" (val), "r" (dst)
/freebsd-9.3-release/sys/dev/cmx/
H A Dcmxvar.h75 #define CMX_WRITE_1(sc, off, val) \
76 (bus_space_write_1((sc)->bst, (sc)->bsh, off, val))
80 #define cmx_write_BSR(sc, val) \
81 CMX_WRITE_1(sc, REG_OFFSET_BSR, val)
84 #define cmx_write_SCR(sc, val) \
85 CMX_WRITE_1(sc, REG_OFFSET_SCR, val)
88 #define cmx_write_DTR(sc, val) \
89 CMX_WRITE_1(sc, REG_OFFSET_DTR, val)
/freebsd-9.3-release/sys/mips/sibyte/
H A Dsb_scd.h48 void sb_set_mailbox(int cpuid, uint64_t val);
49 void sb_clear_mailbox(int cpuid, uint64_t val);
/freebsd-9.3-release/sys/netinet6/
H A Draw_ip6.h51 #define RIP6STAT_ADD(name, val) V_rip6stat.name += (val)
/freebsd-9.3-release/usr.sbin/ctm/mkCTM/
H A Dctm_conf.smp-cur5 set CTMignore {^CVSROOT/history.*$|^CVSROOT/val-tags$|^CVSROOT/\\.#}
/freebsd-9.3-release/usr.sbin/nfsrevoke/
H A Dnfsrevoke.c66 u_char val; local
80 val = 0;
83 val += (u_char)(*cp - '0');
85 val += ((u_char)(*cp - 'A')) + 0xa;
87 val += ((u_char)(*cp - 'a')) + 0xa;
91 val <<= 4;
94 revoke_handle.nclid_id[cnt++] = val;
97 val = 0;
/freebsd-9.3-release/sbin/ifconfig/
H A Difieee80211.c147 static void set80211(int s, int type, int val, int len, void *data);
150 static int get80211val(int s, int type, int *val);
151 static const char *get_string(const char *val, const char *sep,
348 int val; local
350 if (get80211val(s, IEEE80211_IOC_CHANNEL, &val) < 0)
353 mapchan(&curchan, val, 0);
551 set80211ssid(const char *val, int d, int s, const struct afswtch *rafp) argument
558 len = strlen(val);
559 if (len > 2 && isdigit((int)val[0]) && val[
573 set80211meshid(const char *val, int d, int s, const struct afswtch *rafp) argument
587 set80211stationname(const char *val, int d, int s, const struct afswtch *rafp) argument
612 getchannelflags(const char *val, int freq) argument
721 getchannel(int s, struct ieee80211_channel *chan, const char *val) argument
748 set80211channel(const char *val, int d, int s, const struct afswtch *rafp) argument
757 set80211chanswitch(const char *val, int d, int s, const struct afswtch *rafp) argument
768 set80211authmode(const char *val, int d, int s, const struct afswtch *rafp) argument
790 set80211powersavemode(const char *val, int d, int s, const struct afswtch *rafp) argument
812 set80211powersave(const char *val, int d, int s, const struct afswtch *rafp) argument
823 set80211powersavesleep(const char *val, int d, int s, const struct afswtch *rafp) argument
829 set80211wepmode(const char *val, int d, int s, const struct afswtch *rafp) argument
847 set80211wep(const char *val, int d, int s, const struct afswtch *rafp) argument
859 set80211weptxkey(const char *val, int d, int s, const struct afswtch *rafp) argument
868 set80211wepkey(const char *val, int d, int s, const struct afswtch *rafp) argument
892 set80211nwkey(const char *val, int d, int s, const struct afswtch *rafp) argument
930 set80211rtsthreshold(const char *val, int d, int s, const struct afswtch *rafp) argument
937 set80211protmode(const char *val, int d, int s, const struct afswtch *rafp) argument
955 set80211htprotmode(const char *val, int d, int s, const struct afswtch *rafp) argument
971 set80211txpower(const char *val, int d, int s, const struct afswtch *rafp) argument
987 set80211roaming(const char *val, int d, int s, const struct afswtch *rafp) argument
1004 set80211wme(const char *val, int d, int s, const struct afswtch *rafp) argument
1010 set80211hidessid(const char *val, int d, int s, const struct afswtch *rafp) argument
1016 set80211apbridge(const char *val, int d, int s, const struct afswtch *rafp) argument
1022 set80211fastframes(const char *val, int d, int s, const struct afswtch *rafp) argument
1028 set80211dturbo(const char *val, int d, int s, const struct afswtch *rafp) argument
1034 set80211chanlist(const char *val, int d, int s, const struct afswtch *rafp) argument
1085 set80211bssid(const char *val, int d, int s, const struct afswtch *rafp) argument
1213 set80211macmac(int s, int op, const char *val) argument
1274 set80211meshrtmac(int s, int req, const char *val) argument
1334 set80211pureg(const char *val, int d, int s, const struct afswtch *rafp) argument
1340 set80211bgscan(const char *val, int d, int s, const struct afswtch *rafp) argument
1374 getmodeflags(const char *val) argument
1518 getrate(const char *val, const char *tag) argument
1637 set80211burst(const char *val, int d, int s, const struct afswtch *rafp) argument
1643 set80211doth(const char *val, int d, int s, const struct afswtch *rafp) argument
1649 set80211dfs(const char *val, int d, int s, const struct afswtch *rafp) argument
1655 set80211shortgi(const char *val, int d, int s, const struct afswtch *rafp) argument
1663 set80211ampdu(const char *val, int d, int s, const struct afswtch *rafp) argument
1744 set80211amsdu(const char *val, int d, int s, const struct afswtch *rafp) argument
1765 set80211puren(const char *val, int d, int s, const struct afswtch *rafp) argument
1771 set80211htcompat(const char *val, int d, int s, const struct afswtch *rafp) argument
1777 set80211htconf(const char *val, int d, int s, const struct afswtch *rafp) argument
1784 set80211dwds(const char *val, int d, int s, const struct afswtch *rafp) argument
1790 set80211inact(const char *val, int d, int s, const struct afswtch *rafp) argument
1796 set80211tsn(const char *val, int d, int s, const struct afswtch *rafp) argument
1802 set80211dotd(const char *val, int d, int s, const struct afswtch *rafp) argument
1808 set80211smps(const char *val, int d, int s, const struct afswtch *rafp) argument
1814 set80211rifs(const char *val, int d, int s, const struct afswtch *rafp) argument
2270 set80211location(const char *val, int d, int s, const struct afswtch *rafp) argument
2278 set80211ecm(const char *val, int d, int s, const struct afswtch *rafp) argument
3671 get80211wme(int s, int param, int ac, int *val) argument
3692 int val; local
4201 int i, num, wpa, wme, bgscan, bgscaninterval, val, len, wepmode; local
4873 get80211val(int s, int type, int *val) argument
4887 set80211(int s, int type, int val, int len, void *data) argument
4903 get_string(const char *val, const char *sep, u_int8_t *buf, int *lenp) argument
5063 set80211clone_beacons(const char *val, int d, int s, const struct afswtch *rafp) argument
5073 set80211clone_bssid(const char *val, int d, int s, const struct afswtch *rafp) argument
5082 set80211clone_wdslegacy(const char *val, int d, int s, const struct afswtch *rafp) argument
[all...]

Completed in 226 milliseconds

1234567891011>>