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

1234567891011>>

/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/curl-7.21.7/lib/
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 Dstrequal.c37 int curl_strequal(const char *first, const char *second) argument
40 return !(strcasecmp)(first, second);
42 return !(strcmpi)(first, second);
44 return !(stricmp)(first, second);
46 while(*first && *second) {
47 if(toupper(*first) != toupper(*second)) {
51 second++;
53 return toupper(*first) == toupper(*second);
60 int curl_strnequal(const char *first, const char *second, size_t max) argument
63 return !strncasecmp(first, second, ma
[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);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/curl-7.21.7/lib/
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 Dstrequal.c37 int curl_strequal(const char *first, const char *second) argument
40 return !(strcasecmp)(first, second);
42 return !(strcmpi)(first, second);
44 return !(stricmp)(first, second);
46 while(*first && *second) {
47 if(toupper(*first) != toupper(*second)) {
51 second++;
53 return toupper(*first) == toupper(*second);
60 int curl_strnequal(const char *first, const char *second, size_t max) argument
63 return !strncasecmp(first, second, ma
[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);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/curl-7.21.7/lib/
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 Dstrequal.c37 int curl_strequal(const char *first, const char *second) argument
40 return !(strcasecmp)(first, second);
42 return !(strcmpi)(first, second);
44 return !(stricmp)(first, second);
46 while(*first && *second) {
47 if(toupper(*first) != toupper(*second)) {
51 second++;
53 return toupper(*first) == toupper(*second);
60 int curl_strnequal(const char *first, const char *second, size_t max) argument
63 return !strncasecmp(first, second, ma
[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);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/gdb/sim/arm/
H A Dbag.h36 void BAG_putpair (long first, long second);
40 Bag_error BAG_killpair_bysecond (long second);
42 Bag_error BAG_getfirst (long *first, long second);
43 Bag_error BAG_getsecond (long first, long *second);
H A Dbag.c37 int second; member in struct:hashentry
45 addtolist (Hashentry ** add, long first, long second) argument
53 (*add)->second = second;
88 BAG_putpair (long first, long second) argument
92 if (BAG_getfirst (&junk, second) != NO_SUCH_PAIR)
93 BAG_killpair_bysecond (second);
94 addtolist (&lookupbyfirst[hash (first)], first, second);
95 addtolist (&lookupbysecond[hash (second)], first, second);
99 BAG_getfirst(long *first, long second) argument
114 BAG_getsecond(long first, long *second) argument
134 long second; local
144 BAG_killpair_bysecond(long second) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/gdb/sim/arm/
H A Dbag.h36 void BAG_putpair (long first, long second);
40 Bag_error BAG_killpair_bysecond (long second);
42 Bag_error BAG_getfirst (long *first, long second);
43 Bag_error BAG_getsecond (long first, long *second);
H A Dbag.c37 int second; member in struct:hashentry
45 addtolist (Hashentry ** add, long first, long second) argument
53 (*add)->second = second;
88 BAG_putpair (long first, long second) argument
92 if (BAG_getfirst (&junk, second) != NO_SUCH_PAIR)
93 BAG_killpair_bysecond (second);
94 addtolist (&lookupbyfirst[hash (first)], first, second);
95 addtolist (&lookupbysecond[hash (second)], first, second);
99 BAG_getfirst(long *first, long second) argument
114 BAG_getsecond(long first, long *second) argument
134 long second; local
144 BAG_killpair_bysecond(long second) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/gdb/sim/arm/
H A Dbag.h36 void BAG_putpair (long first, long second);
40 Bag_error BAG_killpair_bysecond (long second);
42 Bag_error BAG_getfirst (long *first, long second);
43 Bag_error BAG_getsecond (long first, long *second);
H A Dbag.c37 int second; member in struct:hashentry
45 addtolist (Hashentry ** add, long first, long second) argument
53 (*add)->second = second;
88 BAG_putpair (long first, long second) argument
92 if (BAG_getfirst (&junk, second) != NO_SUCH_PAIR)
93 BAG_killpair_bysecond (second);
94 addtolist (&lookupbyfirst[hash (first)], first, second);
95 addtolist (&lookupbysecond[hash (second)], first, second);
99 BAG_getfirst(long *first, long second) argument
114 BAG_getsecond(long first, long *second) argument
134 long second; local
144 BAG_killpair_bysecond(long second) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/arch/x86/ia32/
H A Dipc32.c13 asmlinkage long sys32_ipc(u32 call, int first, int second, int third, argument
24 return sys_semtimedop(first, compat_ptr(ptr), second, NULL);
26 return compat_sys_semtimedop(first, compat_ptr(ptr), second,
29 return sys_semget(first, second, third);
31 return compat_sys_semctl(first, second, third, compat_ptr(ptr));
34 return compat_sys_msgsnd(first, second, third, compat_ptr(ptr));
36 return compat_sys_msgrcv(first, second, fifth, third,
39 return sys_msgget((key_t) first, second);
41 return compat_sys_msgctl(first, second, compat_ptr(ptr));
44 return compat_sys_shmat(first, second, thir
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/arch/x86/ia32/
H A Dipc32.c13 asmlinkage long sys32_ipc(u32 call, int first, int second, int third, argument
24 return sys_semtimedop(first, compat_ptr(ptr), second, NULL);
26 return compat_sys_semtimedop(first, compat_ptr(ptr), second,
29 return sys_semget(first, second, third);
31 return compat_sys_semctl(first, second, third, compat_ptr(ptr));
34 return compat_sys_msgsnd(first, second, third, compat_ptr(ptr));
36 return compat_sys_msgrcv(first, second, fifth, third,
39 return sys_msgget((key_t) first, second);
41 return compat_sys_msgctl(first, second, compat_ptr(ptr));
44 return compat_sys_shmat(first, second, thir
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/ipc/
H A Dsyscall.c16 SYSCALL_DEFINE6(ipc, unsigned int, call, int, first, unsigned long, second,
27 second, NULL);
30 second,
34 return sys_semget(first, second, third);
41 return sys_semctl(first, second, third, fourth);
46 second, third);
58 return sys_msgrcv(first, tmp.msgp, second,
64 second, fifth, third);
67 return sys_msgget((key_t) first, second);
69 return sys_msgctl(first, second, (struc
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/ipc/
H A Dsyscall.c16 SYSCALL_DEFINE6(ipc, unsigned int, call, int, first, unsigned long, second,
27 second, NULL);
30 second,
34 return sys_semget(first, second, third);
41 return sys_semctl(first, second, third, fourth);
46 second, third);
58 return sys_msgrcv(first, tmp.msgp, second,
64 second, fifth, third);
67 return sys_msgget((key_t) first, second);
69 return sys_msgctl(first, second, (struc
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/gdb/gdb/testsuite/gdb.cp/
H A Duserdef.cc76 A1 A1::operator+(const A1& second) argument
79 sum.x = x + second.x;
80 sum.y = y + second.y;
85 A1 A1::operator*(const A1& second) argument
88 product.x = this->x * second.x;
89 product.y = this->y * second.y;
94 A1 A1::operator-(const A1& second) argument
97 diff.x = x - second.x;
98 diff.y = y - second.y;
103 A1 A1::operator/(const A1& second) argument
112 operator %(const A1& second) argument
121 operator ==(const A1& second) argument
129 operator !=(const A1& second) argument
137 operator &&(const A1& second) argument
142 operator ||(const A1& second) argument
165 operator |(const A1& second) argument
174 operator ^(const A1& second) argument
183 operator &(const A1& second) argument
192 operator <(const A1& second) argument
199 operator <=(const A1& second) argument
204 operator >=(const A1& second) argument
209 operator >(const A1& second) argument
275 operator =(const A1& second) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/gdb/gdb/testsuite/gdb.cp/
H A Duserdef.cc76 A1 A1::operator+(const A1& second) argument
79 sum.x = x + second.x;
80 sum.y = y + second.y;
85 A1 A1::operator*(const A1& second) argument
88 product.x = this->x * second.x;
89 product.y = this->y * second.y;
94 A1 A1::operator-(const A1& second) argument
97 diff.x = x - second.x;
98 diff.y = y - second.y;
103 A1 A1::operator/(const A1& second) argument
112 operator %(const A1& second) argument
121 operator ==(const A1& second) argument
129 operator !=(const A1& second) argument
137 operator &&(const A1& second) argument
142 operator ||(const A1& second) argument
165 operator |(const A1& second) argument
174 operator ^(const A1& second) argument
183 operator &(const A1& second) argument
192 operator <(const A1& second) argument
199 operator <=(const A1& second) argument
204 operator >=(const A1& second) argument
209 operator >(const A1& second) argument
275 operator =(const A1& second) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/gdb/gdb/testsuite/gdb.cp/
H A Duserdef.cc76 A1 A1::operator+(const A1& second) argument
79 sum.x = x + second.x;
80 sum.y = y + second.y;
85 A1 A1::operator*(const A1& second) argument
88 product.x = this->x * second.x;
89 product.y = this->y * second.y;
94 A1 A1::operator-(const A1& second) argument
97 diff.x = x - second.x;
98 diff.y = y - second.y;
103 A1 A1::operator/(const A1& second) argument
112 operator %(const A1& second) argument
121 operator ==(const A1& second) argument
129 operator !=(const A1& second) argument
137 operator &&(const A1& second) argument
142 operator ||(const A1& second) argument
165 operator |(const A1& second) argument
174 operator ^(const A1& second) argument
183 operator &(const A1& second) argument
192 operator <(const A1& second) argument
199 operator <=(const A1& second) argument
204 operator >=(const A1& second) argument
209 operator >(const A1& second) argument
275 operator =(const A1& second) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/toolchains/hndtools-armeabi-2011.09/arm-none-eabi/include/c++/4.6.1/bits/
H A Dstl_pair.h90 typedef _T2 second_type; /// @c second_type is the second bound type
93 _T2 second; /// @c second is a copy of the second object member in struct:pair
97 /** The default constructor creates @c first and @c second using their
100 : first(), second() { }
104 : first(__a), second(__b) { }
109 : first(__p.first), second(__p.second) { }
121 : first(std::forward<_U1>(__x)), second(__
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/toolchains/hndtools-armeabi-2013.11/arm-none-eabi/include/c++/4.8.1/bits/
H A Dstl_pair.h93 * @tparam _T2 Type of second object.
99 typedef _T2 second_type; /// @c second_type is the second bound type
102 _T2 second; /// @c second is a copy of the second object member in struct:pair
106 /** The default constructor creates @c first and @c second using their
109 : first(), second() { }
113 : first(__a), second(__b) { }
119 : first(__p.first), second(__p.second) { }
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/toolchains/hndtools-arm-linux-2.6.36-uclibc-4.5.3/arm-linux/include/c++/4.5.3/bits/
H A Dstl_pair.h74 typedef _T2 second_type; ///< @c second_type is the second bound type
77 _T2 second; ///< @c second is a copy of the second object member in struct:pair
81 /** The default constructor creates @c first and @c second using their
84 : first(), second() { }
88 : first(__a), second(__b) { }
96 second(__y) { }
102 second(std::forward<_U2>(__y)) { }
109 second(st
[all...]

Completed in 180 milliseconds

1234567891011>>