Searched refs:val1 (Results 1 - 25 of 53) sorted by relevance

123

/freebsd-9.3-release/sys/dev/tws/
H A Dtws_services.h41 struct tws_softc *sc, char *desc, u_int64_t val1, u_int64_t val2);
65 #define TWS_TRACE_DEBUG(sc, desc, val1, val2) \
67 (u_int64_t)val1, (u_int64_t)val2)
69 #define TWS_TRACE_DEBUG(sc, desc, val1, val2)
73 #define TWS_TRACE(sc, desc, val1, val2) \
75 (u_int64_t)val1, (u_int64_t)val2)
77 #define TWS_TRACE(sc, desc, val1, val2)
H A Dtws_services.c87 struct tws_softc *sc, char *desc, u_int64_t val1, u_int64_t val2)
104 rec[tail].val1 = val1;
126 linenum, file, fun, desc, val1, val2);
128 printf(fmt, linenum, file, fun, desc, val1, val2);
86 tws_trace(const char *file, const char *fun, int linenum, struct tws_softc *sc, char *desc, u_int64_t val1, u_int64_t val2) argument
H A Dtws.h171 u_int64_t val1; member in struct:tws_trace_rec
/freebsd-9.3-release/contrib/gdb/gdb/
H A Dwrapper.c151 gdb_value_equal (struct value *val1, struct value *val2, int *result) argument
155 args.args[0].pointer = val1;
173 struct value *val1; local
176 val1 = (struct value *) (args)->args[0].pointer;
179 (args)->result.integer = value_equal (val1, val2);
184 gdb_value_assign (struct value *val1, struct value *val2, struct value **result) argument
188 args.args[0].pointer = val1;
206 struct value *val1; local
209 val1 = (struct value *) (args)->args[0].pointer;
212 (args)->result.pointer = value_assign (val1, val
217 gdb_value_subscript(struct value *val1, struct value *val2, struct value **rval) argument
239 struct value *val1; local
[all...]
H A Ddwarf2expr.c561 struct value *val1, *val2;
569 val1 = value_from_longest (unsigned_address_type (), first);
601 val1 = value_from_longest (signed_address_type (), first);
628 result = value_as_long (value_binop (val1, val2, binop));
560 struct value *val1, *val2; local
/freebsd-9.3-release/crypto/openssl/crypto/bn/
H A Dbn_exp2.c128 BIGNUM *val1[TABLE_SIZE], *val2[TABLE_SIZE]; local
153 val1[0] = BN_CTX_get(ctx);
155 if (!d || !r || !val1[0] || !val2[0])
171 * Build table for a1: val1[i] := a1^(2*i + 1) mod m for i = 0 .. 2^(window1-1)
174 if (!BN_mod(val1[0], a1, m, ctx))
176 a_mod_m = val1[0];
185 if (!BN_to_montgomery(val1[0], a_mod_m, mont, ctx))
188 if (!BN_mod_mul_montgomery(d, val1[0], val1[0], mont, ctx))
193 if (((val1[
[all...]
/freebsd-9.3-release/contrib/nvi/ip/
H A Dip_read.c202 u_int32_t val1, val2; local
225 memcpy(&val1, ipp->ibuf + IPO_CODE_LEN, IPO_INT_LEN);
226 val1 = ntohl(val1);
230 ip_resize(sp, val1, val2);
245 memcpy(&val1, ipp->ibuf + IPO_CODE_LEN, IPO_INT_LEN);
246 val1 = ntohl(val1);
247 if (ipp->iblen < IPO_CODE_LEN + IPO_INT_LEN + val1)
249 ipp->iskip = IPO_CODE_LEN + IPO_INT_LEN + val1;
[all...]
H A Dip.h52 u_int32_t val1; /* First value. */ member in struct:_ip_buf
H A Dip_funcs.c80 ipb.val1 = attribute;
140 ipb.val1 = bval;
203 ipb.val1 = RLNO(sp, LASTLINE(sp));
306 ipb.val1 = RLNO(sp, lno);
407 ilen = htonl(ipbp->val1);
/freebsd-9.3-release/contrib/llvm/include/llvm/Support/
H A DFormat.h101 format_object2(const char *fmt, const T1 &val1, const T2 &val2) argument
102 : format_object_base(fmt), Val1(val1), Val2(val2) {
120 format_object3(const char *fmt, const T1 &val1, const T2 &val2,const T3 &val3) argument
121 : format_object_base(fmt), Val1(val1), Val2(val2), Val3(val3) {
140 format_object4(const char *fmt, const T1 &val1, const T2 &val2, argument
142 : format_object_base(fmt), Val1(val1), Val2(val2), Val3(val3), Val4(val4) {
162 format_object5(const char *fmt, const T1 &val1, const T2 &val2, argument
164 : format_object_base(fmt), Val1(val1), Val2(val2), Val3(val3), Val4(val4),
/freebsd-9.3-release/lib/libc/rpc/
H A Dnetnamer.c84 char *val1, *val2; local
111 val1 = strchr(netname, '.');
112 if (val1 == NULL)
114 if (strncmp(netname, OPSYS, (val1-netname)))
116 val1++;
117 val2 = strchr(val1, '@');
120 vallen = val2 - val1;
123 (void) strncpy(val, val1, 1024);
/freebsd-9.3-release/contrib/nvi/ip_cl/
H A Dip_cl.c277 memcpy(&ipb.val1, p, IPO_INT_LEN);
278 ipb.val1 = ntohl(ipb.val1);
313 switch (ipb.val1) {
373 trace("move: %lu %lu\n", (u_long)ipb.val1, (u_long)ipb.val2);
375 (void)move(ipb.val1, ipb.val2);
402 trace("rewrite {%lu}\n", (u_long)ipb.val1);
405 for (lno = ipb.val1, cno = spcnt = 0;;) {
537 ipb.val1 = rows = win.ws_row;
571 ilen = htonl(ipbp->val1);
[all...]
/freebsd-9.3-release/sys/dev/ata/
H A Data-sata.c158 uint32_t val, val1; local
187 val1 = ATA_SC_SPD_SPEED_GEN1;
189 val1 = ATA_SC_SPD_SPEED_GEN2;
191 val1 = ATA_SC_SPD_SPEED_GEN3;
193 val1 = 0;
197 val1 | ATA_SC_IPM_DIS_PARTIAL | ATA_SC_IPM_DIS_SLUMBER))
208 ATA_SC_DET_IDLE | val1 | ((ch->pm_level > 0) ? 0 :
/freebsd-9.3-release/sys/dev/scc/
H A Dscc_dev_quicc.c92 uint16_t val0, val1; local
98 val1 = quicc_read2(bas, QUICC_REG_SCC_TODR(unit));
100 return (((val0 | val1) == 0x8000) ? 1 : 0);
/freebsd-9.3-release/contrib/ipfilter/perl/
H A DIpfanaly.pl75 $val1="";
77 $val1=$inwards[$loop] [1];
78 if($val1 eq "")
79 {$val1=0};
83 print INDATA "$arraycnt:$val1\n";
/freebsd-9.3-release/sys/amd64/pci/
H A Dpci_cfgreg.c258 uint32_t val1, val2; local
285 val1 = pcireg_cfgread(0, slot, 0, 0, 4);
286 if (val1 == 0xffffffff)
290 if (val2 != val1)
/freebsd-9.3-release/sys/arm/mv/
H A Dtimer.c374 uint32_t val, val1; local
385 val1 = (sc->et.et_frequency * (first->frac >> 32)) >> 32;
387 val1 += sc->et.et_frequency * first->sec;
389 val1 = val;
393 mv_set_timer(0, val1);
/freebsd-9.3-release/contrib/gcc/
H A Dtree-ssa-ccp.c654 ccp_lattice_meet (prop_value_t *val1, prop_value_t *val2) argument
656 if (val1->lattice_val == UNDEFINED)
659 *val1 = *val2;
667 else if (val1->lattice_val == UNKNOWN_VAL
674 val1->lattice_val = UNKNOWN_VAL;
675 val1->value = NULL_TREE;
676 val1->mem_ref = NULL_TREE;
678 else if (val1->lattice_val == VARYING
682 val1->lattice_val = VARYING;
683 val1
[all...]
H A Dtree-vrp.c47 static int compare_values (tree val1, tree val2);
48 static int compare_values_warnv (tree val1, tree val2, bool *);
488 vrp_operand_equal_p (tree val1, tree val2) argument
490 if (val1 == val2)
492 if (!val1 || !val2 || !operand_equal_p (val1, val2, 0))
494 if (is_overflow_infinity (val1))
694 compare_values_warnv (tree val1, tree val2, bool *strict_overflow_p) argument
696 if (val1 == val2)
701 gcc_assert (POINTER_TYPE_P (TREE_TYPE (val1))
873 compare_values(tree val1, tree val2) argument
1467 vrp_int_const_binop(enum tree_code code, tree val1, tree val2) argument
[all...]
H A Dtree-cfgcleanup.c363 tree val1 = PHI_ARG_DEF (phi, n1); local
366 gcc_assert (val1 != NULL_TREE);
369 if (!operand_equal_for_phi_arg_p (val1, val2))
/freebsd-9.3-release/contrib/openbsm/libbsm/
H A Dbsm_control.c631 u_long val1, val2; local
660 nparsed = sscanf(str, "%lu%c%[ \tadnorADNOR]%lu%c", &val1, &mult1,
670 if (setexpirecond(age, size, val1, mult1) != 0) {
680 if (setexpirecond(age, size, val1, mult1) != 0 ||
/freebsd-9.3-release/sys/contrib/ia64/libuwx/src/
H A Duwx_trace.h138 #define TRACE_I_DECODE_PROLOGUE_1LL(name, b0, val1, val2) \
141 (b0), (int)(val1), (int)(val2), (name));
186 #define TRACE_I_DECODE_BODY_1LL(name, b0, val1, val2) \
189 (b0), (int)(val1), (int)(val2), (name));
342 #define TRACE_I_DECODE_PROLOGUE_1LL(name, b0, val1, val2)
/freebsd-9.3-release/sys/i386/pci/
H A Dpci_cfgreg.c532 uint32_t val1, val2; local
599 val1 = pcireg_cfgread(0, slot, 0, 0, 4);
600 if (val1 == 0xffffffff)
604 if (val2 != val1)
/freebsd-9.3-release/sys/gnu/fs/xfs/FreeBSD/support/
H A Dktrace.c147 void *val1,
185 ktep->val[1] = val1;
144 ktrace_enter( ktrace_t *ktp, void *val0, void *val1, void *val2, void *val3, void *val4, void *val5, void *val6, void *val7, void *val8, void *val9, void *val10, void *val11, void *val12, void *val13, void *val14, void *val15) argument
/freebsd-9.3-release/contrib/ofed/management/opensm/opensm/
H A Dosm_qos.c368 unsigned val1, val2; local
370 p += parse_one_unsigned(p, ',', &val1);
372 *raw = (val1 << 4) | (val2 & 0xf);

Completed in 157 milliseconds

123