4 مستودعات
Low-level operations for moving bits in a set left or right by specified positions.
Distinct from Bit-Shifting Arithmetic: Focuses on the shift operation itself rather than using shifts to implement a full arithmetic system
Explore 4 awesome GitHub repositories matching software engineering & architecture · Bit Sequence Shifting. Refine with filters or upvote what's useful.
This project is a comprehensive collection of common computer science algorithms and data structures implemented in Swift. It serves as an educational reference and library for studying computational complexity, algorithmic logic, and data structure engineering through practical code examples. The repository provides a wide suite of data structure implementations, including various types of linked lists, heaps, hash tables, and an extensive range of hierarchical trees such as Red-Black, B-Tree, and Splay trees. It also covers diverse sorting and searching techniques, from basic bubble sort to
Provides operations for moving bits in a set left or right by a specified number of positions.
Trail of Bits flags assembly shift operations where the value and shift amount arguments are swapped, producing incorrect results.
Alda is a text-based music programming language and command-line tool for composing, playing, and live-coding musical scores. It functions as a MIDI composition engine that renders plain-text scores into audio output, and as a live coding environment where code entered in a read-eval-print loop produces real-time playback without restarting the interpreter. The system distinguishes itself through an event-driven playback engine that schedules timed note events, an instrument-attribute inheritance model that cascades properties like volume and tempo from global defaults to individual parts, an
Changes note pitch by shifting octaves up or down using persistent angle bracket operators.
js-base64 هي مكتبة JavaScript لترميز وفك ترميز البيانات بين تنسيق Base64 وسلاسل JavaScript أو مصفوفات البايت. توفر أدوات لتحويل البيانات الثنائية إلى سلاسل Base64 وتحويل تلك السلاسل مرة أخرى إلى نصها الأصلي أو تنسيق البايت الخام. يتضمن المشروع مدققاً لسلسلة Base64 للتحقق مما إذا كان التسلسل يتبع التنسيق الصحيح والحروف والحشو (padding). كما يدعم إنشاء سلاسل Base64 آمنة لـ URI عن طريق استبدال الحروف التي قد تسبب أخطاء ترميز في URIs ويسمح بإزالة الحشو. توفر المكتبة أداة امتداد للنموذج (prototype extension) تضيف طرق الترميز وفك الترميز مباشرة إلى كائنات السلسلة والمصفوفة القياسية في JavaScript.
Implements low-level bit shifting to convert three bytes of binary data into four Base64 characters.