Searched refs:uncompressed_data_size (Results 1 – 1 of 1) sorted by relevance
/reactos/modules/rostests/winetests/lz32/ |
H A D | lzexpand_main.c | 67 static const DWORD uncompressed_data_size = sizeof(uncompressed_data) - 1; variable 434 ret = LZRead(cfile, buf, uncompressed_data_size); in test_LZRead() 435 ok(ret == uncompressed_data_size, "Read wrong number of bytes\n"); in test_LZRead() 438 ok(memcmp(buf, uncompressed_data, uncompressed_data_size) == 0, in test_LZRead() 443 ret = LZRead(cfile, buf, uncompressed_data_size); in test_LZRead() 485 retok = ReadFile(file, buf, uncompressed_data_size*2, &ret, 0); in test_LZCopy() 486 ok( retok && ret == uncompressed_data_size, "ReadFile: error %d\n", GetLastError()); in test_LZCopy() 488 ok(!memcmp(buf, uncompressed_data, uncompressed_data_size), in test_LZCopy() 820 buf = HeapAlloc(GetProcessHeap(), 0, uncompressed_data_size * 2); in START_TEST()
|