mirror of
https://github.com/google/pebble.git
synced 2025-07-12 01:12:18 -04:00
Import of the watch repository from Pebble
This commit is contained in:
commit
3b92768480
10334 changed files with 2564465 additions and 0 deletions
103
platform/snowy/boot/src/util/bitset.h
Normal file
103
platform/snowy/boot/src/util/bitset.h
Normal file
|
@ -0,0 +1,103 @@
|
|||
/*
|
||||
* Copyright 2024 Google LLC
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
//! @file util/bitset.h
|
||||
//!
|
||||
//! Helper functions for dealing with a bitsets of various widths.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stdint.h>
|
||||
|
||||
#include "system/passert.h"
|
||||
|
||||
static inline void bitset8_set(uint8_t* bitset, unsigned int index) {
|
||||
bitset[index / 8] |= (1 << (index % 8));
|
||||
}
|
||||
|
||||
static inline void bitset8_clear(uint8_t* bitset, unsigned int index) {
|
||||
bitset[index / 8] &= ~(1 << (index % 8));
|
||||
}
|
||||
|
||||
static inline void bitset8_update(uint8_t* bitset, unsigned int index, bool value) {
|
||||
if (value) {
|
||||
bitset8_set(bitset, index);
|
||||
} else {
|
||||
bitset8_clear(bitset, index);
|
||||
}
|
||||
}
|
||||
|
||||
static inline bool bitset8_get(const uint8_t* bitset, unsigned int index) {
|
||||
return bitset[index / 8] & (1 << (index % 8));
|
||||
}
|
||||
|
||||
static inline void bitset16_set(uint16_t* bitset, unsigned int index) {
|
||||
bitset[index / 16] |= (1 << (index % 16));
|
||||
}
|
||||
|
||||
static inline void bitset16_clear(uint16_t* bitset, unsigned int index) {
|
||||
bitset[index / 16] &= ~(1 << (index % 16));
|
||||
}
|
||||
|
||||
static inline void bitset16_update(uint16_t* bitset, unsigned int index, bool value) {
|
||||
if (value) {
|
||||
bitset16_set(bitset, index);
|
||||
} else {
|
||||
bitset16_clear(bitset, index);
|
||||
}
|
||||
}
|
||||
|
||||
static inline bool bitset16_get(const uint16_t* bitset, unsigned int index) {
|
||||
return bitset[index / 16] & (1 << (index % 16));
|
||||
}
|
||||
|
||||
static inline void bitset32_set(uint32_t* bitset, unsigned int index) {
|
||||
bitset[index / 32] |= (1 << (index % 32));
|
||||
}
|
||||
|
||||
static inline void bitset32_clear(uint32_t* bitset, unsigned int index) {
|
||||
bitset[index / 32] &= ~(1 << (index % 32));
|
||||
}
|
||||
|
||||
static inline void bitset32_clear_all(uint32_t* bitset, unsigned int width) {
|
||||
if (width > 32) {
|
||||
// TODO: revisit
|
||||
WTF;
|
||||
}
|
||||
*bitset &= ~((1 << (width + 1)) - 1);
|
||||
}
|
||||
|
||||
static inline void bitset32_update(uint32_t* bitset, unsigned int index, bool value) {
|
||||
if (value) {
|
||||
bitset32_set(bitset, index);
|
||||
} else {
|
||||
bitset32_clear(bitset, index);
|
||||
}
|
||||
}
|
||||
|
||||
static inline bool bitset32_get(const uint32_t* bitset, unsigned int index) {
|
||||
return bitset[index / 32] & (1 << (index % 32));
|
||||
}
|
||||
|
||||
#ifdef __arm__
|
||||
#define rotl32(x, shift) \
|
||||
__asm__ volatile ("ror %0,%0,%1" : "+r" (src) : "r" (32 - (shift)) :);
|
||||
#else
|
||||
#define rotl32(x, shift) \
|
||||
uint32_t s = shift % 32; \
|
||||
{x = ((x << (s)) | x >> (32 - (s)));}
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue