Searched refs:v2 (Results 1 - 25 of 122) sorted by relevance

12345

/freebsd-9.3-release/sys/boot/powerpc/ps3/
H A Dps3repo.c58 uint64_t v1, v2; local
62 make_n("type", 0), 0, 0, &v1, &v2);
71 uint64_t v1, v2; local
75 make_n("id", 0), 0, 0, &v1, &v2);
84 uint64_t v1, v2; local
88 make_n("num_dev", 0), 0, 0, &v1, &v2);
97 uint64_t v1, v2; local
101 make_n("dev", dev_index), make_n("type", 0), 0, &v1, &v2);
110 uint64_t v1, v2; local
114 make_n("dev", dev_index), make_n("id", 0), 0, &v1, &v2);
123 uint64_t v1, v2; local
136 uint64_t v1, v2; local
149 uint64_t v1, v2; local
163 uint64_t v1, v2; local
177 uint64_t v1, v2; local
191 uint64_t v1, v2; local
[all...]
H A Dlv1call.h72 uint64_t n3, uint64_t n4, uint64_t *v1, uint64_t *v2);
/freebsd-9.3-release/contrib/nvi/common/
H A Dutil.h47 #define NADD_SLONG(sp, v1, v2) \
49 ((v2) < 0 && \
50 NNFITS(LONG_MIN, (v1), (v2))) ? NUM_UNDER : NUM_OK : \
52 (v2) > 0 && \
53 NPFITS(LONG_MAX, (v1), (v2)) ? NUM_OK : NUM_OVER : \
55 #define NADD_USLONG(sp, v1, v2) \
56 (NPFITS(ULONG_MAX, (v1), (v2)) ? NUM_OK : NUM_OVER)
/freebsd-9.3-release/contrib/libarchive/libarchive/test/
H A Dtest.h142 #define assertEqualInt(v1,v2) \
143 assertion_equal_int(__FILE__, __LINE__, (v1), #v1, (v2), #v2, NULL)
145 #define assertEqualString(v1,v2) \
146 assertion_equal_string(__FILE__, __LINE__, (v1), #v1, (v2), #v2, NULL)
147 /* As above, but v1 and v2 are wchar_t * */
148 #define assertEqualWString(v1,v2) \
149 assertion_equal_wstring(__FILE__, __LINE__, (v1), #v1, (v2), #v2, NUL
[all...]
H A Dmain.c408 long long v1, const char *e1, long long v2, const char *e2, void *extra)
411 if (v1 == v2)
415 logprintf(" %s=%lld (0x%llx, 0%llo)\n", e2, v2, v2, v2);
452 const char *v2, const char *e2,
456 if (v1 == v2 || (v1 != NULL && v2 != NULL && strcmp(v1, v2) == 0))
460 strdump(e2, v2);
407 assertion_equal_int(const char *file, int line, long long v1, const char *e1, long long v2, const char *e2, void *extra) argument
450 assertion_equal_string(const char *file, int line, const char *v1, const char *e1, const char *v2, const char *e2, void *extra) argument
506 assertion_equal_wstring(const char *file, int line, const wchar_t *v1, const char *e1, const wchar_t *v2, const char *e2, void *extra) argument
571 const char *v2 = (const char *)_v2; local
[all...]
/freebsd-9.3-release/contrib/groff/src/roff/troff/
H A Dnumber.cpp292 units v2; local
293 if (!parse_term(&v2, scale_indicator, parenthesised, rigid))
298 *v = *v < v2;
301 *v = *v > v2;
304 *v = *v <= v2;
307 *v = *v >= v2;
310 if (*v > v2)
311 *v = v2;
314 if (*v < v2)
315 *v = v2;
[all...]
/freebsd-9.3-release/tools/regression/usr.sbin/sa/
H A Dprime.sh26 $SANEW -u $LCDIR/v2-$ARCH-acct.in >v2-$ARCH-u.out
33 rm -f v2-$ARCH-sav.in v2-$ARCH-usr.in
34 $SANEW -s -P v2-$ARCH-sav.in -U v2-$ARCH-usr.in acct.in >/dev/null
H A Dregress.t23 cp $LCDIR/v2-$ARCH-acct.in $DIR/v2-$ARCH-acct.in
29 sa -u $DIR/v2-$ARCH-acct.in | check 2 $DIR/v2-$ARCH-u.out
50 # Reading v2 summary files
51 sa -P $DIR/v2-$ARCH-sav.in -U $DIR/v2-$ARCH-usr.in /dev/null |
53 sa -m -P $DIR/v2-$ARCH-sav.in -U $DIR/v2-$ARCH-usr.in /dev/null |
72 rm $DIR/double $DIR/v2c-$ARCH-usr.in $DIR/v2c-$ARCH-sav.in $DIR/v1-$ARCH-acct.in $DIR/v2
[all...]
/freebsd-9.3-release/tools/regression/usr.bin/lastcomm/
H A Dregress.t24 cat $DIR/v1-$ARCH-acct.in $DIR/v2-$ARCH-acct.in >$DIR/v1v2-$ARCH-acct.in
25 cat $DIR/v2-$ARCH.out $DIR/v1-$ARCH.out >$DIR/v1v2-$ARCH.out
31 lastcomm -cesuS -f $DIR/v2-$ARCH-acct.in | check 3 v2-$ARCH.out
32 lastcomm -cesuS -f - <$DIR/v2-$ARCH-acct.in | tail -r | check 4 v2-$ARCH.out
/freebsd-9.3-release/usr.sbin/pkg_install/lib/
H A Dversion.c277 const char *v1, *v2, *ve1, *ve2; local
282 v2 = split_version(pkg2, &ve2, &e2, &r2);
290 if (result == 0 && (ve1 - v1 != ve2 - v2 || strncasecmp(v1, v2, ve1 - v1) != 0)) {
293 while(result == 0 && (v1 < ve1 || v2 < ve2)) {
303 if (v2 < ve2 && *v2 != '+') {
304 v2 = get_component(v2, &vc2);
311 if (v2 < ve
[all...]
/freebsd-9.3-release/contrib/gdb/gdb/
H A Dvalarith.c784 DOUBLEST v1, v2, v = 0;
786 v2 = value_as_double (arg2);
790 v = v1 + v2;
794 v = v1 - v2;
798 v = v1 * v2;
802 v = v1 / v2;
806 v = pow (v1, v2);
830 LONGEST v1, v2, v = 0;
832 v2 = value_as_long (arg2);
837 v = v1 & v2;
780 DOUBLEST v1, v2, v = 0; local
826 LONGEST v1, v2, v = 0; local
910 ULONGEST v1, v2, v = 0; local
1035 LONGEST v1, v2, v = 0; local
[all...]
H A Dgdb_indent.sh49 v2=`echo "${version}" | sed 's/^.* \([0-9]*\)\.\([0-9]*\)\.\([0-9]*\)$/\2/'`
52 if test $m1 -ne $v1 -o $m2 -ne $v2 -o $m3 -gt $v3
/freebsd-9.3-release/contrib/libarchive/cpio/test/
H A Dtest.h138 #define assertEqualInt(v1,v2) \
139 assertion_equal_int(__FILE__, __LINE__, (v1), #v1, (v2), #v2, NULL)
141 #define assertEqualString(v1,v2) \
142 assertion_equal_string(__FILE__, __LINE__, (v1), #v1, (v2), #v2, NULL)
143 /* As above, but v1 and v2 are wchar_t * */
144 #define assertEqualWString(v1,v2) \
145 assertion_equal_wstring(__FILE__, __LINE__, (v1), #v1, (v2), #v2, NUL
[all...]
H A Dmain.c412 long long v1, const char *e1, long long v2, const char *e2, void *extra)
415 if (v1 == v2)
419 logprintf(" %s=%lld (0x%llx, 0%llo)\n", e2, v2, v2, v2);
456 const char *v2, const char *e2,
460 if (v1 == v2 || (v1 != NULL && v2 != NULL && strcmp(v1, v2) == 0))
464 strdump(e2, v2);
411 assertion_equal_int(const char *file, int line, long long v1, const char *e1, long long v2, const char *e2, void *extra) argument
454 assertion_equal_string(const char *file, int line, const char *v1, const char *e1, const char *v2, const char *e2, void *extra) argument
510 assertion_equal_wstring(const char *file, int line, const wchar_t *v1, const char *e1, const wchar_t *v2, const char *e2, void *extra) argument
575 const char *v2 = (const char *)_v2; local
[all...]
/freebsd-9.3-release/contrib/libarchive/tar/test/
H A Dtest.h138 #define assertEqualInt(v1,v2) \
139 assertion_equal_int(__FILE__, __LINE__, (v1), #v1, (v2), #v2, NULL)
141 #define assertEqualString(v1,v2) \
142 assertion_equal_string(__FILE__, __LINE__, (v1), #v1, (v2), #v2, NULL)
143 /* As above, but v1 and v2 are wchar_t * */
144 #define assertEqualWString(v1,v2) \
145 assertion_equal_wstring(__FILE__, __LINE__, (v1), #v1, (v2), #v2, NUL
[all...]
H A Dmain.c413 long long v1, const char *e1, long long v2, const char *e2, void *extra)
416 if (v1 == v2)
420 logprintf(" %s=%lld (0x%llx, 0%llo)\n", e2, v2, v2, v2);
457 const char *v2, const char *e2,
461 if (v1 == v2 || (v1 != NULL && v2 != NULL && strcmp(v1, v2) == 0))
465 strdump(e2, v2);
412 assertion_equal_int(const char *file, int line, long long v1, const char *e1, long long v2, const char *e2, void *extra) argument
455 assertion_equal_string(const char *file, int line, const char *v1, const char *e1, const char *v2, const char *e2, void *extra) argument
511 assertion_equal_wstring(const char *file, int line, const wchar_t *v1, const char *e1, const wchar_t *v2, const char *e2, void *extra) argument
576 const char *v2 = (const char *)_v2; local
[all...]
/freebsd-9.3-release/crypto/openssl/crypto/
H A Do_str.c107 int OPENSSL_memcmp(const void *v1, const void *v2, size_t n) argument
109 const unsigned char *c1 = v1, *c2 = v2;
/freebsd-9.3-release/contrib/libucl/src/
H A Dxxhash.c220 U32 v2 = seed + PRIME32_2; local
227 v2 += XXH_readLE32_align((const U32*)p, endian, align) * PRIME32_2; v2 = XXH_rotl32(v2, 13); v2 *= PRIME32_1; p+=4;
232 h32 = XXH_rotl32(v1, 1) + XXH_rotl32(v2, 7) + XXH_rotl32(v3, 12) + XXH_rotl32(v4, 18);
302 U32 v2; member in struct:XXH_state32_t
322 state->v2 = seed + PRIME32_2;
364 state->v2 += XXH_readLE32(p32, endian) * PRIME32_2; state->v2
376 U32 v2 = state->v2; local
[all...]
/freebsd-9.3-release/usr.sbin/pkg_install/version/
H A Dtest-pkg_version.sh41 setvar v2 $3
43 res=`${PKG_VERSION} -t ${v1} ${v2}`
45 ${ECHO} "${type} test failed (${v1} ${res} ${v2}, should have been ${answer})"; \
/freebsd-9.3-release/contrib/less/
H A Dless.h187 #define SNPRINTF2(str, size, fmt, v1, v2) snprintf((str), (size), (fmt), (v1), (v2))
188 #define SNPRINTF3(str, size, fmt, v1, v2, v3) snprintf((str), (size), (fmt), (v1), (v2), (v3))
189 #define SNPRINTF4(str, size, fmt, v1, v2, v3, v4) snprintf((str), (size), (fmt), (v1), (v2), (v3), (v4))
193 #define SNPRINTF2(str, size, fmt, v1, v2) sprintf((str), (fmt), (v1), (v2))
194 #define SNPRINTF3(str, size, fmt, v1, v2, v3) sprintf((str), (fmt), (v1), (v2), (v
[all...]
/freebsd-9.3-release/sys/sys/
H A Dktr.h189 #define KTR_EVENT3(m, egroup, ident, etype, edat, a0, v0, a1, v1, a2, v2)\
191 ident, edat, (v0), (v1), (v2))
193 a0, v0, a1, v1, a2, v2, a3, v3) \
195 ident, edat, (v0), (v1), (v2), (v3))
206 #define KTR_STATE3(m, egroup, ident, state, a0, v0, a1, v1, a2, v2) \
208 state, a0, (v0), a1, (v1), a2, (v2))
209 #define KTR_STATE4(m, egroup, ident, state, a0, v0, a1, v1, a2, v2, a3, v3)\
211 state, a0, (v0), a1, (v1), a2, (v2), a3, (v3))
223 #define KTR_COUNTER3(m, egroup, ident, counter, a0, v0, a1, v1, a2, v2) \
225 counter, a0, (v0), a1, (v1), a2, (v2))
[all...]
/freebsd-9.3-release/crypto/heimdal/lib/gssapi/ntlm/
H A Dcrypto.c297 ctx->u.v2.send.signkey,
298 ctx->u.v2.send.signsealkey,
299 ctx->u.v2.send.seq++,
367 ctx->u.v2.recv.signkey,
368 ctx->u.v2.recv.signsealkey,
369 ctx->u.v2.recv.seq++,
483 ctx->u.v2.send.signkey,
484 ctx->u.v2.send.seq++,
485 &ctx->u.v2.send.sealkey,
556 ctx->u.v2
[all...]
H A Dntlm.h127 } v2; member in union:__anon4588::__anon4589
/freebsd-9.3-release/sys/dev/drm2/radeon/
H A Datombios_encoders.c550 LVDS_ENCODER_CONTROL_PS_ALLOCATION_V2 v2; member in union:lvds_encoder_control
618 args.v2.ucMisc = 0;
619 args.v2.ucAction = action;
622 args.v2.ucMisc |= PANEL_ENCODER_MISC_COHERENT;
625 args.v2.ucMisc |= PANEL_ENCODER_MISC_HDMI_TYPE;
626 args.v2.usPixelClock = cpu_to_le16(radeon_encoder->pixel_clock / 10);
627 args.v2.ucTruncate = 0;
628 args.v2.ucSpatial = 0;
629 args.v2.ucTemporal = 0;
630 args.v2
790 DIG_ENCODER_CONTROL_PARAMETERS_V2 v2; member in union:dig_encoder_control
940 DIG_TRANSMITTER_CONTROL_PARAMETERS_V2 v2; member in union:dig_transmitter_control
1781 SELECT_CRTC_SOURCE_PARAMETERS_V2 v2; member in union:crtc_source_param
[all...]
/freebsd-9.3-release/sys/netgraph/
H A Dng_patch.c144 uint16_t v2; member in union:patch_val
263 newval[i].v2 =
378 *((uint16_t *)&buf) = privp->val[i].v2;
381 *((uint16_t *)&buf) += privp->val[i].v2;
384 *((uint16_t *)&buf) -= privp->val[i].v2;
387 *((uint16_t *)&buf) *= privp->val[i].v2;
390 *((uint16_t *)&buf) /= privp->val[i].v2;
396 *((uint16_t *)&buf) &= privp->val[i].v2;
399 *((uint16_t *)&buf) |= privp->val[i].v2;
402 *((uint16_t *)&buf) ^= privp->val[i].v2;
[all...]

Completed in 157 milliseconds

12345