Searched refs:sep_len (Results 1 – 6 of 6) sorted by relevance
/third_party/python/Objects/stringlib/ |
D | partition.h | 16 const STRINGLIB_CHAR* sep, Py_ssize_t sep_len) in STRINGLIB() 21 if (sep_len == 0) { in STRINGLIB() 30 pos = FASTSEARCH(str, str_len, sep, sep_len, -1, FAST_SEARCH); in STRINGLIB() 58 pos += sep_len; in STRINGLIB() 73 const STRINGLIB_CHAR* sep, Py_ssize_t sep_len) in STRINGLIB() 78 if (sep_len == 0) { in STRINGLIB() 87 pos = FASTSEARCH(str, str_len, sep, sep_len, -1, FAST_RSEARCH); in STRINGLIB() 115 pos += sep_len; in STRINGLIB()
|
D | split.h | 147 const STRINGLIB_CHAR* sep, Py_ssize_t sep_len, in STRINGLIB() 153 if (sep_len == 0) { in STRINGLIB() 157 else if (sep_len == 1) in STRINGLIB() 166 pos = FASTSEARCH(str+i, str_len-i, sep, sep_len, -1, FAST_SEARCH); in STRINGLIB() 171 i = j + sep_len; in STRINGLIB() 289 const STRINGLIB_CHAR* sep, Py_ssize_t sep_len, in STRINGLIB() 295 if (sep_len == 0) { in STRINGLIB() 299 else if (sep_len == 1) in STRINGLIB() 308 pos = FASTSEARCH(str, j, sep, sep_len, -1, FAST_RSEARCH); in STRINGLIB() 311 SPLIT_ADD(str, pos + sep_len, j); in STRINGLIB()
|
/third_party/openssl/crypto/asn1/ |
D | asn1_lib.c | 437 size_t length = 0, sep_len; in ossl_sk_ASN1_UTF8STRING2text() local 443 sep_len = strlen(sep); in ossl_sk_ASN1_UTF8STRING2text() 448 length += sep_len; in ossl_sk_ASN1_UTF8STRING2text() 460 if (i > 0 && sep_len > 0) { in ossl_sk_ASN1_UTF8STRING2text() 461 strncpy(p, sep, sep_len + 1); /* using + 1 to silence gcc warning */ in ossl_sk_ASN1_UTF8STRING2text() 462 p += sep_len; in ossl_sk_ASN1_UTF8STRING2text()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/dbus/ |
D | dbus_new_helpers.c | 964 size_t sep_len; in wpas_dbus_new_decompose_object_path() local 989 sep_len = os_strlen(sep); in wpas_dbus_new_decompose_object_path() 990 if (os_strncmp(pos, sep, sep_len) != 0 || pos[sep_len] != '/') in wpas_dbus_new_decompose_object_path() 994 *item = pos + sep_len + 1; in wpas_dbus_new_decompose_object_path()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/dbus/ |
D | dbus_new_helpers.c | 964 size_t sep_len; in wpas_dbus_new_decompose_object_path() local 989 sep_len = os_strlen(sep); in wpas_dbus_new_decompose_object_path() 990 if (os_strncmp(pos, sep, sep_len) != 0 || pos[sep_len] != '/') in wpas_dbus_new_decompose_object_path() 994 *item = pos + sep_len + 1; in wpas_dbus_new_decompose_object_path()
|
/third_party/rust/crates/memchr/bench/data/code/ |
D | rust-library.rs | 15117 let sep_len = sep.len(); localVariable 15130 let reserved_len = sep_len
|