Lines Matching refs:ul
231 ULONG ul; in testExpand() local
246 nts = pRtlExpandEnvironmentStrings_U(small_env, &us_src, &us_dst, &ul); in testExpand()
248 ok(ul == strlen(test->dst) * sizeof(WCHAR) + sizeof(WCHAR), in testExpand()
249 "Wrong returned length for %s: %u\n", test->src, ul ); in testExpand()
255 nts = pRtlExpandEnvironmentStrings_U(small_env, &us_src, &us_dst, &ul); in testExpand()
257 ok(ul == us_dst.Length + sizeof(WCHAR), in testExpand()
258 "Wrong returned length for %s: %u\n", test->src, ul); in testExpand()
259 ok(ul == strlen(test->dst) * sizeof(WCHAR) + sizeof(WCHAR), in testExpand()
260 "Wrong returned length for %s: %u\n", test->src, ul); in testExpand()
268 nts = pRtlExpandEnvironmentStrings_U(small_env, &us_src, &us_dst, &ul); in testExpand()
270 ok(ul == strlen(test->dst) * sizeof(WCHAR) + sizeof(WCHAR), in testExpand()
271 "Wrong returned length for %s (with buffer too small): %u\n", test->src, ul); in testExpand()