Home | History | Annotate | Download | only in tests

Lines Matching defs:compressed

200 	// compressed data.
262 // Helper function to encode data and return the compressed size.
265 uint8_t **compressed)
276 *compressed = tuktest_malloc(out_size);
287 strm.next_out = *compressed;
416 // the MicroLZMA decoder knows the exact compressed size from
469 // When uncomp_size_is_exact is set, the compressed size must be
484 // detect when the compressed size is wrong as long as all of the
499 uint8_t *compressed = tuktest_malloc(goodbye_world_encoded_size);
500 memcpy(compressed, goodbye_world_encoded, goodbye_world_encoded_size);
503 compressed[0] = (uint8_t)~0x6FU;
513 strm.next_in = compressed;
522 compressed[0] = (uint8_t)~0x66;
529 strm.next_in = compressed;