Searched refs:m2 (Results 1 - 25 of 142) sorted by relevance

123456

/macosx-10.9.5/CPANInternal-140/DateTime/t/
H A D09greg.t55 my ($dno,$y,$m,$dno2,$y2,$m2,$d2,$mlen) = (-1753530,-4800,1);
66 ( $y2, $m2, $d2 ) = DateTime->_rd2ymd($dno);
68 if ( $y2 != $y || $m2 != $m || $d2 != 1 ) {
69 is( "$y2/$m2/$d2", "$y/$m/1",
83 ( $y2, $m2, $d2 ) = DateTime->_rd2ymd($dno);
85 if ( $y2 != $y || $m2 != $m || $d2 != $mlen ) {
86 is( "$y2/$m2/$d2", "$y/$m/$mlen",
/macosx-10.9.5/bash-92/bash-3.2/tests/misc/
H A Dperf-script3 typeset -i m2 m1 M n2 n1 N m n
26 let "m2 = M + 1"
37 let "x = (m-m1)*(m-M)*(m-m2)"
/macosx-10.9.5/ruby-104/ruby/benchmark/
H A Dbm_so_matrix.rb24 def mmult(rows, cols, m1, m2)
31 val += m1.at(bi).at(k) * m2.at(k).at(j)
41 m2 = mkmatrix(size, size)
44 mm = mmult(size, size, m1, m2)
/macosx-10.9.5/tcl-102/tcl_ext/memchan/memchan/isaac/
H A Drandport.c20 #define rngstep(mix,a,b,mm,m,m2,r,x) \
23 a = ((a^(mix)) + *(m2++)) & 0xffffffff; \
31 register ub4 a,b,x,y,*m,*mm,*m2,*r,*mend; local
34 for (m = mm, mend = m2 = m+(RANDSIZ/2); m<mend; )
36 rngstep( a<<13, a, b, mm, m, m2, r, x);
37 rngstep( a>>6 , a, b, mm, m, m2, r, x);
38 rngstep( a<<2 , a, b, mm, m, m2, r, x);
39 rngstep( a>>16, a, b, mm, m, m2, r, x);
41 for (m2 = mm; m2<men
[all...]
/macosx-10.9.5/CPANInternal-140/Readonly/t/
H A Ddeeps.t20 my $m2 = \$m1;
27 eval {Readonly::Scalar1 $s3 => $m2};
29 eval {Readonly::Scalar $s4 => $m2};
/macosx-10.9.5/CPANInternal-140/Readonly-1.03/t/
H A Ddeeps.t20 my $m2 = \$m1;
27 eval {Readonly::Scalar1 $s3 => $m2};
29 eval {Readonly::Scalar $s4 => $m2};
/macosx-10.9.5/ICU-511.35/icuSources/test/perf/ubrkperf/
H A DUBrkPerf.pl31 my $m2 = "-- -m word";
81 "TestForwardWord", ["$p1 $m2 TestICUForward", "$p2 $m2 TestICUForward", "$p3 $m2 TestICUForward"],
86 "TestIsBoundWord", ["$p1 $m2 TestICUIsBound", "$p2 $m2 TestICUIsBound", "$p3 $m2 TestICUIsBound"],
H A DUBrkPerf_r.pl30 my $m2 = "-- -m word";
73 "TestForwardWord", ["$p1 $m2 TestICUForward", "$p2 $m2 TestICUForward"],
78 "TestIsBoundWord", ["$p1 $m2 TestICUIsBound", "$p2 $m2 TestICUIsBound"],
/macosx-10.9.5/OpenSSH-186/openssh/regress/
H A Dmodpipe.c72 u_int8_t m1, m2; member in struct:modification
79 int n, m1, m2; local
83 what, &m->offset, &m1, &m2)) < 3)
97 if (m2 < 0 || m2 > 0xff)
101 m->m2 = m2;
150 buf[mods[i].offset - total] |= mods[i].m2;
/macosx-10.9.5/postfix-252/postfix/src/global/
H A Dmsg_stats.h77 #define MSG_STATS_INIT2(st, m1, v1, m2, v2) \
81 ((st)->m2 = (v2)), \
/macosx-10.9.5/bash-92/bash-3.2/lib/sh/
H A Dstringlist.c147 strlist_merge (m1, m2)
148 STRINGLIST *m1, *m2;
154 l2 = m2 ? m2->list_len : 0;
160 sl->list[n] = STRDUP (m2->list[i]);
168 strlist_append (m1, m2)
169 STRINGLIST *m1, *m2;
174 return (m2 ? strlist_copy (m2) : (STRINGLIST *)0);
177 len2 = m2
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/transforms/
H A DAffineTransform.h141 bool operator== (const AffineTransform& m2) const
143 return (m_transform[0] == m2.m_transform[0]
144 && m_transform[1] == m2.m_transform[1]
145 && m_transform[2] == m2.m_transform[2]
146 && m_transform[3] == m2.m_transform[3]
147 && m_transform[4] == m2.m_transform[4]
148 && m_transform[5] == m2.m_transform[5]);
H A DTransformationMatrix.h297 bool operator==(const TransformationMatrix& m2) const
299 return (m_matrix[0][0] == m2.m_matrix[0][0] &&
300 m_matrix[0][1] == m2.m_matrix[0][1] &&
301 m_matrix[0][2] == m2.m_matrix[0][2] &&
302 m_matrix[0][3] == m2.m_matrix[0][3] &&
303 m_matrix[1][0] == m2.m_matrix[1][0] &&
304 m_matrix[1][1] == m2.m_matrix[1][1] &&
305 m_matrix[1][2] == m2.m_matrix[1][2] &&
306 m_matrix[1][3] == m2.m_matrix[1][3] &&
307 m_matrix[2][0] == m2
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tktreectrl/tktreectrl/demos/
H A Ddemo.tcl289 set m2 [menu $m.mFile -tearoff no]
300 $m2 add command -label "Console" -command {
308 $m2 add command -label "Event Browser" -command ToggleEventsWindow
309 $m2 add command -label "Identify" -command ToggleIdentifyWindow
310 $m2 add command -label "Style Editor" -command ToggleStyleEditorWindow
311 $m2 add command -label "View Source" -command ToggleSourceWindow
312 $m2 add command -label "Magnifier" -command ToggleLoupeWindow
313 $m2 add separator
314 $m2 add command -label "Increase Font Size" -command IncreaseFontSize
315 $m2 ad
[all...]
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/libraries/librewrite/
H A Dconfig.c307 const struct rewrite_builtin_map *m1, *m2; local
310 m2 = ( const struct rewrite_builtin_map * )c2;
313 assert( m2 != NULL );
315 assert( m2->lb_name != NULL );
317 return strcasecmp( m1->lb_name, m2->lb_name );
329 struct rewrite_builtin_map *m1, *m2; local
332 m2 = ( struct rewrite_builtin_map * )c2;
335 assert( m2 != NULL );
337 assert( m2->lb_name != NULL );
339 return ( strcasecmp( m1->lb_name, m2
[all...]
/macosx-10.9.5/ruby-104/ruby/bootstraptest/
H A Dtest_method.rb237 alias m2 m1
239 m1 + m2 + m3
411 def m(m1, m2, o1=:o1, o2=:o2, *r, p1, p2, &b)
413 [m1, m2, o1, o2, r, p1, p2, b.class, x, y]
418 def m(m1, m2, o1=:o1, o2=:o2, *r, p1, p2, &b)
420 [m1, m2, o1, o2, r, p1, p2, b.class, x, y]
425 def m(m1, m2, o1=:o1, o2=:o2, *r, p1, p2, &b)
427 [m1, m2, o1, o2, r, p1, p2, b.class, x, y]
432 def m(m1, m2, o1=:o1, o2=:o2, *r, p1, p2, &b)
434 [m1, m2, o
[all...]
/macosx-10.9.5/tcl-102/tk/tk/library/demos/
H A Dttkmenu.tcl29 ttk::menubutton $w.m2 -menu $w.m1.menu -text "Select a theme" -direction left
36 menu $w.m2.menu -tearoff 0
43 $w.m2.menu add command -label $theme -command [list ttk::setTheme $theme]
55 grid $w.m2 $w.m4 $w.m3 -in $w.f -padx 3 -pady 2
/macosx-10.9.5/ruby-104/ruby/test/ruby/
H A Dtest_symbol.rb140 m2 = :m2_block_given?.to_proc
141 assert_equal([true, false], m2.call(self, m2) {}, "#{bug8531} nested with block")
142 assert_equal([false, false], m2.call(self, m2), "#{bug8531} nested without block")
H A Dtest_module.rb511 $m2 = Module.nesting
519 TestModule::M1, TestModule], $m2)
886 m2 = Module.new
887 m2.module_eval { include(m) }
888 assert_equal(m2, t)
891 o.extend(m2)
904 m2 = Module.new
906 m2.module_eval { include(m) }
910 o.extend(m2)
929 m2
[all...]
/macosx-10.9.5/ruby-104/ruby/test/rdoc/
H A Dtest_rdoc_stats.rb237 m2 = RDoc::AnyMethod.new nil, 'm2'
238 m2.record_location @tl
239 c2.add_method m2
240 m2.comment = 'm2'
361 m2 = RDoc::AnyMethod.new nil, 'm2'
362 m2.record_location @tl
363 c.add_method m2
[all...]
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/servers/slapd/overlays/
H A Dseqmod.c43 const modtarget *m1, *m2; local
46 m1 = c1; m2 = c2;
47 rc = m1->mt_op->o_req_ndn.bv_len - m2->mt_op->o_req_ndn.bv_len;
50 return ber_bvcmp( &m1->mt_op->o_req_ndn, &m2->mt_op->o_req_ndn );
/macosx-10.9.5/ruby-104/ruby/lib/
H A Dmatrix.rb1024 m0, m1, m2 = m
1025 + m0[0] * m1[1] * m2[2] - m0[0] * m1[2] * m2[1] \
1026 - m0[1] * m1[0] * m2[2] + m0[1] * m1[2] * m2[0] \
1027 + m0[2] * m1[0] * m2[1] - m0[2] * m1[1] * m2[0]
1029 m0, m1, m2, m3 = m
1030 + m0[0] * m1[1] * m2[2] * m3[3] - m0[0] * m1[1] * m2[
[all...]
/macosx-10.9.5/objc4-551.1/test/
H A Dconcurrentcat.m37 - (void) m2;
56 - (void) m2 { fail("shoulda been loaded!"); }
83 [target m2];
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/servers/slapd/back-sql/
H A Dschema-map.c50 *m2 = v_m2; local
53 return SLAP_PTRCMP( m1->bom_oc, m2->bom_oc );
55 return ber_bvcmp( &m1->bom_oc->soc_cname, &m2->bom_oc->soc_cname );
63 *m2 = v_m2; local
65 return ( m1->bom_id < m2->bom_id ? -1 : ( m1->bom_id > m2->bom_id ? 1 : 0 ) );
75 *m2 = v_m2; local
77 if ( slap_ad_is_binary( m1->bam_ad ) || slap_ad_is_binary( m2->bam_ad ) ) {
79 return SLAP_PTRCMP( m1->bam_ad->ad_type, m2->bam_ad->ad_type );
81 return ber_bvcmp( &m1->bam_ad->ad_type->sat_cname, &m2
96 *m2 = v_m2; local
[all...]
/macosx-10.9.5/tcl-102/tk84/tk/generic/
H A DtkTrig.c93 double m1, b1, m2, b2;
99 * through the point, also in the form y = m2*x + b2.
104 m2 = -1.0/m1;
105 b2 = pointPtr[1] - m2*pointPtr[0];
106 x = (b2 - b1)/(m1 - m2);
522 double m1, b1, m2, b2;
529 * through the point, also in the form y = m2*x + b2.
534 m2 = -1.0/m1;
535 b2 = pointPtr[1] - m2*pointPtr[0];
536 x = (b2 - b1)/(m1 - m2);
92 double m1, b1, m2, b2; local
518 double m1, b1, m2, b2; local
[all...]

Completed in 284 milliseconds

123456