Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <campbell@blender.org>2022-03-30 09:26:42 +0300
committerCampbell Barton <campbell@blender.org>2022-03-30 10:01:22 +0300
commita8ec7845e0bdb9e63e9d3dbd7f4cd7caad36b5a2 (patch)
tree4531232281ddc4cda4df3fb1ccc0822018fe5682 /source/blender/blenlib/intern/bitmap.c
parentaf3aaf80344e745e6c207102941513cb631194c3 (diff)
Cleanup: use "num" as a suffix in: source/blender/blenlib
Also replace "num" with: - "number" when it's not used to denote the number of items. - "digits" when digits in a string are being manipulated.
Diffstat (limited to 'source/blender/blenlib/intern/bitmap.c')
-rw-r--r--source/blender/blenlib/intern/bitmap.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/source/blender/blenlib/intern/bitmap.c b/source/blender/blenlib/intern/bitmap.c
index dd022986e14..7fcbc31c066 100644
--- a/source/blender/blenlib/intern/bitmap.c
+++ b/source/blender/blenlib/intern/bitmap.c
@@ -20,8 +20,8 @@ void BLI_bitmap_set_all(BLI_bitmap *bitmap, bool set, size_t bits)
void BLI_bitmap_flip_all(BLI_bitmap *bitmap, size_t bits)
{
- size_t num_blocks = _BITMAP_NUM_BLOCKS(bits);
- for (size_t i = 0; i < num_blocks; i++) {
+ size_t blocks_num = _BITMAP_NUM_BLOCKS(bits);
+ for (size_t i = 0; i < blocks_num; i++) {
bitmap[i] ^= ~(BLI_bitmap)0;
}
}
@@ -33,16 +33,16 @@ void BLI_bitmap_copy_all(BLI_bitmap *dst, const BLI_bitmap *src, size_t bits)
void BLI_bitmap_and_all(BLI_bitmap *dst, const BLI_bitmap *src, size_t bits)
{
- size_t num_blocks = _BITMAP_NUM_BLOCKS(bits);
- for (size_t i = 0; i < num_blocks; i++) {
+ size_t blocks_num = _BITMAP_NUM_BLOCKS(bits);
+ for (size_t i = 0; i < blocks_num; i++) {
dst[i] &= src[i];
}
}
void BLI_bitmap_or_all(BLI_bitmap *dst, const BLI_bitmap *src, size_t bits)
{
- size_t num_blocks = _BITMAP_NUM_BLOCKS(bits);
- for (size_t i = 0; i < num_blocks; i++) {
+ size_t blocks_num = _BITMAP_NUM_BLOCKS(bits);
+ for (size_t i = 0; i < blocks_num; i++) {
dst[i] |= src[i];
}
}