Searched refs:val (Results 626 - 650 of 3650) sorted by relevance

<<21222324252627282930>>

/freebsd-11-stable/contrib/ipfilter/lib/
H A Daddipopt.c22 u_short val; local
55 val = atoi(class);
56 bcopy((char *)&val, op, 2);
/freebsd-11-stable/sys/contrib/octeon-sdk/
H A Dcvmx-atomic.h84 "1: ll %[tmp], %[val] \n"
86 " sc %[tmp], %[val] \n"
90 : [val] "+m" (*ptr), [tmp] "=&r" (tmp)
164 "1: lld %[tmp], %[val] \n"
166 " scd %[tmp], %[val] \n"
170 : [val] "+m" (*ptr), [tmp] "=&r" (tmp)
244 "1: ll %[tmp], %[val] \n"
248 " sc %[tmp], %[val] \n"
253 : [val] "+m" (*ptr), [tmp] "=&r" (tmp), [ret] "=&r" (ret)
302 "1: lld %[tmp], %[val] \
[all...]
/freebsd-11-stable/sys/dev/bhnd/cores/pcie2/
H A Dbhnd_pcie2_var.h55 uint32_t addr, uint32_t val);
59 int reg, int val);
63 int phy, int devaddr, int reg, int val);
/freebsd-11-stable/contrib/subversion/subversion/libsvn_subr/
H A Dtoken.c36 if (map->val == value)
82 return map->val;
95 return map->val;
/freebsd-11-stable/contrib/wpa/src/utils/
H A Dbitfield.c64 static int first_zero(u8 val) argument
68 if (!(val & 0x01))
70 val >>= 1;
/freebsd-11-stable/crypto/heimdal/lib/asn1/
H A Dgen_glue.c57 m->gen_name, m->val);
82 m->gen_name, m->val);
117 "\t{\"%s\",\t1U << %d},\n", m->name, m->val);
/freebsd-11-stable/crypto/openssh/openbsd-compat/regress/
H A Dstrtonumtest.c43 long long val; local
46 val = strtonum(p, lb, ub, &q);
52 fprintf(stderr, "%s [%lld-%lld] %lld ", p, lb, ub, val);
/freebsd-11-stable/sys/mips/mips/
H A Dgdb_machdep.c145 gdb_cpu_setreg(int regnum, void *val) argument
149 kdb_thrctx->pcb_context[10] = *(register_t *)val;
151 kdb_frame->pc = *(register_t *)val;
/freebsd-11-stable/usr.bin/cksum/
H A Dcksum.c64 uint32_t val; local
120 if (cfncn(fd, &val, &len)) {
124 pfncn(fn, val, len);
/freebsd-11-stable/sys/dev/drm2/ttm/
H A Dttm_lock.h207 * @val: Boolean whether to kill processes taking the lock.
214 * - ttm_lock_set_kill() is called with @val set to true.
220 static inline void ttm_lock_set_kill(struct ttm_lock *lock, bool val, argument
223 lock->kill_takers = val;
224 if (val)
/freebsd-11-stable/sys/dev/qlnx/qlnxe/
H A Decore_utils.h50 #define DMA_REGPAIR_LE(x, val) (x).hi = DMA_HI_LE((val)); \
51 (x).lo = DMA_LO_LE((val))
/freebsd-11-stable/include/
H A Dtermios.h51 #define CCEQ(val, c) ((c) == (val) && (val) != _POSIX_VDISABLE)
/freebsd-11-stable/lib/libc/locale/
H A Dwcstod.c55 double val; local
94 val = strtod_l(buf, &end, locale);
110 return (val);
H A Dwcstof.c49 float val; local
77 val = strtof_l(buf, &end, locale);
87 return (val);
H A Dwcstold.c49 long double val; local
77 val = strtold_l(buf, &end, locale);
87 return (val);
/freebsd-11-stable/sys/dev/mii/
H A Dvscphy.c107 pcell_t val; local
113 if (OF_getencprop(cfg->phynode, "rx-delay", &val, sizeof(val)) > 0)
114 vsc->rxdelay = val;
115 if (OF_getencprop(cfg->phynode, "tx-delay", &val, sizeof(val)) > 0)
116 vsc->txdelay = val;
124 u_int val; local
126 val = PHY_READ(&sc->mii_sc, reg);
127 return (val);
131 vscphy_write(struct vscphy_softc *sc, u_int reg, u_int val) argument
[all...]
/freebsd-11-stable/sbin/ifconfig/
H A Difipsec.c65 DECL_CMD_FUNC(setreqid, val, arg)
70 v = strtoul(val, &ep, 0);
72 warn("Invalid reqid value %s", val);
/freebsd-11-stable/stand/libsa/
H A Duuid_to_string.c40 * Dump len characters into *buf from val as hex and update *buf
43 tohex(char **buf, int len, uint32_t val) argument
50 walker[i] = hexstr[val & 0xf];
51 val >>= 4;
/freebsd-11-stable/usr.sbin/bhyve/
H A Dpci_uart.c81 uint8_t val; local
86 val = uart_read(pi->pi_arg, offset);
87 return (val);
/freebsd-11-stable/sys/i386/include/
H A Dpcpu.h86 #define PCPU_ADD(member, val) (pcpup->pc_ ## member += (val))
89 #define PCPU_SET(member, val) (pcpup->pc_ ## member = (val))
144 #define __PCPU_ADD(name, val) do { \
150 __val = (val); \
185 * Sets the value of the per-cpu variable name to value val.
187 #define __PCPU_SET(name, val) do { \
193 __val = (val); \
215 #define PCPU_ADD(member, val) __PCPU_AD
[all...]
/freebsd-11-stable/sys/amd64/include/
H A Dpcpu.h94 #define PCPU_ADD(member, val) (pcpup->pc_ ## member += (val))
97 #define PCPU_SET(member, val) (pcpup->pc_ ## member = (val))
152 #define __PCPU_ADD(name, val) do { \
158 __val = (val); \
198 * Sets the value of the per-cpu variable name to value val.
200 #define __PCPU_SET(name, val) { \
206 __val = (val); \
219 #define PCPU_ADD(member, val) __PCPU_AD
[all...]
/freebsd-11-stable/sys/dev/fb/
H A Dsplash_bmp.c252 ** Given (info), set the pixel at (x),(y) to (val)
256 bmp_SetPix(BMP_INFO *info, int x, int y, u_char val) argument
282 if (val != info->prev_val) {
283 outb(0x7e, (val & 1) ? 0xff : 0); /* tile B */
284 outb(0x7e, (val & 2) ? 0xff : 0); /* tile R */
285 outb(0x7e, (val & 4) ? 0xff : 0); /* tile G */
286 outb(0x7e, (val & 8) ? 0xff : 0); /* tile I */
288 info->prev_val = val;
307 outw(GDCIDX, (val << 8) | 0x00); /* set/reset */
320 *(info->vidmem+sofs) = val;
335 u_char val; local
453 u_char val, mask, *p; local
[all...]
/freebsd-11-stable/sys/kern/
H A Dkern_acct.c472 int val, exp; /* Unnormalized value and exponent */ local
485 val = tv.tv_usec;
494 val = 1000000 * tv.tv_sec + tv.tv_usec;
497 val = (unsigned int)(((uint64_t)1000000 * tv.tv_sec +
502 norm_exp = fls(val) - 1;
505 printf("val=%d exp=%d shift=%d log2(val)=%d\n",
506 val, exp, shift, norm_exp);
508 ((shift > 0 ? (val << shift) : (val >>
519 encode_long(long val) argument
[all...]
/freebsd-11-stable/contrib/apr/strings/
H A Dapr_cstr.c322 apr_int64_t val; local
330 val = apr_strtoi64(str, &endptr, base);
333 if ((errno == ERANGE && (val == APR_INT64_MIN || val == APR_INT64_MAX)) ||
334 val < 0 || (apr_uint64_t)val < minval || (apr_uint64_t)val > maxval)
336 *n = val;
347 apr_uint64_t val; local
348 apr_status_t rv = apr_cstr_strtoui64(&val, st
358 apr_int64_t val; local
381 apr_int64_t val; local
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/
H A DLiveVariables.cpp91 runOnBlock(const CFGBlock *block, LiveVariables::LivenessValues val,
202 LiveVariables::LivenessValues &val; member in class:__anon384::TransferFunctions
210 : LV(im), val(Val), observer(Observer), currentBlock(CurrentBlock) {}
261 observer->observeStmt(S, currentBlock, val);
266 val.liveStmts = LV.SSetFact.remove(val.liveStmts, S);
283 AddLiveStmt(val.liveStmts, LV.SSetFact, ImplicitObj);
291 val.liveDecls = LV.DSetFact.add(val.liveDecls,
300 AddLiveStmt(val
497 runOnBlock(const CFGBlock *block, LiveVariables::LivenessValues val, LiveVariables::Observer *obs) argument
593 LivenessValues val; local
[all...]

Completed in 359 milliseconds

<<21222324252627282930>>