Searched defs:atf_dynstr_npos (Results 1 - 2 of 2) sorted by relevance

/bind-9.11.3/unit/atf-src/atf-c/detail/
H A Ddynstr_test.c231 RE(atf_dynstr_init_substr(&str, &src, 0, atf_dynstr_npos));
243 RE(atf_dynstr_init_substr(&str, &src, 100, atf_dynstr_npos));
247 RE(atf_dynstr_init_substr(&str, &src, 7, atf_dynstr_npos));
353 ATF_REQUIRE_EQ(atf_dynstr_rfind_ch(&str, '\0'), atf_dynstr_npos); local
355 ATF_REQUIRE_EQ(atf_dynstr_rfind_ch(&str, '0'), atf_dynstr_npos); local
356 ATF_REQUIRE_EQ(atf_dynstr_rfind_ch(&str, 'b'), atf_dynstr_npos); local
H A Ddynstr.c111 const size_t atf_dynstr_npos = SIZE_MAX; variable
252 if (end == atf_dynstr_npos || end > src->m_length)
314 return pos == 0 ? atf_dynstr_npos : pos - 1;

Completed in 1904 milliseconds