Lines Matching refs:base32hexmem
113 TEST(base32hexmem) { in TEST() argument
116 b32 = base32hexmem("", STRLEN(""), true); in TEST()
121 b32 = base32hexmem("f", STRLEN("f"), true); in TEST()
126 b32 = base32hexmem("fo", STRLEN("fo"), true); in TEST()
131 b32 = base32hexmem("foo", STRLEN("foo"), true); in TEST()
136 b32 = base32hexmem("foob", STRLEN("foob"), true); in TEST()
141 b32 = base32hexmem("fooba", STRLEN("fooba"), true); in TEST()
146 b32 = base32hexmem("foobar", STRLEN("foobar"), true); in TEST()
151 b32 = base32hexmem("", STRLEN(""), false); in TEST()
156 b32 = base32hexmem("f", STRLEN("f"), false); in TEST()
161 b32 = base32hexmem("fo", STRLEN("fo"), false); in TEST()
166 b32 = base32hexmem("foo", STRLEN("foo"), false); in TEST()
171 b32 = base32hexmem("foob", STRLEN("foob"), false); in TEST()
176 b32 = base32hexmem("fooba", STRLEN("fooba"), false); in TEST()
181 b32 = base32hexmem("foobar", STRLEN("foobar"), false); in TEST()