mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2025-01-06 22:04:22 +08:00
7a338472f2
Based on 1 normalized pattern(s): this work is licensed under the terms of the gnu gpl version 2 extracted by the scancode license scanner the SPDX license identifier GPL-2.0-only has been chosen to replace the boilerplate/reference in 48 file(s). Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Allison Randal <allison@lohutok.net> Reviewed-by: Enrico Weigelt <info@metux.net> Cc: linux-spdx@vger.kernel.org Link: https://lkml.kernel.org/r/20190604081204.624030236@linutronix.de Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
74 lines
2.7 KiB
C
74 lines
2.7 KiB
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* tools/testing/selftests/kvm/include/sparsebit.h
|
|
*
|
|
* Copyright (C) 2018, Google LLC.
|
|
*
|
|
* Header file that describes API to the sparsebit library.
|
|
* This library provides a memory efficient means of storing
|
|
* the settings of bits indexed via a uint64_t. Memory usage
|
|
* is reasonable, significantly less than (2^64 / 8) bytes, as
|
|
* long as bits that are mostly set or mostly cleared are close
|
|
* to each other. This library is efficient in memory usage
|
|
* even in the case where most bits are set.
|
|
*/
|
|
|
|
#ifndef SELFTEST_KVM_SPARSEBIT_H
|
|
#define SELFTEST_KVM_SPARSEBIT_H
|
|
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
#include <stdio.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
struct sparsebit;
|
|
typedef uint64_t sparsebit_idx_t;
|
|
typedef uint64_t sparsebit_num_t;
|
|
|
|
struct sparsebit *sparsebit_alloc(void);
|
|
void sparsebit_free(struct sparsebit **sbitp);
|
|
void sparsebit_copy(struct sparsebit *dstp, struct sparsebit *src);
|
|
|
|
bool sparsebit_is_set(struct sparsebit *sbit, sparsebit_idx_t idx);
|
|
bool sparsebit_is_set_num(struct sparsebit *sbit,
|
|
sparsebit_idx_t idx, sparsebit_num_t num);
|
|
bool sparsebit_is_clear(struct sparsebit *sbit, sparsebit_idx_t idx);
|
|
bool sparsebit_is_clear_num(struct sparsebit *sbit,
|
|
sparsebit_idx_t idx, sparsebit_num_t num);
|
|
sparsebit_num_t sparsebit_num_set(struct sparsebit *sbit);
|
|
bool sparsebit_any_set(struct sparsebit *sbit);
|
|
bool sparsebit_any_clear(struct sparsebit *sbit);
|
|
bool sparsebit_all_set(struct sparsebit *sbit);
|
|
bool sparsebit_all_clear(struct sparsebit *sbit);
|
|
sparsebit_idx_t sparsebit_first_set(struct sparsebit *sbit);
|
|
sparsebit_idx_t sparsebit_first_clear(struct sparsebit *sbit);
|
|
sparsebit_idx_t sparsebit_next_set(struct sparsebit *sbit, sparsebit_idx_t prev);
|
|
sparsebit_idx_t sparsebit_next_clear(struct sparsebit *sbit, sparsebit_idx_t prev);
|
|
sparsebit_idx_t sparsebit_next_set_num(struct sparsebit *sbit,
|
|
sparsebit_idx_t start, sparsebit_num_t num);
|
|
sparsebit_idx_t sparsebit_next_clear_num(struct sparsebit *sbit,
|
|
sparsebit_idx_t start, sparsebit_num_t num);
|
|
|
|
void sparsebit_set(struct sparsebit *sbitp, sparsebit_idx_t idx);
|
|
void sparsebit_set_num(struct sparsebit *sbitp, sparsebit_idx_t start,
|
|
sparsebit_num_t num);
|
|
void sparsebit_set_all(struct sparsebit *sbitp);
|
|
|
|
void sparsebit_clear(struct sparsebit *sbitp, sparsebit_idx_t idx);
|
|
void sparsebit_clear_num(struct sparsebit *sbitp,
|
|
sparsebit_idx_t start, sparsebit_num_t num);
|
|
void sparsebit_clear_all(struct sparsebit *sbitp);
|
|
|
|
void sparsebit_dump(FILE *stream, struct sparsebit *sbit,
|
|
unsigned int indent);
|
|
void sparsebit_validate_internal(struct sparsebit *sbit);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* SELFTEST_KVM_SPARSEBIT_H */
|