Searched refs:first (Results 1 - 25 of 2728) sorted by relevance

1234567891011>>

/macosx-10.10.1/ksh-23/ksh/src/lib/libast/comp/
H A Dbasename.c35 register char *first, *last; local
36 for(first=last=pathname; *last; last++);
38 if(last>first)
39 while(*--last=='/' && last > first);
40 if(last==first && *last=='/')
43 if(*first=='/')
49 for(first=last++;first>pathname && *first!='/';first
[all...]
/macosx-10.10.1/curl-83.1.2/curl/lib/
H A Dstrequal.c34 int curl_strequal(const char *first, const char *second) argument
37 return !(strcasecmp)(first, second);
39 return !(strcmpi)(first, second);
41 return !(stricmp)(first, second);
43 while(*first && *second) {
44 if(toupper(*first) != toupper(*second)) {
47 first++;
50 return toupper(*first) == toupper(*second);
57 int curl_strnequal(const char *first, const char *second, size_t max) argument
60 return !strncasecmp(first, secon
[all...]
H A Drawstr.c98 int Curl_raw_equal(const char *first, const char *second) argument
100 while(*first && *second) {
101 if(Curl_raw_toupper(*first) != Curl_raw_toupper(*second))
104 first++;
110 return (Curl_raw_toupper(*first) == Curl_raw_toupper(*second));
113 int Curl_raw_nequal(const char *first, const char *second, size_t max) argument
115 while(*first && *second && max) {
116 if(Curl_raw_toupper(*first) != Curl_raw_toupper(*second)) {
120 first++;
126 return Curl_raw_toupper(*first)
[all...]
/macosx-10.10.1/ncurses-44/ncurses/ncurses/base/
H A DMKkeyname.awk36 first = 1;
41 if (first) {
49 if (first) {
55 first = 0;
/macosx-10.10.1/CPANInternal-159.1/Perl4-CoreLibs-0.003/lib/
H A Dgetopts.pl17 local(@args,$_,$first,$rest);
22 ($first,$rest) = ($1,$2);
23 $pos = index($argumentative,$first);
32 push(\@opt_$first, \$rest);
33 if (!defined \$opt_$first or \$opt_$first eq '') {
34 \$opt_$first = \$rest;
37 \$opt_$first .= ' ' . \$rest;
42 eval "\$opt_$first = 1";
52 print STDERR "Unknown option: $first\
[all...]
H A Dgetopt.pl22 local($_,$first,$rest);
25 ($first,$rest) = ($1,$2);
26 if (index($argumentative,$first) >= 0) {
34 ${"opt_$first"} = $rest;
37 ${"opt_$first"} = 1;
/macosx-10.10.1/cxxfilt-11/cxxfilt/libiberty/
H A Dconcat.c28 available. The argument list is terminated by the first @code{NULL}
70 vconcat_length (const char *first, va_list args) argument
75 for (arg = first; arg ; arg = va_arg (args, const char *))
82 vconcat_copy (char *dst, const char *first, va_list args) argument
87 for (arg = first; arg ; arg = va_arg (args, const char *))
101 concat_length (const char *first, ...) argument
105 VA_OPEN (args, first);
106 VA_FIXEDARG (args, const char *, first);
107 length = vconcat_length (first, args);
116 concat_copy (char *dst, const char *first, argument
141 concat_copy2(const char *first, ...) argument
152 concat(const char *first, ...) argument
189 reconcat(char *optr, const char *first, ...) argument
[all...]
/macosx-10.10.1/ksh-23/ksh/src/lib/libcmd/
H A Dbasename.c71 register char *first, *last; local
73 for(first=last=pathname; *last; last++);
75 if(last>first)
76 while(*--last=='/' && last > first);
77 if(last==first && *last=='/')
80 if(*first=='/')
86 for(first=last++;first>pathname && *first!='/';first
[all...]
/macosx-10.10.1/dtrace-147/test/tst/common/types/
H A Dtst.relenum.d47 first,
52 /zero >= one || second <= first || zero == second/
56 printf("null = %d; first = %d; second = %d", null, first, second);
61 /second < one || two > second || null == first/
65 printf("null = %d; first = %d; second = %d", null, first, second);
70 /first < two && second > one && one != two && zero != first/
/macosx-10.10.1/postfix-255/postfix/src/util/
H A Dline_number.c9 /* char *format_line_number(result, first, last)
11 /* ssize_t first;
15 /* The output is <first-number>-<last-number> when the numbers
16 /* differ, <first-number> when the numbers are identical.
22 /* .IP first
50 char *format_line_number(VSTRING *result, ssize_t first, ssize_t last) argument
66 vstring_sprintf(result, first == last ? "%ld" : "%ld-%ld",
67 (long) first, (long) last);
/macosx-10.10.1/tcl-105/tcl/tcl/tools/
H A DuniClass.tcl15 proc emitRange {first last} {
18 if {$first < ($last-1)} {
20 $first $last]
25 append chars [format "0x%04x, " $first]
30 if {$first != $last} {
41 global first last ranges numranges chars numchars
42 set first -2
55 if {$first > 0} {
56 emitRange $first $last
58 set first
[all...]
/macosx-10.10.1/tcl-105/tcl84/tcl/tools/
H A DuniClass.tcl15 proc emitRange {first last} {
18 if {$first < ($last-1)} {
20 $first $last]
25 append chars [format "0x%04x, " $first]
30 if {$first != $last} {
41 global first last ranges numranges chars numchars
42 set first -2
55 if {$first > 0} {
56 emitRange $first $last
58 set first
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/mk4tcl/metakit/examples/
H A Ddemo.tcl6 # On first run, output should consist of 5 lines:
17 mk::view layout db.people {first last shoesize:I}
21 $vw insert end first John last Lennon shoesize 44
22 $vw insert end first Flash last Gordon shoesize 42
29 puts [$vw get $r first last shoesize]
34 puts [$vw get $r first last shoesize]
38 foreach r [$vw select first John] {
39 puts [$vw get $r first last shoesize]
H A Ddemold.tcl3 # On first run, output should consist of 5 lines:
6 # first Flash last Gordon shoesize 42
7 # first John last Lennon shoesize 44
8 # first John last Lennon shoesize 44
17 set vw [mk::view layout db.people {first last shoesize:I}]
20 mk::row append $vw first John last Lennon shoesize 44
21 mk::row append $vw first Flash last Gordon shoesize 42
28 puts [mk::get $c first last shoesize]
37 foreach r [mk::select $vw first John] {
H A Ddemo.py7 # On first run, output should consist of 5 lines:
18 vw = db.getas("people[first:S,last:S,shoesize:I]")
21 vw.append(first='John',last='Lennon',shoesize=44)
22 vw.append(first='Flash',last='Gordon',shoesize=42)
29 print r.first, r.last, r.shoesize
33 print r.first, r.last, r.shoesize
36 for r in vw.select(first='John'):
37 print r.first, r.last, r.shoesize
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/math/
H A Dfuzzy.tcl43 # first First number
49 proc Absmax { first second } {
50 return [expr {abs($first) > abs($second)? abs($first) : abs($second)}]
57 # first First number
63 proc teq { first second } {
65 set scale [Absmax $first $second]
66 return [expr {abs($first-$second) <= $eps3 * $scale}]
69 proc tne { first second } {
72 return [expr {![teq $first
[all...]
/macosx-10.10.1/dyld-353.2.1/unit-tests/test-cases/dlopen-local-and-global/
H A DMakefile29 ./main-local-first
30 ./main-global-first
32 all: main-local-first main-global-first foo.bundle foo.dylib
34 main-local-first : main.c
35 ${CC} ${CCFLAGS} -I${TESTROOT}/include main.c -DLOCAL_FIRST -o main-local-first
37 main-global-first : main.c
38 ${CC} ${CCFLAGS} -I${TESTROOT}/include main.c -o main-global-first
47 ${RM} ${RMFLAGS} *~ main foo.bundle foo.dylib main-global-first main-local-first
[all...]
/macosx-10.10.1/BerkeleyDB-21/db/java/src/com/sleepycat/util/
H A DErrorBuffer.java5 int first, current; field in class:ErrorBuffer
15 if (current == first)
16 first = (first + 1) % msgs.length;
21 for (int i = first; i != current; i = (i + 1) % msgs.length) {
30 current = first = 0;
/macosx-10.10.1/Security-57031.1.35/SecurityTests/clxutils/NISCC/TLS_SSL/
H A DMakefile13 first:
21 build: first
26 install: first
/macosx-10.10.1/tcl-105/tk/tk/library/demos/
H A Dtextpeer.tcl25 set first [text $w.text[incr count]]
26 $first insert end "This is a coupled pair of text widgets; they are peers to "
27 $first insert end "each other. They have the same underlying data model, but "
28 $first insert end "can show different locations, have different current edit "
29 $first insert end "locations, and have different selections. You can also "
30 $first insert end "create additional peers of any of these text widgets using "
31 $first insert end "the Make Peer button beside the text widget to clone, and "
32 $first insert end "delete a particular peer widget using the Delete Peer "
33 $first insert end "button."
58 makeClone $w $first
[all...]
/macosx-10.10.1/bind9-45.101/bind9/unit/atf-src/atf-run/
H A Dseveral_tcs_helper.c32 ATF_TC(first); variable
33 ATF_TC_HEAD(first, tc)
37 ATF_TC_BODY(first, tc)
65 ATF_TP_ADD_TC(tp, first);
/macosx-10.10.1/ruby-106/ruby/ext/tk/lib/tkextlib/iwidgets/
H A Doptionmenu.rb26 def delete(first, last=nil)
28 tk_call(@path, 'delete', first, last)
30 tk_call(@path, 'delete', first)
45 def get(first=nil, last=nil)
47 simplelist(tk_call(@path, 'get', first, last))
48 elsif first
49 tk_call(@path, 'get', first)
54 def get_range(first, last)
55 get(first, last)
/macosx-10.10.1/ruby-106/ruby/ext/tk/sample/demos-jp/
H A Dtextpeer.rb24 first = TkText.new(base_frame, :widgetname=>"text#{count[0] += 1}")
25 first.insert :end,"���������������������������������������������������������������������������������������"
26 first.insert :end,"���������������������������������������������������(������;peer)������������"
27 first.insert :end,"���������������������"
28 first.insert :end,"���������������������������������������������������������������������������������������"
29 first.insert :end,"������������������������������������������������(selection)���������������"
30 first.insert :end,"���������������������������������������"
31 first.insert :end,"������������������������������������������������"
32 first.insert :end,"���������(peer)������������������������������������"
33 first
[all...]
/macosx-10.10.1/OpenSSL098-52/src/demos/
H A Db64.pl11 if (/^-----BEGIN/) { $first=$_; next; }
18 print "$first$out\n$last\n";
/macosx-10.10.1/Security-57031.1.35/Security/utilities/src/
H A Dcomparison.c29 uint64_t constant_memcmp(const uint8_t *first, const uint8_t *second, size_t count) { argument
32 error_counter |= first[counter] ^ second[counter];

Completed in 375 milliseconds

1234567891011>>