OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:s2_length
(Results
1 - 2
of
2
) sorted by null
/bionic/libc/private/
bionic_string_utils.h
24
size_t
s2_length
= strlen(s2);
local
25
if (
s2_length
> s1_length) {
28
return memcmp(s1 + (s1_length -
s2_length
), s2,
s2_length
) == 0;
/external/webrtc/webrtc/base/
stringutils.cc
110
size_t
s2_length
= strlen(s2);
local
112
if (
s2_length
> s1_length) {
116
const char* start = s1 + (s1_length -
s2_length
);
117
return strncmp(start, s2,
s2_length
) == 0;
Completed in 88 milliseconds