Home
last modified time | relevance | path

Searched refs:strcspn (Results 1 - 25 of 143) sorted by relevance

123456

/third_party/ffmpeg/libavformat/
H A Dpjsdec.c43 size_t q1pos = strcspn(ptr, "\""); in pjs_probe()
44 size_t q2pos = q1pos + strcspn(ptr + q1pos + 1, "\"") + 1; in pjs_probe()
45 if (strcspn(ptr, "\r\n") > q2pos) in pjs_probe()
56 *line += strcspn(*line, "\""); in read_ts()
88 line[strcspn(line, "\r\n")] = 0; in pjs_read_header()
94 p[strcspn(p, "\"")] = 0; in pjs_read_header()
H A Dwebvttdec.c109 identifier_len = strcspn(p, "\r\n"); in webvtt_read_header()
128 p += strcspn(p, "\n\r\t "); in webvtt_read_header()
132 settings_len = strcspn(p, "\r\n"); in webvtt_read_header()
/third_party/musl/libc-test/src/functionalext/supplement/string/string_gtest/
H A Dstring_strcspn_test.cpp15 * @tc.desc: Verify the correctness of the strcspn function in searching for a specified set of characters within a
23 size_t count = strcspn(str1, str2); in HWTEST_F()
29 * @tc.desc: Verify that when no characters from the specified character set are found in the source string, the strcspn
37 size_t count = strcspn(str1, str2); in HWTEST_F()
/third_party/mesa3d/src/util/
H A Ddebug.c44 for (; n = strcspn(s, ", "), *s; s += MAX2(1, n)) { in parse_debug_string()
72 for (; n = strcspn(s, ", "), *s; s += MAX2(1, n)) { in parse_enable_string()
104 for (unsigned n; n = strcspn(list, ","), *list; list += MAX2(1, n)) { in comma_separated_list_contains()
/third_party/pulseaudio/src/modules/rtp/
H A Dsdp.c144 l = strcspn(t, "\n"); in pa_sdp_parse()
162 a[strcspn(a, "/")] = 0; in pa_sdp_parse()
180 a[strcspn(a, "/")] = 0; in pa_sdp_parse()
230 c[strcspn(c, "\n")] = 0; in pa_sdp_parse()
/third_party/eudev/src/shared/
H A Dpath-util.c270 a = strcspn(path, "/"); in path_startswith()
271 b = strcspn(prefix, "/"); in path_startswith()
312 j = strcspn(a, "/"); in path_compare()
313 k = strcspn(b, "/"); in path_compare()
367 p[strcspn(p, WHITESPACE)] = 0; in fd_fdinfo_mnt_id()
/third_party/ffmpeg/libavcodec/
H A Dass_split.c270 len = strcspn(buf, ":\r\n"); in ass_split_section()
290 len = strcspn(buf, ", \r\n"); in ass_split_section()
325 len = strcspn(buf, last ? "\r\n" : ",\r\n"); in ass_split_section()
337 len = strcspn(buf, ":\r\n"); in ass_split_section()
345 convert_func[type](ptr, buf, strcspn(buf, "\r\n")); in ass_split_section()
351 buf += strcspn(buf, "\n"); in ass_split_section()
367 buf += strcspn(buf, "\n"); in ass_split()
375 buf += strcspn(buf, "\n"); in ass_split()
458 len = last ? strlen(buf) : strcspn(buf, ","); in ff_ass_split_dialog()
556 len = strcspn(bu in ff_ass_split_override_codes()
[all...]
/third_party/musl/src/locale/
H A Dcatopen.c53 case 'l': v=lang; l=strcspn(v,"_.@"); break; in catopen()
57 l=strcspn(v,".@"); in catopen()
/third_party/pulseaudio/src/modules/
H A Dmodule-match.c123 token_end = ln + strcspn(ln, WHITESPACE); in load_rules()
142 token_end = value_str + strcspn(value_str, WHITESPACE); in load_rules()
169 token_end = value_str + strcspn(value_str, WHITESPACE); in load_rules()
/third_party/mesa3d/src/compiler/glsl/
H A Ds_expression.cpp53 n = strcspn(src, "\n"); in skip_whitespace()
67 size_t n = strcspn(src, "( \v\t\r\n);"); in read_atom()
/third_party/musl/src/string/
H A Dstrpbrk.c5 s += strcspn(s, b); in strpbrk()
H A Dstrcspn.c5 size_t strcspn(const char *string1, const char *string2) in strcspn() function
H A Dstrsep.c8 end = s + strcspn(s, sep); in strsep()
H A Dstrtok.c9 p = s + strcspn(s, sep); in strtok()
H A Dstrtok_r.c8 *p = s + strcspn(s, sep); in strtok_r()
/third_party/musl/porting/liteos_a/kernel/src/string/
H A Dstrpbrk.c5 s += strcspn(s, b); in strpbrk()
H A Dstrtok.c9 p = s + strcspn(s, sep); in strtok()
H A Dstrtok_r.c8 *p = s + strcspn(s, sep); in strtok_r()
H A Dstrsep.c8 end = s + strcspn(s, sep); in strsep()
/third_party/musl/porting/linux/user/src/string/
H A Dstrcspn.c5 size_t strcspn(const char *string1, const char *string2) in strcspn() function
/third_party/musl/porting/uniproton/kernel/src/string/
H A Dstrtok.c9 p = s + strcspn(s, sep); in strtok()
H A Dstrtok_r.c8 *p = s + strcspn(s, sep); in strtok_r()
H A Dstrcspn.c6 size_t strcspn(const char *s, const char *c) in strcspn() function
/third_party/musl/porting/liteos_m/kernel/src/string/
H A Dstrtok.c9 p = s + strcspn(s, sep); in strtok()
H A Dstrtok_r.c8 *p = s + strcspn(s, sep); in strtok_r()

Completed in 7 milliseconds

123456