awesome-repositories.com
المدونة
awesome-repositories.com

اكتشف أفضل مستودعات المصادر المفتوحة باستخدام بحث مدعوم بالذكاء الاصطناعي.

استكشفعمليات بحث منسقةبدائل مفتوحة المصدربرمجيات ذاتية الاستضافةالمدونةخريطة الموقع
المشروعحولكيفية ترتيب النتائجالصحافةخادم MCP
قانونيالخصوصيةالشروط
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

3 مستودعات

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

اعثر على أفضل المستودعات باستخدام الذكاء الاصطناعي.سنبحث عن أفضل المستودعات المطابقة باستخدام الذكاء الاصطناعي.
  • cp-algorithms/cp-algorithmsالصورة الرمزية لـ cp-algorithms

    cp-algorithms/cp-algorithms

    10,805عرض على 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
    عرض على GitHub↗10,805
  • g-truc/glmالصورة الرمزية لـ g-truc

    g-truc/glm

    10,710عرض على 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
    عرض على GitHub↗10,710
  • throwtheswitch/unityالصورة الرمزية لـ ThrowTheSwitch

    ThrowTheSwitch/Unity

    5,265عرض على GitHub↗

    Unity هو إطار عمل لاختبار الوحدات خفيف الوزن لـ C، يوفر مكتبة التأكيد، ومشغل الاختبار، وآليات التقارير المطلوبة للتحقق من صحة الكود. يعمل كبنية تحتية أساسية للاختبار لتنظيم وتنفيذ اختبارات الوحدات في بيئات C. تم تصميم إطار العمل للتحقق من البرمجيات على مستوى النظام والمضمنة، مع قدرات محددة للتحقق من البرامج الثابتة (Firmware) وتعريفات الأجهزة. يركز على سلامة الذاكرة وصحة المؤشرات، مما يسمح بالتحقق من حالات المؤشر وفحص كتل الذاكرة الخام. تغطي مجموعة الأدوات مجموعة واسعة من أنواع المقارنة، بما في ذلك التحقق الرقمي للأعداد الصحيحة، وأنماط البت، وقيم الفاصلة العائمة. كما توفر أدوات مساعدة للتحقق من السلاسل المنتهية بـ null، ومحتويات المصفوفة، والمنطق المنطقي، مع دعم رسائل فشل مخصصة لتوفير السياق أثناء تصحيح الأخطاء.

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

    C
    عرض على GitHub↗5,265
  1. Home
  2. Software Engineering & Architecture
  3. Integer Arithmetic
  4. Integer Bit Analyzers
  5. Significant Bit Locators

استكشف الوسوم الفرعية

  • 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.