Searched refs:r2 (Results 1 - 25 of 312) sorted by relevance

1234567891011>>

/macosx-10.9.5/dtrace-118.1/test/tst/common/struct/
H A Dtst.StructAssoc.d47 struct record r2;
54 r2.position = 1;
55 r2.content = 'a';
58 assoc_array[r2] = 2000;
61 printf("assoc_array[r2]: %d\n", assoc_array[r2]);
67 /assoc_array[r1] != assoc_array[r2]/
H A Derr.D_DECL_INCOMPLETE.recursive.d45 struct record r2;
52 r2.position = 2;
53 r2.content = 'b';
56 printf("r2.position: %d\nr2.content: %c\n", r2.position, r2.content);
H A Derr.D_PROTO_ARG.DupStructAssoc.d51 struct record r2;
60 r2.position = 2;
61 r2.content = 'b';
70 assoc_array[r2] = 2000;
75 printf("assoc_array[r2]: %d\n", assoc_array[r2]);
/macosx-10.9.5/dtrace-118.1/test/tst/common/union/
H A Dtst.UnionAssoc.d47 union record r2;
54 r2.position = 1;
55 r2.content = 'a';
58 assoc_array[r2] = 2000;
61 printf("assoc_array[r2]: %d\n", assoc_array[r2]);
67 /assoc_array[r1] != assoc_array[r2]/
H A Derr.D_DECL_INCOMPLETE.recursive.d45 union record r2;
52 r2.position = 2;
53 r2.content = 'b';
56 printf("r2.position: %d\nr2.content: %c\n", r2.position, r2.content);
H A Derr.D_PROTO_ARG.DupUnionAssoc.d51 union record r2;
60 r2.position = 2;
61 r2.content = 'b';
70 assoc_array[r2] = 2000;
75 printf("assoc_array[r2]: %d\n", assoc_array[r2]);
/macosx-10.9.5/bind9-45.100/bind9/lib/isc/
H A Dregion.c31 isc_region_compare(isc_region_t *r1, isc_region_t *r2) { argument
36 REQUIRE(r2 != NULL);
38 l = (r1->length < r2->length) ? r1->length : r2->length;
40 if ((result = memcmp(r1->base, r2->base, l)) != 0)
43 return ((r1->length == r2->length) ? 0 :
44 (r1->length < r2->length) ? -1 : 1);
/macosx-10.9.5/ntp-88/lib/isc/
H A Dregion.c31 isc_region_compare(isc_region_t *r1, isc_region_t *r2) { argument
36 REQUIRE(r2 != NULL);
38 l = (r1->length < r2->length) ? r1->length : r2->length;
40 if ((result = memcmp(r1->base, r2->base, l)) != 0)
43 return ((r1->length == r2->length) ? 0 :
44 (r1->length < r2->length) ? -1 : 1);
/macosx-10.9.5/cxxfilt-11/cxxfilt/binutils/testsuite/binutils-all/
H A Dlink-order.s7 .vframe r2
8 mov r2 = r12
11 mov r12 = r2
/macosx-10.9.5/libunwind-35.3/testsuite/
H A Dunwind_test_ppc.s91 lis r2,ha16(LC14)
92 lfs f14,lo16(LC14)(r2)
93 lis r2,ha16(LC15)
94 lfs f15,lo16(LC15)(r2)
95 lis r2,ha16(LC16)
96 lfs f16,lo16(LC16)(r2)
97 lis r2,ha16(LC17)
98 lfs f17,lo16(LC17)(r2)
99 lis r2,ha16(LC18)
100 lfs f18,lo16(LC18)(r2)
[all...]
/macosx-10.9.5/emacs-92/emacs/lisp/language/
H A Dethiopic.el43 (r2 -= 33)
45 (r2 += r1)
46 (if (r2 < 256)
48 (if (r2 < 448)
49 ((r1 = ?\x13) (r2 -= 256))
50 ((r1 = ?\xfd) (r2 -= 208))
H A Dchinese.el156 ((r2 = ((((r1 - ?\x21) * 94) + r2) - ?\x21))
157 (if (r0 == ,(charset-id 'chinese-big5-2)) (r2 += 6280))
158 (r1 = ((r2 / 157) + ?\xA1))
159 (r2 %= 157)
160 (if (r2 < ?\x3F) (r2 += ?\x40) (r2 += ?\x62))))
214 (read-if (r2 < #xA1)
217 (write-repeat r2))
[all...]
/macosx-10.9.5/groff-38/groff/src/include/
H A Drefid.h32 inline int operator==(const reference_id &r1, const reference_id &r2) argument
34 return r1.filename_id == r2.filename_id && r1.pos == r2.pos;
/macosx-10.9.5/WebCore-7537.78.1/svg/
H A DSVGPathSegArc.h31 SVGPathSegArc(SVGPathElement* element, SVGPathSegRole role, float x, float y, float r1, float r2, float angle, bool largeArcFlag, bool sweepFlag) argument
36 , m_r2(r2)
64 float r2() const { return m_r2; } function in class:WebCore::SVGPathSegArc
65 void setR2(float r2) argument
67 m_r2 = r2;
105 static PassRefPtr<SVGPathSegArcAbs> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float r1, float r2, float angle, bool largeArcFlag, bool sweepFlag) argument
107 return adoptRef(new SVGPathSegArcAbs(element, role, x, y, r1, r2, angle, largeArcFlag, sweepFlag));
111 SVGPathSegArcAbs(SVGPathElement* element, SVGPathSegRole role, float x, float y, float r1, float r2, float angle, bool largeArcFlag, bool sweepFlag) argument
112 : SVGPathSegArc(element, role, x, y, r1, r2, angle, largeArcFlag, sweepFlag)
122 static PassRefPtr<SVGPathSegArcRel> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float r1, float r2, floa argument
128 SVGPathSegArcRel(SVGPathElement* element, SVGPathSegRole role, float x, float y, float r1, float r2, float angle, bool largeArcFlag, bool sweepFlag) argument
[all...]
H A DSVGPathSegArcAbs.idl33 [StrictTypeChecking] attribute float r2;
H A DSVGPathSegArcRel.idl33 [StrictTypeChecking] attribute float r2;
/macosx-10.9.5/ruby-104/ruby/sample/drb/
H A Ddrbmc.rb18 r2 = DRbObject.new(nil, s2)
21 p [r2.hello, r2.hello.to_s]
/macosx-10.9.5/cctools-845/as/
H A Di860-check.c26 int r1, r2, rd; local
45 r2 = random() & 0x1F;
46 while( (r2 & 0x1E) == (r1 & 0x1E) );
49 while( (rd & 0x1E) == (r1 & 0x1E) || (rd & 0x1E) == (r2 & 0x1E) );
66 printf( "f%d", r2 );
78 printf( "f%d", r2 & 0x1E );
/macosx-10.9.5/procmail-14/procmail/examples/
H A D1rmail12 lockfile -! -4 -r2 $LOCKFILE
H A D2rmail12 lockfile -! -4 -r2 $LOCKFILE
H A D3rmail18 lockfile -! -4 -r2 $LOCKFILE $LOCKFILE2
/macosx-10.9.5/BerkeleyDB-21/db/mutex/
H A Duts4_cc.s16 st r2,8(sp) / Save R2
17 l r2,64+0(sp) / R2 -> word to update
20 cs r0,r1,0(r2) / Try the update ...
24 l r2,8(sp) / Restore R2
/macosx-10.9.5/dyld-239.4/unit-tests/test-cases/crt-custom/
H A Dmystart.s23 lis r2,ha16(_flag)
24 stw r0,lo16(_flag)(r2)
28 mov r2, #2
31 str r2, [r3, #0]
/macosx-10.9.5/Security-55471.14.18/libsecurity_apple_csp/open_ssl/rsa/
H A Drsa_gen.c87 BIGNUM *r0=NULL,*r1=NULL,*r2=NULL,*r3=NULL,*tmp; local
99 r2 = BN_CTX_get(ctx);
129 if (!BN_sub(r2,rsa->p,BN_value_one())) goto err;
130 if (!BN_gcd(r1,r2,rsa->e,ctx)) goto err;
140 if (!BN_sub(r2,rsa->q,BN_value_one())) goto err;
141 if (!BN_gcd(r1,r2,rsa->e,ctx)) goto err;
162 if (!BN_sub(r2,rsa->q,BN_value_one())) goto err; /* q-1 */
163 if (!BN_mul(r0,r1,r2,ctx)) goto err; /* (p-1)(q-1) */
191 if (!BN_mod(rsa->dmq1,rsa->d,r2,ctx)) goto err;
/macosx-10.9.5/KerberosHelper-148/regression/
H A Dcheck-referrals4 r2=REALM2.ROOT
7 realms="$r1 $r2 $r3"
59 kadmin.local -r $r1 -p foo -q "ank -pw r12 krbtgt/$r2@$r1" > /dev/null 2>&1 || \
63 kadmin.local -r $r2 -p foo -q "ank -pw r12 krbtgt/$r2@$r1" > /dev/null 2>&1 || \
67 kadmin.local -r $r2 -p foo -q "ank -pw r23 krbtgt/$r3@$r2" > /dev/null 2>&1 || \
71 kadmin.local -r $r3 -p foo -q "ank -pw r23 krbtgt/$r3@$r2" > /dev/null 2>&1 || \

Completed in 215 milliseconds

1234567891011>>