Home
last modified time | relevance | path

Searched refs:data_buffer_t (Results 1 – 4 of 4) sorted by relevance

/aosp_15_r20/external/zstd/tests/regression/
H A Ddata.h64 } data_buffer_t; typedef
72 data_buffer_t data_buffer_get_data(data_t const* data);
79 data_buffer_t data_buffer_get_dict(data_t const* data);
86 data_buffer_t data_buffer_read(char const* filename);
93 data_buffer_t data_buffer_create(size_t capacity);
98 int data_buffer_compare(data_buffer_t buffer1, data_buffer_t buffer2);
103 void data_buffer_free(data_buffer_t buffer);
107 data_buffer_t const* buffers;
H A Ddata.c109 data_buffer_t data_buffer_create(size_t const capacity) { in data_buffer_create()
110 data_buffer_t buffer = {}; in data_buffer_create()
119 data_buffer_t data_buffer_read(char const* filename) { in data_buffer_read()
120 data_buffer_t buffer = {}; in data_buffer_read()
154 data_buffer_t data_buffer_get_data(data_t const* data) { in data_buffer_get_data()
155 data_buffer_t const kEmptyBuffer = {}; in data_buffer_get_data()
163 data_buffer_t data_buffer_get_dict(data_t const* data) { in data_buffer_get_dict()
164 data_buffer_t const kEmptyBuffer = {}; in data_buffer_get_dict()
172 int data_buffer_compare(data_buffer_t buffer1, data_buffer_t buffer2) { in data_buffer_compare()
186 void data_buffer_free(data_buffer_t buffer) { in data_buffer_free()
[all …]
H A Dmethod.c41 data_buffer_t dictionary; /**< The dictionary. */
42 data_buffer_t compressed; /**< The compressed data buffer. */
43 data_buffer_t decompressed; /**< The decompressed data buffer. */
117 data_buffer_t const input = state->inputs.buffers[0]; in simple_compress()
173 data_buffer_t const input = state->inputs.buffers[i]; in compress_cctx_compress()
352 data_buffer_t const input = state->inputs.buffers[i]; in advanced_one_pass_compress_output_adjustment()
409 data_buffer_t input = state->inputs.buffers[i]; in advanced_streaming_compress()
546 data_buffer_t input = state->inputs.buffers[i]; in old_streaming_compress_internal()
H A Dtest.c293 data_buffer_t const actual = data_buffer_read(actual_file); in diff_results()
294 data_buffer_t const expected = data_buffer_read(expected_file); in diff_results()