OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:us1
(Results
1 - 9
of
9
) sorted by null
/bionic/libc/string/
strcasecmp.c
80
const u_char *
us1
= (const u_char *)s1;
local
83
while (cm[*
us1
] == cm[*us2++])
84
if (*
us1
++ == '\0')
86
return (cm[*
us1
] - cm[*--us2]);
94
const u_char *
us1
= (const u_char *)s1;
local
98
if (cm[*
us1
] != cm[*us2++])
99
return (cm[*
us1
] - cm[*--us2]);
100
if (*
us1
++ == '\0')
/external/tcpdump/
strcasecmp.c
71
*
us1
= (u_char *)s1,
local
74
while (cm[*
us1
] == cm[*us2++])
75
if (*
us1
++ == '\0')
77
return(cm[*
us1
] - cm[*--us2]);
86
*
us1
= (u_char *)s1,
local
89
while (--n >= 0 && cm[*
us1
] == cm[*us2++])
90
if (*
us1
++ == '\0')
92
return(n < 0 ? 0 : cm[*
us1
] - cm[*--us2]);
/external/icu4c/samples/ustring/
ustring.cpp
546
static UChar
us1
[40];
local
548
u_charsToUChars(cs1,
us1
, 33); /* include the terminating NUL */
549
u_UCharsToChars(
us1
, cs2, 33);
/external/clang/test/SemaCXX/
anonymous-union.cpp
141
double
us1
; // expected-note {{declared private here}}
member in struct:test4::A::__anon16997::__anon16998
155
(void) a.
us1
; // expected-error {{private member}}
/external/libpcap/
pcap.c
470
*
us1
= (const u_char *)s1,
local
473
while (cm[*
us1
] == cm[*us2++])
474
if (*
us1
++ == '\0')
476
return (cm[*
us1
] - cm[*--us2]);
/external/chromium_org/third_party/sqlite/src/src/
recover.c
358
const unsigned char *
us1
= (const unsigned char *)s1;
local
360
while( *
us1
&& *us2 && n && ascii_tolower(*
us1
)==ascii_tolower(*us2) ){
361
us1
++, us2++, n--;
363
return n ? ascii_tolower(*
us1
)-ascii_tolower(*us2) : 0;
[
all
...]
/external/chromium_org/third_party/icu/source/test/cintltst/
cloctst.c
2755
const char*
us1
;
local
[
all
...]
/external/icu4c/test/cintltst/
cloctst.c
2932
const char*
us1
;
local
[
all
...]
/external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c
110811
const unsigned char *
us1
= (const unsigned char *)s1;
local
[
all
...]
Completed in 805 milliseconds