DORSETRIGS
Home

bitwise-operators (8 post)


posts by category not found!

What is (x & 1) and (x >>= 1)?

Unmasking Bitwise Operations x and 1 and x 1 Explained In the realm of programming understanding bitwise operations is crucial for manipulating data at the most

2 min read 07-10-2024 29
What is (x & 1) and (x >>= 1)?
What is (x & 1) and (x >>= 1)?

Modify binary data on stdout a bit then put result to stdout

Modifying Binary Data on Standard Output A Guide In the world of programming handling binary data is a crucial skill especially when working with input and outp

2 min read 21-09-2024 44
Modify binary data on stdout a bit then put result to stdout
Modify binary data on stdout a bit then put result to stdout

How do I write NOT Operation for the Risc-V (Assembly Language)?

How to Write a NOT Operation in RISC V Assembly Language In computer science the NOT operation is a fundamental unary operation that inverts the bits of its ope

2 min read 14-09-2024 94
How do I write NOT Operation for the Risc-V (Assembly Language)?
How do I write NOT Operation for the Risc-V (Assembly Language)?

C segfault question: if one of two inputs is null, return the other

Handling Null Inputs in C Safely Returning Non Null Values In C programming dealing with null pointers is a common issue that can lead to segmentation faults se

2 min read 14-09-2024 68
C segfault question: if one of two inputs is null, return the other
C segfault question: if one of two inputs is null, return the other

Bitwise Rotate Right

Demystifying Bitwise Rotate Right A Deep Dive with Python and C Bitwise operations are a fundamental concept in programming often employed for efficient manipul

4 min read 06-09-2024 41
Bitwise Rotate Right
Bitwise Rotate Right

bitwise OR and AND in c++

Mastering Bitwise Operations in C Understanding OR and AND Bitwise operations are fundamental to low level programming in C They allow us to manipulate individu

2 min read 03-09-2024 57
bitwise OR and AND in c++
bitwise OR and AND in c++

Logical shift right without dedicated shift instruction

Shifting Bits Without Shifting Implementing Logical Right Shifts in Limited Instruction Sets This article explores the fascinating problem of simulating a logic

2 min read 01-09-2024 55
Logical shift right without dedicated shift instruction
Logical shift right without dedicated shift instruction

Performance of BIT_AND vs relational table

BIT AND vs Relational Table Optimizing Content Access for Large Datasets When building applications that involve content access based on user subscriptions effi

3 min read 30-08-2024 51
Performance of BIT_AND vs relational table
Performance of BIT_AND vs relational table