mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
125 lines
2.5 KiB
C
125 lines
2.5 KiB
C
/*
|
|
* Copyright (C) 2015 Kaspar Schleiser <kaspar@schleiser.de>
|
|
*
|
|
* This file is subject to the terms and conditions of the GNU Lesser
|
|
* General Public License v2.1. See the file LICENSE in the top level
|
|
* directory for more details.
|
|
*/
|
|
|
|
/**
|
|
* @{
|
|
*
|
|
* @file
|
|
* @brief Bitfield auxiliary functions
|
|
*
|
|
* @author Kaspar Schleiser <kaspar@schleiser.de>
|
|
* @author Benjamin Valentin <benjamin.valentin@ml-pa.com>
|
|
*
|
|
* @}
|
|
*/
|
|
|
|
#include <stdint.h>
|
|
#include <string.h>
|
|
#include "bitfield.h"
|
|
#include "bitarithm.h"
|
|
#include "irq.h"
|
|
|
|
static inline unsigned _skip_bytes(const uint8_t field[], unsigned nbytes, uint8_t byte)
|
|
{
|
|
unsigned i = 0;
|
|
for (unsigned j = 0; (j < nbytes) && (field[j] == byte); j++) {
|
|
i += 8;
|
|
}
|
|
return i;
|
|
}
|
|
|
|
int bf_get_unset(uint8_t field[], size_t size)
|
|
{
|
|
int result = -1;
|
|
unsigned nbytes = (size + 7) / 8;
|
|
|
|
unsigned state = irq_disable();
|
|
|
|
/* skip full bytes */
|
|
unsigned i = _skip_bytes(field, nbytes, 0xff);
|
|
|
|
for (; i < size; i++) {
|
|
if (!bf_isset(field, i)) {
|
|
bf_set(field, i);
|
|
result = i;
|
|
break;
|
|
}
|
|
}
|
|
|
|
irq_restore(state);
|
|
return result;
|
|
}
|
|
|
|
int bf_find_first_set(const uint8_t field[], size_t size)
|
|
{
|
|
unsigned nbytes = (size + 7) / 8;
|
|
unsigned i = _skip_bytes(field, nbytes, 0);
|
|
|
|
for (; i < size; i++) {
|
|
if (bf_isset(field, i)) {
|
|
return i;
|
|
}
|
|
}
|
|
|
|
return -1;
|
|
}
|
|
|
|
int bf_find_first_unset(const uint8_t field[], size_t size)
|
|
{
|
|
unsigned nbytes = (size + 7) / 8;
|
|
unsigned i = _skip_bytes(field, nbytes, 0xff);
|
|
|
|
for (; i < size; i++) {
|
|
if (!bf_isset(field, i)) {
|
|
return i;
|
|
}
|
|
}
|
|
|
|
return -1;
|
|
}
|
|
|
|
void bf_set_all(uint8_t field[], size_t size)
|
|
{
|
|
unsigned bytes = size >> 3;
|
|
unsigned bits = size & 0x7;
|
|
|
|
memset(field, 0xff, bytes);
|
|
if (bits) {
|
|
field[bytes] |= ~((1U << (8 - bits)) - 1);
|
|
}
|
|
}
|
|
|
|
void bf_clear_all(uint8_t field[], size_t size)
|
|
{
|
|
unsigned bytes = size >> 3;
|
|
unsigned bits = size & 0x7;
|
|
|
|
memset(field, 0, bytes);
|
|
if (bits) {
|
|
field[bytes] &= ((1U << (8 - bits)) - 1);
|
|
}
|
|
}
|
|
|
|
unsigned bf_popcnt(const uint8_t field[], size_t size)
|
|
{
|
|
unsigned bytes = size >> 3;
|
|
unsigned bits = size & 0x7;
|
|
unsigned mask = ~((1U << (8 - bits)) - 1);
|
|
|
|
unsigned count = 0;
|
|
for (unsigned i = 0; i < bytes; ++i) {
|
|
count += bitarithm_bits_set(field[i]);
|
|
}
|
|
|
|
if (bits) {
|
|
count += bitarithm_bits_set(field[bytes] & mask);
|
|
}
|
|
|
|
return count;
|
|
}
|