Searched refs:val (Results 601 - 625 of 3650) sorted by relevance

<<21222324252627282930>>

/freebsd-11-stable/crypto/heimdal/lib/roken/
H A Dparse_reply-test.c66 static sig_atomic_t val = 0; variable
71 val = 1;
90 for (i = 0; val == 0 && i < sizeof(tests)/sizeof(tests[0]); ++i) {
124 return val;
/freebsd-11-stable/lib/libc/mips/sys/
H A Dsbrk.S65 move v0, t0 # return old val of curbrk from above
67 PTR_S a0, 0(t0) # save current val of curbrk from above
/freebsd-11-stable/contrib/ntp/sntp/libopts/
H A Dtime.c43 time_t val; local
48 val = parse_duration(od->optArg.argString);
49 if (val == BAD_TIME) {
60 od->optArg.argInt = (long)val;
/freebsd-11-stable/sys/dev/ppc/
H A Dppcvar.h34 int ppc_read_ivar(device_t bus, device_t dev, int index, uintptr_t *val);
35 int ppc_write_ivar(device_t bus, device_t dev, int index, uintptr_t val);
/freebsd-11-stable/sys/dev/mii/
H A Dmii_bitbang.h54 int phy, int reg, int val);
/freebsd-11-stable/sys/net/
H A Dif_arp.h125 #define ARPSTAT_ADD(name, val) \
126 VNET_PCPUSTAT_ADD(struct arpstat, arpstat, name, (val))
127 #define ARPSTAT_SUB(name, val) ARPSTAT_ADD(name, -(val))
/freebsd-11-stable/sys/dev/sn/
H A Dif_snvar.h60 #define CSR_WRITE_1(sc, off, val) \
61 bus_write_1((sc)->port_res, off, val)
62 #define CSR_WRITE_2(sc, off, val) \
63 bus_write_2((sc)->port_res, off, val)
/freebsd-11-stable/sys/dev/mdio/
H A Dmdio.c80 mdio_writereg(device_t dev, int phy, int reg, int val) argument
83 return (MDIO_WRITEREG(device_get_parent(dev), phy, reg, val));
95 int val)
98 return (MDIO_WRITEEXTREG(device_get_parent(dev), phy, devad, reg, val));
94 mdio_writeextreg(device_t dev, int phy, int devad, int reg, int val) argument
/freebsd-11-stable/sys/arm64/arm64/
H A Dgic_v3_var.h114 #define gic_d_write(sc, len, reg, val) \
116 bus_write_##len(sc->gic_dist, reg, val);\
129 #define gic_r_write(sc, len, reg, val) \
135 reg, val); \
/freebsd-11-stable/contrib/netbsd-tests/lib/libpthread/
H A Dt_join.c74 void *val = NULL; local
115 PTHREAD_REQUIRE(pthread_join(thread[i], &val));
119 ATF_REQUIRE(val != NULL);
120 ATF_REQUIRE(val == (void *)(i + 1));
/freebsd-11-stable/tools/regression/sockets/unix_cmsg/
H A Dt_cmsgcred_sockcred.c52 int fd2, rv, val; local
67 val = 1;
68 if (setsockopt(fd1, 0, LOCAL_CREDS, &val, sizeof(val)) < 0) {
/freebsd-11-stable/sys/amd64/vmm/amd/
H A Dsvm_msr.h41 int svm_wrmsr(struct svm_softc *sc, int vcpu, u_int num, uint64_t val,
/freebsd-11-stable/sys/arm/allwinner/
H A Dif_awg.c72 #define WR4(sc, reg, val) bus_write_4((sc)->res[0], (reg), (val))
174 int retry, val; local
177 val = 0;
186 val = RD4(sc, EMAC_MII_DATA);
196 return (val);
200 awg_miibus_writereg(device_t dev, int phy, int reg, int val) argument
207 WR4(sc, EMAC_MII_DATA, val);
230 uint32_t val; local
257 val
470 uint32_t val; local
566 uint32_t val, crc, hashreg, hashbit, hash[2], machi, maclo; local
628 uint32_t val; local
688 uint32_t val; local
833 uint32_t val; local
[all...]
/freebsd-11-stable/sys/arm64/include/
H A Datomic.h60 atomic_##op##_##bar##32(volatile uint32_t *p, uint32_t val) \
71 : "r" (p), "r" (val) \
77 atomic_##op##_##bar##64(volatile uint64_t *p, uint64_t val) \
88 : "r" (p), "r" (val) \
210 atomic_fetchadd_32(volatile uint32_t *p, uint32_t val) argument
221 : "r" (p), "r" (val)
229 atomic_fetchadd_64(volatile uint64_t *p, uint64_t val) argument
240 : "r" (p), "r" (val)
284 atomic_swap_32(volatile uint32_t *p, uint32_t val) argument
294 : "r" (p), "r" (val)
302 atomic_swap_64(volatile uint64_t *p, uint64_t val) argument
348 atomic_store_rel_32(volatile uint32_t *p, uint32_t val) argument
359 atomic_store_rel_64(volatile uint64_t *p, uint64_t val) argument
[all...]
/freebsd-11-stable/sys/arm/annapurna/alpine/
H A Dalpine_machdep.c93 uint32_t val; local
104 val = bus_space_read_4(fdtbus_bs_tag, reg_baddr,
106 val &= ~AL_NB_ACF_MISC_READ_BYPASS;
108 AL_NB_SERVICE_OFFSET + AL_NB_ACF_MISC_OFFSET, val);
/freebsd-11-stable/sys/arm/include/
H A Datomic-v4.h78 __swp(uint32_t val, volatile uint32_t *ptr) argument
81 : "=&r" (val), "=m" (*ptr)
82 : "r" (val), "r" (ptr), "m" (*ptr)
84 return (val);
92 atomic_add_32(volatile u_int32_t *p, u_int32_t val) argument
94 __with_interrupts_disabled(*p += val);
98 atomic_add_64(volatile u_int64_t *p, u_int64_t val) argument
100 __with_interrupts_disabled(*p += val);
241 atomic_subtract_32(volatile u_int32_t *p, u_int32_t val) argument
243 __with_interrupts_disabled(*p -= val);
247 atomic_subtract_64(volatile u_int64_t *p, u_int64_t val) argument
255 atomic_add_32(volatile u_int32_t *p, u_int32_t val) argument
399 atomic_subtract_32(volatile u_int32_t *p, u_int32_t val) argument
[all...]
/freebsd-11-stable/sys/dev/liquidio/base/
H A Dlio_mem_ops.h70 * @param val - 32-bit value to write.
73 uint64_t core_addr, uint32_t val);
/freebsd-11-stable/sys/dev/liquidio/
H A Dlio_main.h127 #define ROUNDUP4(val) (((val) + 3) & 0xfffffffc)
131 #define ROUNDUP8(val) (((val) + 7) & 0xfffffff8)
/freebsd-11-stable/contrib/wpa/src/common/
H A Ddragonfly.h25 const struct crypto_bignum *val);
/freebsd-11-stable/sbin/bectl/
H A Dbectl_jail.c47 static void jailparam_add(const char *name, const char *val);
65 jailparam_add(const char *name, const char *val) argument
68 nvlist_add_string(jailparams, name, val);
82 char *name, *val; local
88 if ((val = strchr(arg, '=')) == NULL) {
94 *val++ = '\0';
96 if (strlen(val) >= BE_MAXPATHLEN) {
99 val, BE_MAXPATHLEN);
102 strlcpy(mnt_loc, val, sizeof(mnt_loc));
113 jailparam_add(name, val);
120 char *name, *val; local
136 char *cmd, **jargv, *name, *val; local
[all...]
/freebsd-11-stable/contrib/subversion/subversion/include/
H A Dsvn_hash.h274 #define svn_hash_sets(ht, key, val) \
275 svn_hash__sets_debug(ht, key, val)
281 #define svn_hash_sets(ht, key, val) \
282 apr_hash_set(ht, key, APR_HASH_KEY_STRING, val)
/freebsd-11-stable/sys/compat/linuxkpi/common/include/linux/
H A Dbitops.h281 long val; local
287 val = *var;
288 while (!atomic_fcmpset_long(var, &val, val & ~bit))
290 return !!(val & bit);
296 long val; local
302 val = *var;
305 return !!(val & bit);
311 long val; local
317 val
326 long val; local
[all...]
/freebsd-11-stable/contrib/subversion/subversion/include/private/
H A Dsvn_dep_compat.h125 #define svn_atomic_xchgptr(mem, val) \
126 apr_atomic_xchgptr((mem), (val))
130 #define svn_atomic_xchgptr(mem, val) \
131 apr_atomic_xchgptr((void volatile **)(mem), (val))
/freebsd-11-stable/sys/dev/sound/pcm/
H A Dfeeder_eq.c548 int err, val, oval; local
557 val = 2;
559 val = 1;
561 val = 0;
565 oval = val;
566 err = sysctl_handle_int(oidp, &val, 0, req);
568 if (err == 0 && req->newptr != NULL && val != oval) {
569 if (!(val == 0 || val == 1 || val
608 int err, val, oval; local
[all...]
/freebsd-11-stable/contrib/ntp/ntpd/
H A Drefclock_gpsvme.c60 #define SWAP(val) ( ((val) >> 24) | (((val) & 0x00ff0000) >> 8) | \
61 (((val) & 0x0000ff00) << 8) | (((val) & 0x000000ff) << 24) )
62 #define BCD2INT2(val) ( ((val) >> 4 & 0x0f)*10 + ((val) & 0x0f) )
63 #define BCD2INT3(val) ( ((val) >>
[all...]

Completed in 335 milliseconds

<<21222324252627282930>>