Lines Matching defs:isc_hash_function
1846 ATF_TC(isc_hash_function);
1847 ATF_TC_HEAD(isc_hash_function, tc) {
1850 ATF_TC_BODY(isc_hash_function, tc) {
1858 h1 = isc_hash_function(NULL, 0, ISC_TRUE, NULL);
1859 h1 = isc_hash_function("This ", 5, ISC_TRUE, &h1);
1860 h1 = isc_hash_function("is ", 3, ISC_TRUE, &h1);
1861 h1 = isc_hash_function("a long test", 12, ISC_TRUE, &h1);
1863 h2 = isc_hash_function("This is a long test", 20,
1869 h1 = isc_hash_function(NULL, 0, ISC_TRUE, NULL);
1870 h2 = isc_hash_function(NULL, 0, ISC_TRUE, NULL);
1875 h1 = isc_hash_function("Hello world", 12, ISC_TRUE, NULL);
1876 h2 = isc_hash_function("Hello world", 12, ISC_TRUE, NULL);
1881 h1 = isc_hash_function("Hello world", 12, ISC_FALSE, NULL);
1882 h2 = isc_hash_function("heLLo WorLd", 12, ISC_FALSE, NULL);
1887 h1 = isc_hash_function("Hello world", 12, ISC_TRUE, NULL);
1888 h2 = isc_hash_function("heLLo WorLd", 12, ISC_TRUE, NULL);
1950 h1 = isc_hash_function("Hello world", 12, ISC_TRUE, NULL);
1951 h2 = isc_hash_function("Hello world", 12, ISC_TRUE, NULL);
1958 h2 = isc_hash_function("Hello world", 12, ISC_TRUE, NULL);
2012 ATF_TP_ADD_TC(tp, isc_hash_function);