Searched refs:n2 (Results 51 - 75 of 216) sorted by relevance

123456789

/macosx-10.10/ksh-23/ksh/src/lib/libast/vmalloc/
H A Dvmtrace.c196 void _vmmessage(const char* s1, long n1, const char* s2, long n2) argument
198 void _vmmessage(s1, n1, s2, n2)
202 long n2;
218 if (n2)
219 bufp = trstrcpy(bufp, tritoa(n2, 0), ':');
/macosx-10.10/ksh-23/ksh/src/lib/libcmd/
H A Djoin.c635 register int n2; local
646 n2 = jp->file[1].fieldlen;
650 n = n1 < n2 ? n1 : n2;
652 if (!n && !(cmp = n1 < n2 ? -1 : (n1 > n2)) || n && !(cmp = (int)*cp1 - (int)*cp2) && !(cmp = jp->ignorecase ? strncasecmp((char*)cp1, (char*)cp2, n) : memcmp(cp1, cp2, n)))
653 cmp = n1 - n2;
657 if (!n && !(cmp = n1 < n2 ? -1 : (n1 > n2)) || n && !(cmp = (int)*cp1 - (int)*cp2) && !(cmp = jp->ignorecase ? strncasecmp((char*)cp1, (char*)cp2, n) : memcmp(cp1, cp2, n)) && !(cmp = n1 - n2))
[all...]
/macosx-10.10/groff-38/groff/src/libs/libgroff/
H A Dstring.cpp211 string::string(const char *s1, int n1, const char *s2, int n2) argument
213 assert(n1 >= 0 && n2 >= 0);
214 len = n1 + n2;
222 memcpy(ptr, s2, n2);
225 if (n2 != 0)
226 memcpy(ptr + n1, s2, n2);
/macosx-10.10/ICU-531.30/icuSources/test/cintltst/
H A Dcnormtst.c1481 const UNormalizer2 *n2=unorm2_getInstance(NULL, "nfc", UNORM2_COMPOSE_CONTIGUOUS, &errorCode); local
1487 length=unorm2_getDecomposition(n2, 0x20, decomp, LENGTHOF(decomp), &errorCode);
1492 length=unorm2_getDecomposition(n2, 0xe4, decomp, LENGTHOF(decomp), &errorCode);
1497 length=unorm2_getDecomposition(n2, 0xac01, decomp, LENGTHOF(decomp), &errorCode);
1502 length=unorm2_getDecomposition(n2, 0xac01, NULL, 0, &errorCode);
1507 length=unorm2_getDecomposition(n2, 0xac01, decomp, -1, &errorCode);
1512 length=unorm2_getDecomposition(n2, 0xac01, NULL, 4, &errorCode);
1524 const UNormalizer2 *n2=unorm2_getNFKCInstance(&errorCode); local
1534 length=unorm2_getRawDecomposition(n2, 0x20, decomp, LENGTHOF(decomp), &errorCode);
1539 length=unorm2_getRawDecomposition(n2,
1591 const UNormalizer2 *n2=unorm2_getNFCInstance(&errorCode); local
1630 const UNormalizer2 *n2=unorm2_getNFCInstance(&errorCode); local
[all...]
/macosx-10.10/OpenSSL098-52/src/test/
H A Dtx50938 $cmd -in f.n -inform n -outform n >ff.n2
65 cmp f.n ff.n2
H A Dcms-examples.pl392 $n2 = sysread $fp2, $rd2, 4096;
393 last if ( $n1 != $n2 );
H A Dtx509.com46 $ 'cmd' -in f.n -inform n -outform n -out ff.n2
73 $ backup/compare f.n ff.n2
/macosx-10.10/bzip2-36/bzip2/
H A Dhuffman.c72 Int32 nNodes, nHeap, n1, n2, i, j, k; local
102 n2 = heap[1]; heap[1] = heap[nHeap]; nHeap--; DOWNHEAP(1);
104 parent[n1] = parent[n2] = nNodes;
105 weight[nNodes] = ADDWEIGHTS(weight[n1], weight[n2]);
/macosx-10.10/libtelnet-13/
H A Dpk.c246 int n1,n2,op; local
261 n2 = in[op+1] - 'A' + 10;
263 n2 = in[op+1] - '0';
264 buf[l] = n1*16 +n2;
/macosx-10.10/ruby-106/ruby/test/rexml/
H A Dtest_notationdecl_mixin.rb23 <!NOTATION n2 PUBLIC "#{@pubid2}" "#{@sysid2}">
41 assert_equal(@pubid2, @doctype.notation('n2').public)
50 assert_equal(@sysid2, @doctype.notation('n2').system)
/macosx-10.10/OpenSSH-189/osslshim/ossl/
H A Dossl-lhash.c341 LHASH_NODE **n, **n1, **n2, *np; local
373 n2 = &(lh->b[p+pmax]);
374 *n2 = NULL; /* 27/07/92 - eay - undefined pointer bug */
386 np->next = *n2;
387 *n2 = np;
/macosx-10.10/OpenSSL098-52/src/crypto/lhash/
H A Dlhash.c307 LHASH_NODE **n,**n1,**n2,*np; local
340 n2= &(lh->b[p+pmax]);
341 *n2=NULL; /* 27/07/92 - eay - undefined pointer bug */
354 np->next= *n2;
355 *n2=np;
/macosx-10.10/Security-57031.1.35/Security/libsecurity_apple_csp/open_ssl/lhash/
H A Dlhash.c316 LHASH_NODE **n,**n1,**n2,*np; local
324 n2= &(lh->b[p+(int)lh->pmax]);
325 *n2=NULL; /* 27/07/92 - eay - undefined pointer bug */
339 np->next= *n2;
340 *n2=np;
/macosx-10.10/misc_cmds-33/tsort/
H A Dtsort.c215 NODE *n2; local
223 n2 = get_node(s2);
229 if (n1->n_arcs[i] == n2)
241 n1->n_arcs[n1->n_narcs++] = n2;
242 ++n2->n_refcnt;
/macosx-10.10/tcl-105/tcl_ext/trf/trf/generic/rs-ecc/
H A Drslib.c175 unsigned char syn[7], deter, z[4], e0, e1, e2, n0, n1, n2, w0, w1, w2, local
287 n2 = 254 - v2e[gfinv (x[2])];
300 if (n2 < 249)
301 mesg[n2] = gfadd (mesg[n2], e2);
/macosx-10.10/tcl-105/tk/tk/tests/ttk/
H A Dtreeview.test133 .tv insert newnode 0 -id newnode.n2 -text "Foo"
135 } -result newnode.n2 ;# don't crash
141 } -result [list newnode.n2 newnode.n3]
147 } -result [list newnode.n1 newnode.n2 newnode.n3]
161 list [.tv index newnode.n3] [.tv index newnode.n2] [.tv index newnode.n1]
194 } -result [list newnode.n1 newnode.n2 newnode.n3]
427 } -result [list {} [list newnode.n1 newnode.n2 newnode.n3]]
430 .tv children newnode.n1 [list newnode.n1 newnode.n2 newnode.n3]
436 .tv selection set [list newnode.n1 newnode.n3 newnode.n2]
438 } -result [list newnode.n1 newnode.n2 newnod
[all...]
/macosx-10.10/tcl-105/tcl84/tcl/generic/
H A DtclPkg.c1651 int thisIsMajor, n1, n2;
1663 n1 = n2 = 0;
1669 n2 = 10*n2 + (*v2 - '0');
1678 if (n1 != n2) {
1692 *satPtr = (n1 == n2) || ((n1 > n2) && !thisIsMajor);
1694 if (n1 > n2) {
1696 } else if (n1 == n2) {
1711 int thisIsMajor, n1, n2;
1643 int thisIsMajor, n1, n2; local
1703 int thisIsMajor, n1, n2; local
[all...]
/macosx-10.10/ICU-531.30/icuSources/common/unicode/
H A Dnormalizer2.h451 * @param n2 wrapped Normalizer2 instance
455 FilteredNormalizer2(const Normalizer2 &n2, const UnicodeSet &filterSet) : argument
456 norm2(n2), set(filterSet) {}
/macosx-10.10/CPANInternal-159.1/Heap-0.80/lib/Heap/
H A DBinomial.pm344 my $n2;
356 if( ($n2 = $next->{sib}) && $n2->{degree} == $cur->{degree} ) {
359 $next = $n2;
/macosx-10.10/PowerManagement-494.1.2/pmconfigd/
H A DUPSLowPower.c126 CFNumberRef n1, n2; local
219 n2 = isA_CFNumber(CFDictionaryGetValue(ups_info, CFSTR(kIOPSMaxCapacityKey)));
220 if(n1 && n2)
223 CFNumberGetValue(n2, kCFNumberIntType, &t2)) {
/macosx-10.10/Security-57031.1.35/Security/libsecurity_apple_csp/open_ssl/bn/
H A Dbn_lcl.h405 void bn_mul_recursive(BN_ULONG *r,BN_ULONG *a,BN_ULONG *b,int n2,BN_ULONG *t);
408 void bn_sqr_recursive(BN_ULONG *r,BN_ULONG *a, int n2, BN_ULONG *t);
410 void bn_mul_low_recursive(BN_ULONG *r,BN_ULONG *a,BN_ULONG *b,int n2,
412 void bn_mul_high(BN_ULONG *r,BN_ULONG *a,BN_ULONG *b,BN_ULONG *l,int n2,
/macosx-10.10/Security-57031.1.35/SecurityTests/clxutils/certTime/
H A DextenCooker.h133 const CSSM_X509_NAME_PTR n2);
/macosx-10.10/ncurses-44/ncurses/ncurses/tinfo/
H A Dcomp_parse.c97 _nc_entry_match(char *n1, char *n2)
104 n2 = force_bar(nc2, n2);
107 for (qstart = n2; (qend = strchr(qstart, '|')); qstart = qend + 1)
/macosx-10.10/tcl-105/tk/tk/library/demos/
H A Dcheck.tcl42 proc tristate_check {n1 n2 op} {
/macosx-10.10/OpenSSL098-52/src/Netware/
H A Ddo_tests.pl547 my( $n1, $n2, $b1, $b2 );
562 $n2 = read(IN1, $b2, 512);
564 if ($n1 != $n2) {last;}

Completed in 789 milliseconds

123456789