Searched refs:n2 (Results 76 - 100 of 216) sorted by relevance

123456789

/macosx-10.10/WebCore-7600.1.25/xml/
H A DXPathParser.cpp255 String n2; local
256 if (!lexNCName(n2))
259 name = n1 + ":" + n2;
365 String n2; local
366 if (!lexNCName(n2))
369 name = name + ":" + n2;
/macosx-10.10/tcl-105/tcl_ext/tkimg/tkimg/compat/libtiff/tools/
H A Dtiffcmp.c567 uint16 n2, *a2; local
570 if (!TIFFGetField(tif2, tag, &n2, &a2)) {
575 if (n1 == n2) {
585 printf("> and <%u: ", n2);
587 for (i = 0; i < n2; i++)
593 n2, TIFFFileName(tif2)
595 } else if (TIFFGetField(tif2, tag, &n2, &a2))
/macosx-10.10/groff-38/groff/src/roff/troff/
H A Dnode.cpp1862 node *n2; member in class:ligature_node
1887 node *n2; member in class:kern_pair_node
2173 : glyph_node(c, t, gc, fc, s, pop, x), n1(gn1), n2(gn2)
2181 : glyph_node(c, t, gc, fc, w, s, pop, x), n1(gn1), n2(gn2)
2189 delete n2;
2195 return new ligature_node(ci, tf, gcol, fcol, wid, n1->copy(), n2->copy(),
2198 return new ligature_node(ci, tf, gcol, fcol, n1->copy(), n2->copy(),
2206 n2->ascii_print(ascii);
2211 hyphen_list *hl = n2->get_hyphen_list(tail, count);
2218 n = n2
5044 same_node(node *n1, node *n2) argument
5056 same_node_list(node *n1, node *n2) argument
[all...]
/macosx-10.10/OpenSSL098-52/src/crypto/ec/
H A Decp_smpl.c1008 BIGNUM *n0, *n1, *n2, *n3, *n4, *n5, *n6; local
1032 n2 = BN_CTX_get(ctx);
1044 /* n1, n2 */
1048 if (!BN_copy(n2, &a->Y)) goto end;
1050 /* n2 = Y_a */
1059 if (!field_mul(group, n2, &a->Y, n0, ctx)) goto end;
1060 /* n2 = Y_a * Z_b^3 */
1084 if (!BN_mod_sub_quick(n6, n2, n4, p)) goto end;
1086 /* n6 = n2 - n4 */
1110 if (!BN_mod_add_quick(n2, n
1172 BIGNUM *n0, *n1, *n2, *n3; local
[all...]
/macosx-10.10/mail_cmds-30/mail/
H A Dnames.c556 cat(n1, n2)
557 struct name *n1, *n2;
562 return (n2);
563 if (n2 == NULL)
566 tail->n_flink = n2;
567 n2->n_blink = tail;
/macosx-10.10/vim-55/src/xxd/
H A Dxxd.c269 int c, ign_garb = 1, n1 = -1, n2 = 0, n3, p = cols; local
285 n3 = n2;
286 n2 = n1;
336 if (n2 >= 0 && n1 >= 0)
338 putc((n2 << 4) | n1, fpo);
351 else if (n1 < 0 && n2 < 0 && n3 < 0)
/macosx-10.10/Heimdal-398.1.2/lib/hcrypto/libtommath/
H A Dbn_mp_div.c24 int res, n, n2; local
74 n2 = (a->sign == b->sign ? MP_ZPOS : MP_NEG);
77 c->sign = (mp_iszero(c) == MP_YES) ? MP_ZPOS : n2;
/macosx-10.10/tcl-105/tcl/tcl/libtommath/
H A Dbn_mp_div.c24 int res, n, n2; local
74 n2 = (a->sign == b->sign ? MP_ZPOS : MP_NEG);
77 c->sign = (mp_iszero(c) == MP_YES) ? MP_ZPOS : n2;
/macosx-10.10/ICU-531.30/icuSources/test/cintltst/
H A Dcustrtst.c1189 UCharIterator *iter2, const char *n2) {
1197 log_err("%s->getIndex(length)=%d != %d=%s->getIndex(length)\n", n1, length, pos2, n2);
1212 log_err("%s->move(from 0 to middle %d)=%d does not move to the middle\n", n2, middle, pos2);
1220 log_err("%s->current()=U+%04x != U+%04x=%s->current() at middle=%d\n", n1, c1, c2, n2, middle);
1229 log_err("%s->next()=U+%04x != U+%04x=%s->next() at %d (started in middle)\n", n1, c1, c2, n2, iter1->getIndex(iter1, UITER_CURRENT));
1239 log_err("%s->previous()=U+%04x != U+%04x=%s->previous() at %d (started in middle)\n", n1, c1, c2, n2, iter1->getIndex(iter1, UITER_CURRENT));
1257 log_err("%s->move(start) failed\n", n2);
1261 log_err("%s->hasNext() at the start returns FALSE\n", n2);
1269 log_err("%s->next()=U+%04x != U+%04x=%s->next() at %d\n", n1, c1, c2, n2, iter1->getIndex(iter1, UITER_CURRENT));
1279 log_err("%s->hasNext() at the end returns TRUE\n", n2);
1188 compareIterators(UCharIterator *iter1, const char *n1, UCharIterator *iter2, const char *n2) argument
[all...]
/macosx-10.10/OpenSSL098-52/src/crypto/bn/
H A Dbn_lcl.h470 void bn_mul_recursive(BN_ULONG *r,BN_ULONG *a,BN_ULONG *b,int n2,
474 void bn_sqr_recursive(BN_ULONG *r,const BN_ULONG *a, int n2, BN_ULONG *t);
476 void bn_mul_low_recursive(BN_ULONG *r,BN_ULONG *a,BN_ULONG *b,int n2,
478 void bn_mul_high(BN_ULONG *r,BN_ULONG *a,BN_ULONG *b,BN_ULONG *l,int n2,
/macosx-10.10/ruby-106/ruby/test/openssl/
H A Dtest_x509name.rb334 n2 = OpenSSL::X509::Name.parse 'CN=a'
336 assert_equal n1, n2
341 n2 = OpenSSL::X509::Name.parse 'CN=b'
343 assert_equal(-1, n1 <=> n2)
/macosx-10.10/ruby-106/ruby/test/rexml/
H A Dtest_doctype.rb16 <!NOTATION n2 SYSTEM "#{@notid2}">
51 assert_equal(@notid2, @doctype1.notation("n2").system)
58 assert_equal(@notid2, find_notation(notations, "n2").system)
H A Dtest_attributes.rb98 xmlns:n2="http://www.w3.org" >
99 <bad n1:a="1" n2:a="2" />
/macosx-10.10/dtrace-147/libdtrace/
H A Ddt_parser.c397 char n2[DT_TYPE_NAMELEN]; local
477 dnp->dn_xlator->dx_src_type, n2, sizeof (n2)));
1377 char n2[DT_TYPE_NAMELEN]; local
1445 n2, sizeof (n2)));
1597 dt_node_type_name(&idn, n2, sizeof (n2)));
1622 dt_node_type_name(pnp, n2, sizeof (n2)));
2389 char n2[DT_TYPE_NAMELEN]; local
3087 char n2[DT_TYPE_NAMELEN]; local
4132 char n2[DT_TYPE_NAMELEN]; local
4193 char n2[DT_TYPE_NAMELEN]; local
4248 char n2[DT_TYPE_NAMELEN]; local
4321 char n2[DT_TYPE_NAMELEN]; local
[all...]
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/libraries/libldap/
H A Drb_response.c52 const struct rb_node *n2 )
55 const ber_int_t msgid2 = RBNODE_TO_LM(n2)->lm_msgid;
/macosx-10.10/ruby-106/ruby/ext/tk/sample/demos-en/
H A Dcheck2.rb80 tristate_check = proc{|n1,n2,op|
/macosx-10.10/ruby-106/ruby/ext/tk/sample/demos-jp/
H A Dcheck2.rb81 tristate_check = proc{|n1,n2,op|
/macosx-10.10/Heimdal-398.1.2/lib/gssapi/spnego/
H A Dcontext_stubs.c273 spnego_name n2 = (spnego_name)name2; local
277 if (!gss_oid_equal(&n1->type, &n2->type))
279 if (n1->value.length != n2->value.length)
281 if (memcmp(n1->value.value, n2->value.value, n2->value.length) != 0)
/macosx-10.10/rsync-45/rsync/
H A Dloadparm.c812 pstring n2; local
822 pstrcpy(n2,pszFname);
824 pstrcpy(n2,RSYNCD_USERCONF);
826 pstrcpy(n2,RSYNCD_SYSCONF);
830 bRetval = pm_process(n2, globals_only?NULL:do_section, do_parameter);
/macosx-10.10/ICU-531.30/icuSources/common/
H A Dnormalizer2.cpp758 const Normalizer2 *n2=(const Normalizer2 *)norm2; local
759 const Normalizer2WithImpl *n2wi=dynamic_cast<const Normalizer2WithImpl *>(n2);
768 n2->normalize(srcString, destString, *pErrorCode);
795 const Normalizer2 *n2=(const Normalizer2 *)norm2; local
796 const Normalizer2WithImpl *n2wi=dynamic_cast<const Normalizer2WithImpl *>(n2);
821 n2->normalizeSecondAndAppend(firstString, secondString, *pErrorCode);
823 n2->append(firstString, secondString, *pErrorCode);
/macosx-10.10/groff-38/groff/src/devices/xditview/
H A Ddraw.c607 int x_1, y_1, dx, dy, n1, n2, n; local
616 n2 = dy*(x_3 - x_1) - dx*(y_3 - y_1);
619 if (n2 < 0)
620 n2 = -n2;
621 n = n1 > n2 ? n1 : n2;
/macosx-10.10/mDNSResponder-561.1.1/mDNSMacOSX/
H A DLegacyNATTraversal.c633 NATTraversalInfo *n2 = m->NATTraversals; local
648 while (n2)
650 if (n2 == n || RequestedPortNum(n2) != ReqPortNum) n2=n2->next;
657 n2 = m->NATTraversals; // And re-scan the list looking for conflicts
/macosx-10.10/ksh-23/ksh/src/lib/libast/uwin/
H A Dsupport.c426 static const n0=3,n1=2,n2=1,n3=0;
428 static const n0=0,n1=1,n2=2,n3=3;
468 t=y; pt[n3]=0; pt[n2]&=0xf800; y1=t;
/macosx-10.10/ruby-106/ruby/test/bigdecimal/
H A Dtest_bigdecimal.rb407 n2 = BigDecimal.new("2")
409 assert_equal( 1, n2 <=> n1)
410 assert_equal(-1, n1 <=> n2)
412 assert_operator(n1, :!=, n2)
413 assert_operator(n1, :<, n2)
415 assert_operator(n1, :<=, n2)
416 assert_operator(n2, :>, n1)
417 assert_operator(n2, :>=, n1)
452 n2 = BigDecimal.new("2")
456 assert_equal( 1, n2 <
[all...]
/macosx-10.10/tcl-105/tcl_ext/mk4tcl/metakit/src/
H A Dhandler.cpp404 int n1, n2; local
406 const void *p2 = h2.Get(dstPos_, n2);
409 c4_Bytes t2(p2, n2, true);

Completed in 379 milliseconds

123456789