Tagged Questions

0
votes
8answers
334 views

Which method of incrementing is superior in C++?

I saw someone use this method to increment a variable: r = (r + 1) & 0xf; Is that method better/faster than just using: r++; Why would someone use a bitwise and, with 0xf …
2
votes
2answers
112 views

Why is this statement true in PHP?

I don't understand why this statement in PHP echos 'whaaa?' -- (0x0F | 0xF0) should be 0xFF no? if((0x0FFFFFFF | 0xF0FFFFFF) != 0xFFFFFFFF) echo 'whaaa?';
0
votes
8answers
185 views

What bit shifting techniques should I be using?

I'm curious to know what usage patterns people have established for themselves to utilize bit shifting in a modern day context such as client/server, web, desktop development. What …
2
votes
5answers
169 views

C# Bitwise OR needs casting with byte *sometimes*

I found an odd situation in the C# compiler. Why the cast below is required? using System; class Program { private const byte BIT_ZERO_SET = 1; private const byte BIT_ONE …
0
votes
3answers
40 views

MSSQL2008: Bit arrays and bit-wise operations + database Brainstorm

Hi all. I have a coding problem where I have to store a 'note' and the dates the note applies to. Think of: Note 1 Hi, today Mr Client rang arranging these appointments. 30/8/200 …
2
votes
1answer
92 views

XAML ‘NOT’ operator?

<Button IsEnabled="{Binding (Not IsDisabled)}" /> Is there a way to do it with pure xaml, or I will have to do it via code? PS. I asked the question knowing that I can crea …
1
vote
3answers
213 views

AS3 bitwise shift 0?

I came across this in some AS 3.0 code: (duration >> 0) Where duration is a Number. I think I know what a bitwise right shift does, but what's the point of shifting 0 bits …
2
votes
3answers
609 views

Shift operators in PL/SQL

Whether there is an alternative of shift operators in PL/SQL? There is bitand function, but it accepts only *binary_integer*-type arguments. What should i do if i need check up low …
1
vote
1answer
262 views

Convert Delphi Bitwise Operation to Cobol

How can this code be converted to COBOL? Result := GetSysColor(Color and $000000FF) The value types are DWORD, I guess it is a bitwise operation.
7
votes
3answers
825 views

C# bitwise rotate left and rotate right

Hi I am looking for C# equivalent (.Net 2) of _rotl and _rotr from c++. Any ideas ? Thanks,
4
votes
4answers
387 views

How use bit/bit-operator to control object state?

I want to create light object data-package to pass between client and server applications. It is a so simple task, that I can control with only 1 byte, so each bit in a byte will …
2
votes
9answers
255 views

Bitwise OR [closed]

I received this code in a previous question: double d = double.Parse ("$10.10", NumberStyles.AllowCurrencySymbol | NumberStyles.AllowDecimalPoint | NumberStyles.AllowParenthesis)N …
0
votes
4answers
313 views

Weird bit-shift behavior

I'm in the process of porting some ANSI C++ code to C#... and this is killing me right now. Both tests have value = 6844268. Test code: value >> 12 value & 0x00000FFF …