Home
last modified time | relevance | path

Searched refs:strbufcat_impl (Results 1 – 3 of 3) sorted by relevance

/xnu-11215.61.5/tests/
H A Dtest_strings.c252 …T_ASSERT_EQ(strbufcat_impl(NULL, 0, "hello", 5), NULL, "check concatenation to 0-length destinatio…
258 …T_ASSERT_EQ(strbufcat_impl(dst, sizeof(dst), (TO_CAT), sizeof(TO_CAT)), (char *)dst, "check concat…
269 …T_ASSERT_EQ(strbufcat_impl(dst, sizeof(dst), dst, sizeof(dst)), (char *)dst, "check concatenating …
273 …T_ASSERT_EQ(strbufcat_impl(dst, sizeof(dst), "aaaaaaaaaa", 10), (char *)dst, "check concatenating …
/xnu-11215.61.5/osfmk/machine/
H A Dstring.h76 extern const char *strbufcat_impl(char *, size_t, const char *, size_t) asm("_strbufcat");
/xnu-11215.61.5/osfmk/device/
H A Dsubrs.c712 strbufcat_impl( in strbufcat_impl() function