awesome-repositories.com
Blog
awesome-repositories.com

Découvrez les meilleurs dépôts open-source grâce à notre recherche par IA.

ExplorerRecherches sélectionnéesAlternatives open sourceLogiciels auto-hébergésBlogPlan du site
ProjetÀ proposNotre méthodologiePresseServeur MCP
Mentions légalesConfidentialitéConditions d'utilisation
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

3 dépôts

Awesome GitHub RepositoriesSignificant Bit Locators

Utilities for finding the position of specific bits within integer vectors.

Distinct from Integer Bit Analyzers: Distinct from Integer Bit Analyzers: focuses on locating the Nth significant bit rather than general bit analysis.

Explore 3 awesome GitHub repositories matching software engineering & architecture · Significant Bit Locators. Refine with filters or upvote what's useful.

Awesome Significant Bit Locators GitHub Repositories

Trouvez les meilleurs dépôts grâce à l'IA.Nous recherchons les dépôts les plus pertinents grâce à l'IA.
  • cp-algorithms/cp-algorithmsAvatar de cp-algorithms

    cp-algorithms/cp-algorithms

    10,805Voir sur GitHub↗

    This project is a comprehensive reference for algorithms and data structures used to solve complex computational problems in competitive programming. It serves as a technical resource for implementing advanced mathematical programming, computational geometry, and graph theory. The repository provides detailed implementation guides for diversifying algorithmic techniques, including top-down and bottom-up dynamic programming optimization, number theory, and linear algebra. It features specific guides for complex tasks such as constructing planar graphs, solving linear Diophantine equations, and

    Provides techniques to determine if a specific bit is set by shifting the target bit to the unit place.

    C++algorithm-competitionsalgorithmsalgorithms-and-data-structures
    Voir sur GitHub↗10,805
  • g-truc/glmAvatar de g-truc

    g-truc/glm

    10,710Voir sur GitHub↗

    This project is a header-only C++ library designed for graphics mathematics, providing a comprehensive suite of vector, matrix, and quaternion types. It is built using template metaprogramming to generate mathematical primitives at compile time, eliminating the need for precompiled binary libraries and allowing for direct integration into existing build systems. The library is distinguished by its strict adherence to the OpenGL Shading Language specification, ensuring that mathematical results remain consistent across both CPU and GPU code. It provides specialized utilities for managing float

    Identifies the bit position of the Nth significant bit set to one within an integer vector, returning a sentinel value if the bit does not exist.

    C++cppcpp-libraryglm
    Voir sur GitHub↗10,710
  • throwtheswitch/unityAvatar de ThrowTheSwitch

    ThrowTheSwitch/Unity

    5,265Voir sur GitHub↗

    Unity est un framework de test unitaire léger pour C, fournissant la bibliothèque d'assertions, le lanceur de tests et les mécanismes de reporting nécessaires pour vérifier l'exactitude du code. Il fonctionne comme une infrastructure de test de base pour organiser et exécuter des tests unitaires dans des environnements C. Le framework est conçu pour la validation de logiciels système et embarqués, avec des capacités spécifiques pour vérifier le firmware et les pilotes matériels. Il se concentre sur l'intégrité de la mémoire et la validité des pointeurs, permettant la validation des états des pointeurs et l'inspection des blocs de mémoire bruts. L'ensemble d'outils couvre un large éventail de types de comparaison, y compris la vérification numérique pour les entiers, les modèles de bits et les valeurs à virgule flottante. Il fournit également des utilitaires pour valider les chaînes terminées par null, le contenu des tableaux et la logique booléenne, tout en prenant en charge des messages d'échec personnalisés pour fournir du contexte lors du débogage.

    Checks if specific bits or masked ranges in an integer are set to verify hardware flags.

    C
    Voir sur GitHub↗5,265
  1. Home
  2. Software Engineering & Architecture
  3. Integer Arithmetic
  4. Integer Bit Analyzers
  5. Significant Bit Locators

Explorer les sous-tags

  • Bit Status CheckersUtilities for determining if specific bits are set within an integer. **Distinct from Significant Bit Locators:** Focuses on checking a specific bit's value rather than locating the Nth significant bit.