uint64_t a; uint64_t b; uint64_t a_and_b = a & b; uint64_t a_or_b = a | b; How to make a similar for an arbitrary memory area (for example, for uint64_t[n] )? Are there any special OS or assembler commands for this?
ps means something other than traversing the entire memory area in chunks ( uint8_t , uint16_t , etc.) and performing the necessary operation for each piece