OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:s1_length
(Results
1 - 2
of
2
) sorted by null
/bionic/libc/private/
bionic_string_utils.h
23
size_t
s1_length
= strlen(s1);
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
109
size_t
s1_length
= strlen(s1);
local
112
if (s2_length >
s1_length
) {
116
const char* start = s1 + (
s1_length
- s2_length);
Completed in 910 milliseconds