Home
last modified time | relevance | path

Searched refs:compiletime_assert (Results 1 – 3 of 3) sorted by relevance

/external/fio/
Dlibfio.c308compiletime_assert((offsetof(struct thread_stat, percentile_list) % 8) == 0, "stat percentile_list… in initialize_fio()
309 compiletime_assert((offsetof(struct thread_stat, total_run_time) % 8) == 0, "total_run_time"); in initialize_fio()
310 compiletime_assert((offsetof(struct thread_stat, total_err_count) % 8) == 0, "total_err_count"); in initialize_fio()
311compiletime_assert((offsetof(struct thread_stat, latency_percentile) % 8) == 0, "stat latency_perc… in initialize_fio()
312 compiletime_assert((offsetof(struct thread_options_pack, zipf_theta) % 8) == 0, "zipf_theta"); in initialize_fio()
313 compiletime_assert((offsetof(struct thread_options_pack, pareto_h) % 8) == 0, "pareto_h"); in initialize_fio()
314compiletime_assert((offsetof(struct thread_options_pack, percentile_list) % 8) == 0, "percentile_l… in initialize_fio()
315compiletime_assert((offsetof(struct thread_options_pack, latency_percentile) % 8) == 0, "latency_p… in initialize_fio()
Dverify.c1289 compiletime_assert(sizeof(struct all_io_list) == 8, "all_io_list"); in get_all_io_list()
/external/fio/compiler/
Dcompiler.h55 #define compiletime_assert(condition, msg) \ macro