Searched refs:s2 (Results 151 - 175 of 843) sorted by relevance

1234567891011>>

/macosx-10.10.1/Security-57031.1.35/Security/include/security_cdsa_utilities/
H A Dcssmpods.h182 inline bool operator == (const CSSM_KEY_SIZE &s1, const CSSM_KEY_SIZE &s2) argument
184 return s1.LogicalKeySizeInBits == s2.LogicalKeySizeInBits
185 && s1.EffectiveKeySizeInBits == s2.EffectiveKeySizeInBits;
188 inline bool operator != (const CSSM_KEY_SIZE &s1, const CSSM_KEY_SIZE &s2) argument
189 { return !(s1 == s2); }
202 inline bool operator == (const CSSM_QUERY_SIZE_DATA &s1, const CSSM_QUERY_SIZE_DATA &s2) argument
204 return s1.SizeInputBlock == s2.SizeInputBlock
205 && s1.SizeOutputBlock == s2.SizeOutputBlock;
208 inline bool operator != (const CSSM_QUERY_SIZE_DATA &s1, const CSSM_QUERY_SIZE_DATA &s2) argument
209 { return !(s1 == s2); }
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_cdsa_utilities/lib/
H A Dcssmpods.h182 inline bool operator == (const CSSM_KEY_SIZE &s1, const CSSM_KEY_SIZE &s2) argument
184 return s1.LogicalKeySizeInBits == s2.LogicalKeySizeInBits
185 && s1.EffectiveKeySizeInBits == s2.EffectiveKeySizeInBits;
188 inline bool operator != (const CSSM_KEY_SIZE &s1, const CSSM_KEY_SIZE &s2) argument
189 { return !(s1 == s2); }
202 inline bool operator == (const CSSM_QUERY_SIZE_DATA &s1, const CSSM_QUERY_SIZE_DATA &s2) argument
204 return s1.SizeInputBlock == s2.SizeInputBlock
205 && s1.SizeOutputBlock == s2.SizeOutputBlock;
208 inline bool operator != (const CSSM_QUERY_SIZE_DATA &s1, const CSSM_QUERY_SIZE_DATA &s2) argument
209 { return !(s1 == s2); }
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/mk4tcl/metakit/tests/
H A Dtextend.cpp58 c4_Storage s2("e03a", 0);
59 c4_View v2 = s2.View("a");
93 c4_Storage s2("e04a", 0);
94 c4_View v2 = s2.View("a");
109 c4_View v2a = s2.View("a");
184 c4_Storage s2("e06a", 0);
185 c4_View v2 = s2.View("a");
194 s2.Rollback();
196 c4_View v2a = s2.View("a");
201 c4_View v2a = s2
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/tklib/tklib/examples/plotchart/
H A Dplotdemos2.tcl102 set s2 [::Plotchart::createXYPlot .t2.c2 {0.0 100.0 10.0} {0.0 100.0 20.0}]
105 $s2 background image $image
107 #$s2 dataconfig series1 -filled up -fillcolour white
109 $s2 plot series1 0.0 20.0
110 $s2 plot series1 10.0 20.0
111 $s2 plot series1 30.0 50.0
112 $s2 plot series1 35.0 45.0
113 $s2 plot series1 45.0 25.0
114 $s2 plot series1 75.0 55.0
115 $s2 plo
[all...]
/macosx-10.10.1/BerkeleyDB-21/db/test/scr016/src/com/sleepycat/db/test/
H A DHashCompareTest.java109 String s1, s2;
111 s2 = new String((byte[])o2);
112 return s1.compareToIgnoreCase(s2);
120 String s1, s2;
122 s2 = new String((byte[])o2);
123 return s1.compareToIgnoreCase(s2);
/macosx-10.10.1/bash-94.1.2/bash-3.2/
H A Dbracecomp.c44 string_gcd (s1, s2)
45 char *s1, *s2;
49 if (s1 == NULL || s2 == NULL)
52 for (i = 0; *s1 && *s2; ++s1, ++s2, ++i)
54 if (*s1 != *s2)
/macosx-10.10.1/bind9-45.101/bind9/contrib/
H A Dzone-edit.sh.in82 sort ${dir}/nnn > ${dir}/s2
83 comm -23 ${dir}/s1 ${dir}/s2 |
85 comm -13 ${dir}/s1 ${dir}/s2 |
/macosx-10.10.1/emacs-93/emacs/lib-src/
H A Dsorted-doc.c67 /* Print error message. `s1' is printf control string, `s2' is arg for it. */
70 error (s1, s2)
71 char *s1, *s2;
74 fprintf (stderr, s1, s2);
81 fatal (s1, s2)
82 char *s1, *s2;
84 error (s1, s2);
/macosx-10.10.1/sudo-73/src/
H A Dstrcasecmp.c64 strcasecmp(s1, s2)
66 const char *s2;
69 const unsigned char *us2 = (const unsigned char *) s2;
79 strncasecmp(s1, s2, n)
81 const char *s2;
85 const unsigned char *us2 = (const unsigned char *) s2;
/macosx-10.10.1/OpenSSL098-52/src/ssl/
H A Ds2_clnt.c246 s->s2->clear_text=0;
369 s->s2->tmp.cert_type= *(p++);
372 n2s(p,i); s->s2->tmp.cert_length=i;
373 n2s(p,i); s->s2->tmp.csl=i;
374 n2s(p,i); s->s2->tmp.conn_id_length=i;
379 len = 11 + (unsigned long)s->s2->tmp.cert_length + (unsigned long)s->s2->tmp.csl + (unsigned long)s->s2->tmp.conn_id_length;
396 if (s->s2->tmp.cert_length != 0)
401 if (s->s2
[all...]
/macosx-10.10.1/apr-32/apr/apr/test/
H A Dtestlock.c155 apr_status_t s1, s2, s3, s4; local
166 s2 = apr_thread_create(&t2, NULL, thread_mutex_function, NULL, p);
167 ABTS_INT_EQUAL(tc, APR_SUCCESS, s2);
174 apr_thread_join(&s2, t2);
184 apr_status_t s1, s2, s3, s4; local
199 s2 = apr_thread_create(&t2, NULL, thread_rwlock_func, NULL, p);
200 APR_ASSERT_SUCCESS(tc, "create thread 2", s2);
207 apr_thread_join(&s2, t2);
219 apr_status_t s0, s1, s2, s3, s4; local
247 s2
[all...]
/macosx-10.10.1/ntfs-84/kext/
H A Dntfs_unistr.h47 const ntfschar *s2, size_t s2_len, const BOOL case_sensitive,
56 __private_extern__ int ntfs_ucsncmp(const ntfschar *s1, const ntfschar *s2,
58 __private_extern__ int ntfs_ucsncasecmp(const ntfschar *s1, const ntfschar *s2,
/macosx-10.10.1/tcl-105/tcl_ext/xotcl/xotcl/library/store/XOTclSdbm/
H A Dutil.c17 oops(s1, s2)
19 register char *s2;
29 fprintf(stderr, s1, s2);
/macosx-10.10.1/Heimdal-398.1.2/lib/krb5/
H A Dn-fold.c59 ssize_t b1, s1, b2, s2; local
70 s2 = (len + 8 - s1) % 8;
72 s2 = 8 - s1;
74 buf[i] = (tmp[b1] << s1) | (tmp[b2] >> s2);
H A Dtest_acl.c41 krb5_errx(c, 1, "s1 or s2 is NULL"); \
50 char *s1, *s2; local
87 ret = krb5_acl_match_string(context, "foo bar", "rr", &s1, &s2);
90 STRINGMATCH(context, "ret 2 match 2", s2, "bar"); free(s2);
/macosx-10.10.1/pyobjc-45/2.5/pyobjc/pyobjc-core/PyObjCTest/
H A Dtest_set_proxy.py144 s2 = self.setClass(range(5))
146 self.assert_(OC_TestSet.set_isSubsetOfSet_(s2, s1))
147 self.assert_(OC_TestSet.set_isSubsetOfSet_(s2, s2))
148 self.assert_(not OC_TestSet.set_isSubsetOfSet_(s1, s2))
152 s2 = self.setClass([3,4,5,6])
155 self.assert_(OC_TestSet.set_intersectsSet_(s1, s2))
156 self.assert_(OC_TestSet.set_intersectsSet_(s2, s3))
226 s2 = self.setClass([3,4,5])
228 OC_TestSet.set_unionSet_(s1, s2)
[all...]
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-core/PyObjCTest/
H A Dtest_set_proxy.py144 s2 = self.setClass(range(5))
146 self.assertTrue(OC_TestSet.set_isSubsetOfSet_(s2, s1))
147 self.assertTrue(OC_TestSet.set_isSubsetOfSet_(s2, s2))
148 self.assertFalse(OC_TestSet.set_isSubsetOfSet_(s1, s2))
152 s2 = self.setClass([3,4,5,6])
155 self.assertTrue(OC_TestSet.set_intersectsSet_(s1, s2))
156 self.assertTrue(OC_TestSet.set_intersectsSet_(s2, s3))
226 s2 = self.setClass([3,4,5])
228 OC_TestSet.set_unionSet_(s1, s2)
[all...]
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-core-2.5.1/PyObjCTest/
H A Dtest_set_proxy.py147 s2 = self.setClass(range(5))
149 self.assertTrue(OC_TestSet.set_isSubsetOfSet_(s2, s1))
150 self.assertTrue(OC_TestSet.set_isSubsetOfSet_(s2, s2))
151 self.assertFalse(OC_TestSet.set_isSubsetOfSet_(s1, s2))
155 s2 = self.setClass([3,4,5,6])
158 self.assertTrue(OC_TestSet.set_intersectsSet_(s1, s2))
159 self.assertTrue(OC_TestSet.set_intersectsSet_(s2, s3))
229 s2 = self.setClass([3,4,5])
231 OC_TestSet.set_unionSet_(s1, s2)
[all...]
/macosx-10.10.1/ruby-106/ruby/test/socket/
H A Dtest_nonblock.rb107 s2 = Socket.new(Socket::AF_INET, Socket::SOCK_DGRAM, 0)
109 assert_raise(IO::WaitReadable, Errno::EINVAL) { s2.recvfrom_nonblock(100) }
110 s2.send("aaa", 0, s1.getsockname)
115 s2_port, s2_addr = Socket.unpack_sockaddr_in(s2.getsockname)
119 s2.close if s2
146 s2 = UDPSocket.new
147 s2.bind('127.0.0.1', 0)
148 af, port2, host, addr2 = s2.addr
151 s2
[all...]
/macosx-10.10.1/tcl-105/tk/tk/library/demos/
H A Dspin.tcl44 spinbox $w.s2 -from 0 -to 3 -increment .5 -format %05.2f -width 10
50 pack $w.s1 $w.s2 $w.s3 -side top -pady 5 -padx 10 ;#-fill x
/macosx-10.10.1/tcl-105/tk84/tk/library/demos/
H A Dspin.tcl44 spinbox $w.s2 -from 0 -to 3 -increment .5 -format %05.2f -width 10
50 pack $w.s1 $w.s2 $w.s3 -side top -pady 5 -padx 10 ;#-fill x
/macosx-10.10.1/bash-94.1.2/bash-3.2/lib/readline/
H A Dutil.c229 /* Determine if s2 occurs in s1. If so, return a pointer to the
232 _rl_strindex (s1, s2)
233 register const char *s1, *s2;
237 for (i = 0, l = strlen (s2), len = strlen (s1); (len - i) >= l; i++)
238 if (_rl_strnicmp (s1 + i, s2, l) == 0)
320 _rl_qsort_string_compare (s1, s2)
321 char **s1, **s2;
324 return (strcoll (*s1, *s2));
328 result = **s1 - **s2;
330 result = strcmp (*s1, *s2);
[all...]
/macosx-10.10.1/libiconv-42/libiconv/lib/
H A Dshift_jisx0213.h247 unsigned int s1, s2; local
252 s2 = jch & 0x7f;
254 s2 -= 0x21;
266 s2 += 0x5e;
272 if (s2 < 0x3f)
273 s2 += 0x40;
275 s2 += 0x41;
280 conv->ostate = (s1 << 8) | s2;
286 r[1] = s2;
/macosx-10.10.1/ICU-531.30/icuSources/test/intltest/
H A Ditspoof.cpp156 UnicodeString s2 = UnicodeString("\\u0441\\u0445\\u0455").unescape(); // Cyrillic "cxs" local
157 int32_t checkResults = uspoof_areConfusableUnicodeString(sc, s1, s2, &status);
277 UnicodeString s2("A long string that wi11 overflow stack buffers. A long string that will overflow stack buffers. "
279 TEST_ASSERT_EQ(USPOOF_SINGLE_SCRIPT_CONFUSABLE, uspoof_areConfusableUnicodeString(sc, s1, s2, &status));
293 UnicodeString s2 = UnicodeString("abcd\\u0301\\u0302\\u0301ef").unescape(); local
294 TEST_ASSERT_EQ(USPOOF_INVISIBLE, uspoof_checkUnicodeString(sc, s2, &position, &status));
593 ScriptSet s2; local
596 TEST_ASSERT(s1 == s2);
599 TEST_ASSERT(!(s1 == s2));
605 TEST_ASSERT(s1 == s2);
[all...]
/macosx-10.10.1/Heimdal-398.1.2/lib/hcrypto/
H A Drijndael-alg-fst.c865 uint32_t s0, s1, s2, s3, t0, t1, t2, t3; local
876 s2 = GETU32(pt + 8) ^ rk[2];
880 t0 = Te0[s0 >> 24] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^ Te3[s3 & 0xff] ^ rk[ 4];
881 t1 = Te0[s1 >> 24] ^ Te1[(s2 >> 16) & 0xff] ^ Te2[(s3 >> 8) & 0xff] ^ Te3[s0 & 0xff] ^ rk[ 5];
882 t2 = Te0[s2 >> 24] ^ Te1[(s3 >> 16) & 0xff] ^ Te2[(s0 >> 8) & 0xff] ^ Te3[s1 & 0xff] ^ rk[ 6];
883 t3 = Te0[s3 >> 24] ^ Te1[(s0 >> 16) & 0xff] ^ Te2[(s1 >> 8) & 0xff] ^ Te3[s2 & 0xff] ^ rk[ 7];
887 s2 = Te0[t2 >> 24] ^ Te1[(t3 >> 16) & 0xff] ^ Te2[(t0 >> 8) & 0xff] ^ Te3[t1 & 0xff] ^ rk[10];
890 t0 = Te0[s0 >> 24] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^ Te3[s3 & 0xff] ^ rk[12];
891 t1 = Te0[s1 >> 24] ^ Te1[(s2 >> 16) & 0xff] ^ Te2[(s3 >> 8) & 0xff] ^ Te3[s0 & 0xff] ^ rk[13];
892 t2 = Te0[s2 >> 2
1046 uint32_t s0, s1, s2, s3, t0, t1, t2, t3; local
[all...]

Completed in 518 milliseconds

1234567891011>>