Searched refs:s1 (Results 126 - 150 of 913) sorted by relevance

1234567891011>>

/macosx-10.10/tcl-105/tcl_ext/snack/snack/demos/python/
H A Dgenerator.py35 filt.configure(s1.get(), s2.get(), shape, type, -1)
40 s1 = Scale(f, from_=4000, to=50, label="Frequency", length=200, command=config) variable
41 s1.pack(side='left')
46 s1.set(440.0)
/macosx-10.10/tcl-105/tcl_ext/tkimg/tkimg/compat/libtiff/port/
H A Dlibport.h35 int strcasecmp(const char *s1, const char *s2);
/macosx-10.10/ruby-106/ruby/test/socket/
H A Dtest_unix.rb16 s1, s2 = UNIXSocket.pair
18 s1.send_io(nil)
22 s1.send_io(r1)
30 s1.close
47 UNIXSocket.pair {|s1, s2|
49 ret = s1.sendmsg("\0", 0, nil, [Socket::SOL_SOCKET, Socket::SCM_RIGHTS,
84 UNIXSocket.pair {|s1, s2|
87 ret = s1.sendmsg("\0", 0, nil, ancdata)
113 s1, s2 = UNIXSocket.pair
114 s1
[all...]
/macosx-10.10/tcl-105/tcl84/tcl/compat/
H A Dstrncasecmp.c62 int strncasecmp _ANSI_ARGS_((CONST char *s1,
65 int strcasecmp _ANSI_ARGS_((CONST char *s1,
77 * Compares two null-terminated strings s1 and s2, returning -1, 0,
78 * or 1 if s1 is lexicographically less than, equal to, or greater
88 strcasecmp(s1, s2)
89 CONST char *s1; /* First string. */
94 for ( ; ; s1++, s2++) {
95 u1 = (unsigned char) *s1;
113 * Compares up to length chars of s1 and s2, returning -1, 0, or 1
114 * if s1 i
[all...]
/macosx-10.10/OpenSSL098-52/src/crypto/aes/asm/
H A Daes-586.pl91 $s1="ebx";
128 &mov (&DWP(8,"esp"),$s[1]); # save s1
161 &mov ($v0,&DWP(8,"esp")); # restore s1
166 &xor ($s[1],&DWP(0,$te,$v0,8)); # s1>>0
169 &xor ($s[0],&DWP(3,$te,$v0,8)); # s1>>8
172 &xor ($s[3],&DWP(2,$te,$v1,8)); # s1>>16
174 &xor ($s[2],&DWP(1,$te,$v0,8)); # s1>>24
256 &exch ($s1="edi",$key="ebx");
264 &xor ($s1,&DWP(4,$key));
277 &encvert("ebp",$s0,$s1,
[all...]
/macosx-10.10/ruby-106/ruby/test/matrix/
H A Dtest_matrix.rb368 s1 = @m1.coerce(1).first
369 assert_equal(Matrix[[1]], (s1 + 0) * Matrix[[1]])
370 assert_raise(Matrix::ErrOperationNotDefined) { s1 + Vector[0] }
371 assert_raise(Matrix::ErrOperationNotDefined) { s1 + Matrix[[0]] }
376 assert_equal(2, s1 + o)
380 s1 = @m1.coerce(1).first
381 assert_equal(Matrix[[1]], (s1 - 0) * Matrix[[1]])
382 assert_raise(Matrix::ErrOperationNotDefined) { s1 - Vector[0] }
383 assert_raise(Matrix::ErrOperationNotDefined) { s1 - Matrix[[0]] }
388 assert_equal(0, s1
[all...]
/macosx-10.10/tcl-105/tcl_ext/mk4tcl/metakit/tests/
H A Dtresize.cpp190 c4_Storage s1("r03a", 1);
191 s1.SetStructure("a[p1:B]");
192 c4_View v1 = s1.View("a");
202 s1.Commit();
210 s1.Commit();
218 s1.Commit();
228 c4_Storage s1("r04a", 1);
229 s1.SetStructure("a[p1:S]");
270 c4_View v1 = s1.View("a");
272 s1
[all...]
/macosx-10.10/xnu-2782.1.97/osfmk/device/
H A Dsubrs.c152 * strcmp (s1, s2) compares the strings "s1" and "s2".
155 * is larger in s1 than in s2 or if s1 is longer than s2 and
158 * in s1 than in s2 or if s1 is shorter than s2 and the
159 * contents are identical upto the length of s1.
166 const char *s1,
172 a = *s1++;
185 * strncmp (s1, s
165 strcmp( const char *s1, const char *s2) argument
193 strncmp( const char *s1, const char *s2, size_t n) argument
229 strcasecmp(const char *s1, const char *s2) argument
241 strncasecmp(const char *s1, const char *s2, size_t n) argument
290 strncpy( char *s1, const char *s2, size_t n) argument
562 strprefix(register const char *s1, register const char *s2) argument
[all...]
/macosx-10.10/emacs-93/emacs/lib-src/
H A Dcvtmail.c137 error (s1, s2)
138 char *s1, *s2;
141 fprintf (stderr, s1, s2);
148 fatal (s1, s2)
149 char *s1, *s2;
151 error (s1, s2);
/macosx-10.10/apr-32/apr/apr/test/
H A Dtestlock.c155 apr_status_t s1, s2, s3, s4; local
157 s1 = apr_thread_mutex_create(&thread_mutex, APR_THREAD_MUTEX_DEFAULT, p);
158 ABTS_INT_EQUAL(tc, APR_SUCCESS, s1);
164 s1 = apr_thread_create(&t1, NULL, thread_mutex_function, NULL, p);
165 ABTS_INT_EQUAL(tc, APR_SUCCESS, s1);
173 apr_thread_join(&s1, t1);
184 apr_status_t s1, s2, s3, s4; local
186 s1 = apr_thread_rwlock_create(&rwlock, p);
187 if (s1 == APR_ENOTIMPL) {
191 APR_ASSERT_SUCCESS(tc, "rwlock_create", s1);
219 apr_status_t s0, s1, s2, s3, s4; local
[all...]
/macosx-10.10/apr-32/apr/apr/strings/
H A Dapr_cpystrn.c284 char *strstr(char *s1, char *s2) argument
289 return(s1);
291 while((s1 = strchr(s1, *s2)) != NULL) {
293 p1 = s1;
298 return(s1);
305 /* didn't find a match here, try starting at next character in s1 */
306 s1++;
308 return(s1);
/macosx-10.10/bless-103/test/
H A Dtestcgtext.c38 CFStringRef s1; local
54 s1 = CFStringCreateWithCString(kCFAllocatorDefault, str, kCFStringEncodingUTF8);
55 s2 = CFAttributedStringCreate(kCFAllocatorDefault,s1,NULL);
56 CFRelease(s1);
172 CFStringRef s1; local
184 s1 = CFStringCreateWithCString(kCFAllocatorDefault, label, kCFStringEncodingUTF8);
185 s2 = CFAttributedStringCreate(kCFAllocatorDefault,s1,dict);
186 CFRelease(s1);
/macosx-10.10/dtrace-147/test/tst/common/types/
H A Dtst.complex.d52 struct s1 {
/macosx-10.10/gnudiff-19/diffutils/lib/
H A Dstrcasecmp.c43 STRXCASECMP_FUNCTION (const char *s1, const char *s2 STRXCASECMP_DECLARE_N) argument
45 register const unsigned char *p1 = (const unsigned char *) s1;
/macosx-10.10/gpatch-3/patch/
H A Dstrcasecmp.c43 STRXCASECMP_FUNCTION (const char *s1, const char *s2 STRXCASECMP_DECLARE_N) argument
45 register const unsigned char *p1 = (const unsigned char *) s1;
/macosx-10.10/groff-38/groff/src/libs/libgroff/
H A Dstrcasecmp.c43 STRXCASECMP_FUNCTION (const char *s1, const char *s2 STRXCASECMP_DECLARE_N) argument
45 register const unsigned char *p1 = (const unsigned char *) s1;
/macosx-10.10/ruby-106/ruby/ext/tk/sample/demos-en/
H A Dentry2.rb53 s1 = TkScrollbar.new(w, 'relief'=>'sunken', 'orient'=>'horiz')
55 xscrollcommand proc{|first,last| s1.set first,last}
57 s1.command(proc{|*args| e1.xview(*args)})
59 s1.pack('side'=>'top', 'fill'=>'x')
/macosx-10.10/ruby-106/ruby/ext/tk/sample/demos-jp/
H A Dentry2.rb51 s1 = TkScrollbar.new(w, 'relief'=>'sunken', 'orient'=>'horiz')
53 xscrollcommand proc{|first,last| s1.set first,last}
55 s1.command(proc{|*args| e1.xview(*args)})
57 s1.pack('side'=>'top', 'fill'=>'x')
/macosx-10.10/tcl-105/tcl/tcl/compat/
H A Dstrncasecmp.c62 int strncasecmp(CONST char *s1, CONST char *s2, size_t n);
63 int strcasecmp(CONST char *s1, CONST char *s2);
74 * Compares two null-terminated strings s1 and s2, returning -1, 0, or 1
75 * if s1 is lexicographically less than, equal to, or greater than s2.
85 CONST char *s1, /* First string. */
90 for ( ; ; s1++, s2++) {
91 u1 = (unsigned char) *s1;
109 * Compares up to length chars of s1 and s2, returning -1, 0, or 1 if s1
121 CONST char *s1, /* Firs
83 strcasecmp( CONST char *s1, CONST char *s2) argument
118 strncasecmp( CONST char *s1, CONST char *s2, size_t length) argument
[all...]
/macosx-10.10/tcl-105/tcl_ext/mk4tcl/metakit/demos/
H A Ddemo.cpp53 c4_String s1 (pName (vAddress[1]));
55 printf("The country of %s is: %s\n", (const char*) s1, (const char*) s2);
/macosx-10.10/tcl-105/tcl_ext/mk4tcl/metakit/include/
H A Dmk4str.h92 d4_inline bool operator == (const c4_String &s1, const char *s2);
93 d4_inline bool operator == (const char *s1, const c4_String &s2);
95 d4_inline bool operator != (const c4_String &s1, const char *s2);
96 d4_inline bool operator != (const char *s1, const c4_String &s2);
163 bool operator == (const c4_String &s1, const char *s2);
164 bool operator == (const char *s1, const c4_String &s2);
166 bool operator != (const c4_String &s1, const char *s2);
167 bool operator != (const char *s1, const c4_String &s2);
/macosx-10.10/tcl-105/tcl_ext/tklib/tklib/examples/controlwidget/
H A Ddemo-tachometer.tcl18 scale .s1 -command "set ::value1" -variable ::value1
29 grid .t1 .s1 .t2 .s2 .b -padx 2 -pady 2
H A Ddemo-voltmeter.tcl16 scale .s1 -command "set ::value1" -variable value1
25 grid .t1 .s1 .t2 .s2 .b
/macosx-10.10/WTF-7600.1.24/wtf/
H A DStringExtras.h91 inline int strncasecmp(const char* s1, const char* s2, size_t len) argument
93 return _strnicmp(s1, s2, len);
96 inline int strcasecmp(const char* s1, const char* s2) argument
98 return _stricmp(s1, s2);
/macosx-10.10/apr-32/apr/apr/include/
H A Dapr_general.h118 #define strcasecmp(s1, s2) stricmp(s1, s2)
124 #define strncasecmp(s1, s2, n) strnicmp(s1, s2, n)

Completed in 344 milliseconds

1234567891011>>