473,406 Members | 2,352 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,406 software developers and data experts.

Using bitshift in assigning a number to a variable?

Is there any benefit to declaring a variable:

x = (1<<12);

instead of:

x = 4096;

(besides the geek appeal of course ;-) )

I have seen these kind of declarations come up in some code I have been
fiddling with and was wondering if there was any tangible benefit, (I have
also seen stuff declared as hex, is there any benefit to that either).

---
bollod
Nov 14 '05 #1
12 3915
bollod wrote:

Is there any benefit to declaring a variable:

x = (1<<12);

instead of:

x = 4096;

(besides the geek appeal of course ;-) )

I have seen these kind of declarations come up
in some code I have been
fiddling with and was wondering if there was any tangible benefit,
(I have also seen stuff declared as hex,
is there any benefit to that either).


It's easier to visualise the binary representation
of the values that way,
which is especially good if your numbers are masks.

--
pete
Nov 14 '05 #2
On Fri, 26 Dec 2003 04:03:30 +0000, pete wrote:
bollod wrote:

Is there any benefit to declaring a variable:

x = (1<<12);

instead of:

x = 4096;

(besides the geek appeal of course ;-) )

I have seen these kind of declarations come up
in some code I have been
fiddling with and was wondering if there was any tangible benefit,
(I have also seen stuff declared as hex,
is there any benefit to that either).


It's easier to visualise the binary representation
of the values that way,
which is especially good if your numbers are masks.


That makes sense.

What would you do if you needed to create the mask '10101010' (besides
foo=170 or foo=0xA4)?

---
bollod
Nov 14 '05 #3
bollod wrote:

On Fri, 26 Dec 2003 04:03:30 +0000, pete wrote:
bollod wrote:

Is there any benefit to declaring a variable:

x = (1<<12);

instead of:

x = 4096;

(besides the geek appeal of course ;-) )

I have seen these kind of declarations come up
in some code I have been
fiddling with and was wondering if there was any tangible benefit,
(I have also seen stuff declared as hex,
is there any benefit to that either).


It's easier to visualise the binary representation
of the values that way,
which is especially good if your numbers are masks.


That makes sense.

What would you do if you needed to create the mask '10101010' (besides
foo=170 or foo=0xA4)?


'10101010' looks more like 0xaa to me.

The shift notation is better
when the right operand of the shift operator
is an enum or a macro identifier which indicates which flag
the mask applies to.

--
pete
Nov 14 '05 #4
bollod wrote:
What would you do if you needed to create the mask '10101010' (besides
foo=170 or foo=0xA4)?


I would write
#define SOME_MASK (1<<7 | 1<<5 | 1<<3 | 1<<1)
or
const int SOME_MASK=1<<7 | 1<<5 | 1<<3 | 1<<1;

--
Ro*************@rbdev.net
Nov 14 '05 #5
in comp.lang.c i read:
What would you do if you needed to create the mask '10101010' (besides
foo=170 or foo=0xA4)?


correction: foo=0xAA. also foo=0252 and foo=strtol("10101010", 0, 2),
though the later cannot be used at file scope.

--
a signature
Nov 14 '05 #6
On Thu, 25 Dec 2003, bollod wrote:
Is there any benefit to declaring a variable:

x = (1<<12);

instead of:

x = 4096;

(besides the geek appeal of course ;-) )

I have seen these kind of declarations come up in some code I have been
fiddling with and was wondering if there was any tangible benefit, (I have
also seen stuff declared as hex, is there any benefit to that either).


I'll answer the easier question first, there is a benefit to hexidecimal
notation. When I am doing bit twiddling it is easier to visualize the bit
pattern what using hexidecimal notation. One digit in hexidecimal notation
is exactly 4 bits.

The harder question is why use (1<<12) rather than 4096. If they used
0x1000 it would be more obvious. I'd guess that 99% of the time this is
just more readable. Another possible option is that someone was tuning the
code and found a 'trick' for a particular processor/compiler.

It is not impossible that a compiler will take:

x = (1<<12);

and optimize it to a STORE IMMEDIATE 1 and SHIFT opcode. The cycle count
for this might be faster than trying to assign 4096. This is a stretch but
not impossible. Mind you, I'd put a comment next to the code in case a
revision in the compiler or a port to a different architecture made this
tweek disappear.

--
Send e-mail to: darrell at cs dot toronto dot edu
Don't send e-mail to vi************@whitehouse.gov
Nov 14 '05 #7

"bollod" <bo****@lycos.com> wrote in message
news:pa****************************@lycos.com...
On Fri, 26 Dec 2003 04:03:30 +0000, pete wrote:
bollod wrote:

Is there any benefit to declaring a variable:

x = (1<<12);

instead of:

x = 4096;

(besides the geek appeal of course ;-) )

I have seen these kind of declarations come up
in some code I have been
fiddling with and was wondering if there was any tangible benefit,
(I have also seen stuff declared as hex,
is there any benefit to that either).


It's easier to visualise the binary representation
of the values that way,
which is especially good if your numbers are masks.


That makes sense.

What would you do if you needed to create the mask '10101010' (besides
foo=170 or foo=0xA4)?

---
bollod


x=2<<6|2<<4|2<<2|2;

or

x=10<<4|10;

or

x=5<<5|5<<1;

or

x=85<<1;
But now its just getting silly.....

Sean
Nov 14 '05 #8
bollod wrote:
On Fri, 26 Dec 2003 04:03:30 +0000, pete wrote:
It's easier to visualise the binary representation
of the values that way,
which is especially good if your numbers are masks.


That makes sense.

What would you do if you needed to create the mask '10101010' (besides
foo=170 or foo=0xA4)?


#define l )*2+1
#define O )*2
#define b1 ((((((((0

unsigned char foo = b1 l O l O l O l O ;

--
Richard Heathfield : bi****@eton.powernet.co.uk
"Usenet is a strange place." - Dennis M Ritchie, 29 July 1999.
C FAQ: http://www.eskimo.com/~scs/C-faq/top.html
K&R answers, C books, etc: http://users.powernet.co.uk/eton
Nov 14 '05 #9
bollod wrote:
Is there any benefit to declaring a variable:

x = (1<<12);

instead of:

x = 4096;

(besides the geek appeal of course ;-) ) If x is used as a "common variable" I can see no benefit.

But if x is used as some kind of bit-mask you got the benefit of
immediately seeing that the value of x is 1000000000000 in binary notation.

As (1<<n) can be read as 1 followed by n zero digits in binary notation.
For example: 1<<3 is 1000 in binary.
(I have also seen stuff declared as hex, is there any benefit to that either).


Hexadecimal notation is also very common when using bit-masks.
As Darrell Grainger already said:
| One digit in hexidecimal notation
| is exactly 4 bits.

So if you familiar with hexadecimal notation it's easy to see that
0x1000 (4096) is 1000000000000.

I also have seen code with bit-masks in octal notation (one digit in
octal notation represents 3 bits).

HTH,
Robert

--
Ro*************@rbdev.net
Nov 14 '05 #10
Robert Bachmann wrote:

bollod wrote:
What would you do if you needed to create the mask '10101010' (besides
foo=170 or foo=0xA4)?


I would write
#define SOME_MASK (1<<7 | 1<<5 | 1<<3 | 1<<1)


Out of all of the various replies posted,
that form, shifts and bitwise ors,
is similar to macros that I've actually used.

--
pete
Nov 14 '05 #11
----- Original Message -----
From: "Richard Heathfield" <do******@address.co.uk.invalid>
Newsgroups: comp.lang.c
Sent: 27 December 2003 11:12
Subject: Re: Using bitshift in assigning a number to a variable?

bollod wrote:
On Fri, 26 Dec 2003 04:03:30 +0000, pete wrote:
It's easier to visualise the binary representation
of the values that way,
which is especially good if your numbers are masks.


That makes sense.

What would you do if you needed to create the mask '10101010' (besides
foo=170 or foo=0xA4)?


#define l )*2+1
#define O )*2
#define b1 ((((((((0

unsigned char foo = b1 l O l O l O l O ;


Hey this is pretty neat way of representing binary in your 'C' code. I
would generalise it a bit further by allowing 16 and 32 bit values as well,
something like:

#define bin32bit ((((((((((((((((((((((((((((((((0
#define bin16bit ((((((((((((((((0
#define bin8bit ((((((((0

#define O )<<1
#define I )<<1+1
Then

x=bin8bit I O I O I O I O

or

x = bin16bit I O I O I O I O I O I O I O I O

nice!

Sean

Nov 14 '05 #12
Sean Kenwrick wrote:
----- Original Message -----
From: "Richard Heathfield" <do******@address.co.uk.invalid>
Newsgroups: comp.lang.c
Sent: 27 December 2003 11:12
Subject: Re: Using bitshift in assigning a number to a variable?

bollod wrote:
> On Fri, 26 Dec 2003 04:03:30 +0000, pete wrote:
>
>> It's easier to visualise the binary representation
>> of the values that way,
>> which is especially good if your numbers are masks.
>
> That makes sense.
>
> What would you do if you needed to create the mask '10101010' (besides
> foo=170 or foo=0xA4)?


#define l )*2+1
#define O )*2
#define b1 ((((((((0

unsigned char foo = b1 l O l O l O l O ;


Hey this is pretty neat way of representing binary in your 'C' code. I
would generalise it a bit further by allowing 16 and 32 bit values as
well,


Yes, that's why I called it b1 rather than b - to allow for b2 and b4 (and,
if you have bigger integral types, b8 and so on as well).

See "Expert C Programming (Deep C Secrets)" by Peter van der Linden, p203,
for the original idea. All I did was hack the names.

--
Richard Heathfield : bi****@eton.powernet.co.uk
"Usenet is a strange place." - Dennis M Ritchie, 29 July 1999.
C FAQ: http://www.eskimo.com/~scs/C-faq/top.html
K&R answers, C books, etc: http://users.powernet.co.uk/eton
Nov 14 '05 #13

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

27
by: ajay | last post by:
Why would a new of object be created without assigning it to any of variable? new A; ??? tx
15
by: lawrence | last post by:
Sorry for the dumb question but I'm new to Javascript. I wrote this script hoping to animate some div blocks on a page. You can see the page here: http://www.keymedia.biz/demo.htm Can anyone...
6
by: adamrfrench | last post by:
Let it be mentioned that Javascript is not my forte, so the solution to this could very well be a simple one. I am working on an AJAX function where I can pass a URL and the target ID in, and...
18
by: Jen | last post by:
I'm using Microsoft's own VB.NET FTP Example: http://support.microsoft.com/default.aspx?scid=kb;en-us;832679 I can get the program to create directories, change directories, etc., but I can't...
8
by: Eric.Medlin | last post by:
I am reading in 1bit data to a buffer that contains over 30000 bits and I would like to beable to bitshift the entire buffer and AND and OR it with other buffers of the same size. I though I could...
1
by: garry.oxnard | last post by:
Can anyone help me to solve a problem which involves switching from Access to Excel (then back to Access) programatically please? I have an Excel template which, on open, also opens an Access...
25
by: samjnaa | last post by:
Please check for sanity and approve for posting at python-dev. In Visual Basic there is the keyword "with" which allows an object- name to be declared as governing the following statements. For...
6
by: nanodust | last post by:
hello all i am relatively new to python, catching on, but getting stuck on simple thing: i have two string bytes i need to push into a single (short) int, like so in c: temp = strBuf;
10
by: dan | last post by:
Am i breaking any rules when I loop dates like // Determine Memorial Day intFlag = 0; memDayHol = new Date (currentYear, 4, 31); while (intFlag == 0) { if (memDayHol.getDay() == 1) {intFlag...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.