Searched refs:second (Results 1 - 25 of 1342) sorted by relevance

1234567891011>>

/macosx-10.9.5/curl-78.94.1/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)) {
48 second++;
50 return toupper(*first) == toupper(*second);
57 int curl_strnequal(const char *first, const char *second, size_t max) argument
60 return !strncasecmp(first, second, ma
[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))
105 second++;
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)) {
121 second++;
126 return Curl_raw_toupper(*first) == Curl_raw_toupper(*second);
[all...]
H A Drawstr.h35 int Curl_raw_equal(const char *first, const char *second);
36 int Curl_raw_nequal(const char *first, const char *second, size_t max);
/macosx-10.9.5/dtrace-118.1/test/tst/common/types/
H A Dtst.relenum.d48 second
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 > on
[all...]
/macosx-10.9.5/CPANInternal-140/DateTime/t/
H A D15jd.t18 second => 56,
27 second => 51,
36 second => 43,
45 second => 23,
54 second => 20,
63 second => 3,
73 second => 0,
83 second => 0,
H A D32leap_second2.t12 hour => 0, minute => 59, second => 58,
16 is( $t->second, 58, 'second value for leap second T-2, +0100' );
19 'UTC RD days for leap second T-2' );
21 'UTC RD seconds for leap second T-2' );
24 'local RD days for leap second T-2' );
26 'local RD seconds for leap second T-2' );
31 hour => 0, minute => 59, second => 59,
35 is( $t->second, 5
[all...]
H A D01sanity.t11 hour => 12, minute => 10, second => 45,
20 is( $dt->second, '45', "Second accessor, outside the epoch" );
29 is( $dt->second, '45', "Second should be identical" );
35 hour => 12, minute => 10, second => 45,
38 is( $dt->second, '45', "Second accessor, outside the epoch" );
H A D19leap_second.t12 hour => 23, minute => 58, second => 20,
19 is( $t->second, 20, "second is 20" );
25 is( $t->second, 20, "second is 20" );
31 is( $t->second, 19, "second is 19" );
37 is( $t->second, 60, "second is 60" );
43 hour => 0, minute => 0, second
[all...]
H A D07compare.t10 hour => 12, minute => 0, second => 0,
13 hour => 12, minute => 0, second => 0,
22 hour => 12, minute => 0, second => 1,
24 ok($date1->compare($date2) == -1, 'Comparison $a < $b, 1 second diff');
27 hour => 12, minute => 1, second => 0,
32 hour => 13, minute => 0, second => 0,
37 hour => 12, minute => 0, second => 0,
42 hour => 12, minute => 0, second => 0,
47 hour => 12, minute => 0, second => 0,
54 hour => 11, minute => 59, second
[all...]
H A D33seconds_offset.t11 hour => 23, minute => 58, second => 59,
16 is( $dt->datetime, '1997-06-30T23:59:29', '+00:00:30 leap second T-61' );
21 hour => 23, minute => 59, second => 29,
26 is( $dt->datetime, '1997-06-30T23:59:59', '+00:00:30 leap second T-31' );
33 hour => 23, minute => 59, second => 30,
38 is( $dt->datetime, '1997-06-30T23:59:60', '+00:00:30 leap second T-30' );
45 hour => 23, minute => 59, second => 31,
50 is( $dt->datetime, '1997-07-01T00:00:00', '+00:00:30 leap second T-29' );
57 hour => 23, minute => 59, second => 60,
62 is( $dt->datetime, '1997-07-01T00:00:30', '+00:00:30 leap second
[all...]
/macosx-10.9.5/bind9-45.100/bind9/unit/atf-src/atf-run/
H A Dseveral_tcs_helper.c41 ATF_TC_WITH_CLEANUP(second); variable
42 ATF_TC_HEAD(second, tc)
48 ATF_TC_BODY(second, tc)
51 ATF_TC_CLEANUP(second, tc)
66 ATF_TP_ADD_TC(tp, second);
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/math/
H A Dfuzzy.tcl44 # second Second number
49 proc Absmax { first second } {
50 return [expr {abs($first) > abs($second)? abs($first) : abs($second)}]
58 # second Second 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 $second]}]
[all...]
/macosx-10.9.5/WebCore-7537.78.1/css/
H A DPair.h41 static PassRefPtr<Pair> create(PassRefPtr<CSSPrimitiveValue> first, PassRefPtr<CSSPrimitiveValue> second) argument
43 return adoptRef(new Pair(first, second));
48 CSSPrimitiveValue* second() const { return m_second.get(); } function in class:WebCore::Pair
51 void setSecond(PassRefPtr<CSSPrimitiveValue> second) { m_second = second; } argument
56 return generateCSSString(first()->cssText(), second()->cssText());
65 second()->customSerializeResolvingVariables(variables));
68 bool hasVariableReference() const { return first()->hasVariableReference() || second()->hasVariableReference(); }
73 Pair(PassRefPtr<CSSPrimitiveValue> first, PassRefPtr<CSSPrimitiveValue> second) argument
74 : m_first(first), m_second(second) { }
76 generateCSSString(const String& first, const String& second) argument
[all...]
/macosx-10.9.5/Security-55471.14.18/utilities/src/
H A Dcomparison.c13 uint64_t constant_memcmp(const uint8_t *first, const uint8_t *second, size_t count) { argument
16 error_counter |= first[counter] ^ second[counter];
/macosx-10.9.5/Security-55471.14.18/utilities/utilities/
H A Dcomparison.c13 uint64_t constant_memcmp(const uint8_t *first, const uint8_t *second, size_t count) { argument
16 error_counter |= first[counter] ^ second[counter];
/macosx-10.9.5/libclosure-63/objectTests/
H A Dlocalisglobal.c23 int aresame(void *first, void *second) { argument
25 long *s = (long *)second;
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-core/Modules/objc/test/
H A Dopaque.m23 +(BarHandle)createBarWithFirst:(double)first andSecond:(double)second;
25 +(void)getFirst:(double*)first andSecond:(double*)second of:(BarHandle)bar;
26 +(void)setFirst:(double)first andSecond:(double)second of:(BarHandle)bar;
65 double second;
101 +(BarHandle)createBarWithFirst:(double)first andSecond:(double)second
107 result->second = second;
117 +(void)getFirst:(double*)first andSecond:(double*)second of:(BarHandle)bar
120 *second = bar->second;
[all...]
H A Dstructs.m12 int second;
18 +(struct FooStruct)createWithFirst:(int)first andSecond:(int)second;
26 +(struct FooStruct)createWithFirst:(int)first andSecond:(int)second
30 f.second = second;
36 return foo.first + foo.second;
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-core/Modules/objc/test/
H A Dopaque.m23 +(BarHandle)createBarWithFirst:(double)first andSecond:(double)second;
25 +(void)getFirst:(double*)first andSecond:(double*)second of:(BarHandle)bar;
26 +(void)setFirst:(double)first andSecond:(double)second of:(BarHandle)bar;
118 double second;
154 +(BarHandle)createBarWithFirst:(double)first andSecond:(double)second
160 result->second = second;
170 +(void)getFirst:(double*)first andSecond:(double*)second of:(BarHandle)bar
173 *second = bar->second;
[all...]
/macosx-10.9.5/WebCore-7537.78.1/svg/
H A DSVGAnimatedAngle.cpp50 animatedPair.second = orientType;
90 if (fromAngleAndEnumeration.second != toAngleAndEnumeration.second || fromAngleAndEnumeration.second != SVGMarkerOrientAngle)
107 if (fromAngleAndEnumeration.second != toAngleAndEnumeration.second) {
109 if (fromAngleAndEnumeration.second == SVGMarkerOrientAngle) {
111 if (toAngleAndEnumeration.second == SVGMarkerOrientAuto) {
114 animatedAngleAndEnumeration.second = SVGMarkerOrientAngle;
118 animatedAngleAndEnumeration.second
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/lib/Object/
H A DELFObjectFile.cpp25 if (Ident.first == ELF::ELFCLASS32 && Ident.second == ELF::ELFDATA2LSB)
27 else if (Ident.first == ELF::ELFCLASS32 && Ident.second == ELF::ELFDATA2MSB)
29 else if (Ident.first == ELF::ELFCLASS64 && Ident.second == ELF::ELFDATA2MSB)
31 else if (Ident.first == ELF::ELFCLASS64 && Ident.second == ELF::ELFDATA2LSB) {
/macosx-10.9.5/swig-10/Lib/java/
H A Dstd_pair.i26 pair(T first, U second);
32 U second;
/macosx-10.9.5/swig-10/Lib/lua/
H A Dstd_pair.i35 pair(T first, U second);
39 U second;
/macosx-10.9.5/swig-10/Lib/ocaml/
H A Dstd_pair.i26 pair(T first, U second);
32 U second;
/macosx-10.9.5/swig-10/Lib/php/
H A Dstd_pair.i26 pair(T first, U second);
32 U second;

Completed in 703 milliseconds

1234567891011>>