473,396 Members | 1,965 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,396 software developers and data experts.

Bit Manipulation

Hi there,

Would the following functions work for bit manipulation? I want to specify
a byte and the bit of the byte (from the MSB down to LSB) and either set it,
clear it or get what it is currently at.
Thanks
Allan

void BitSet(unsigned char *Byte, int Bit)
{
unsigned char Mask = 0x80; // all zeros with a 1 at the MSB

if (Bit>7 || Byte==NULL)
return;

Mask = Mask >> Bit;
*Byte = *Byte | Mask;
}

void BitClr(unsigned char *Byte, int Bit)
{
unsigned char Mask = 0x80; // all zeros with a 1 at the MSB

if (Bit>7 || Byte==NULL)
return;

Mask = ~(Mask >> Bit);
*Byte = *Byte & Mask;
}

int BitGet(unsigned char *Byte, int Bit)
{
unsigned char Mask = 0x80; // all zeros with a 1 at the MSB

if (Bit>7 || Byte==NULL)
return;

Mask = Mask >> Bit;
if ((*Byte & Mask) == Mask)
return 1;
else
return 0;
}

--
Allan Bruce
Dept. of Computing Science
University of Aberdeen
Aberdeen AB24 3UE
Scotland, UK
Nov 13 '05 #1
4 9130
"Allan Bruce" <al*****@TAKEAWAYf2s.com> wrote in message
news:bm**********@news.freedom2surf.net...
| Would the following functions work for bit manipulation?
....
| void BitSet(unsigned char *Byte, int Bit)
| {
| unsigned char Mask = 0x80; // all zeros with a 1 at the MSB
Ok if you want to number 0 as the most significant bit,
and 7 as the least significant. This is not the usual
convention I have seen in C: people usually think
in terms of ( 1<<bitPos ).

| if (Bit>7 || Byte==NULL)
| return;
|
| Mask = Mask >> Bit;
| *Byte = *Byte | Mask;

Ok. Note that you could write:
*Byte |= Mask; // but it's a matter of taste...
| }
|
| void BitClr(unsigned char *Byte, int Bit)
| {
| unsigned char Mask = 0x80; // all zeros with a 1 at the MSB
|
| if (Bit>7 || Byte==NULL)
| return;
|
| Mask = ~(Mask >> Bit);
| *Byte = *Byte & Mask;
| }
|
| int BitGet(unsigned char *Byte, int Bit)
| {
| unsigned char Mask = 0x80; // all zeros with a 1 at the MSB
|
| if (Bit>7 || Byte==NULL)
| return;
Error: you need to specify a return value here...

| Mask = Mask >> Bit;
| if ((*Byte & Mask) == Mask)
| return 1;
| else
| return 0;
Ok. But note that the last 4 lines are equivalent to:
return ( (*Byte & Mask)==Mask );
Or:
return ( *Byte & Mask ) ? 1 : 0;
| }
But all in all, your code is mostly ok.

Regards,
Ivan
--
http://ivan.vecerina.com
Nov 13 '05 #2

"Ivan Vecerina" <NONE_use_form@website_to_contact_me> wrote in message
news:3f********@news.swissonline.ch...
"Allan Bruce" <al*****@TAKEAWAYf2s.com> wrote in message
news:bm**********@news.freedom2surf.net...
| Would the following functions work for bit manipulation?
...
| void BitSet(unsigned char *Byte, int Bit)
| {
| unsigned char Mask = 0x80; // all zeros with a 1 at the MSB
Ok if you want to number 0 as the most significant bit,
and 7 as the least significant. This is not the usual
convention I have seen in C: people usually think
in terms of ( 1<<bitPos ).

| if (Bit>7 || Byte==NULL)
| return;
|
| Mask = Mask >> Bit;
| *Byte = *Byte | Mask;

Ok. Note that you could write:
*Byte |= Mask; // but it's a matter of taste...
| }
|
| void BitClr(unsigned char *Byte, int Bit)
| {
| unsigned char Mask = 0x80; // all zeros with a 1 at the MSB
|
| if (Bit>7 || Byte==NULL)
| return;
|
| Mask = ~(Mask >> Bit);
| *Byte = *Byte & Mask;
| }
|
| int BitGet(unsigned char *Byte, int Bit)
| {
| unsigned char Mask = 0x80; // all zeros with a 1 at the MSB
|
| if (Bit>7 || Byte==NULL)
| return;
Error: you need to specify a return value here...

| Mask = Mask >> Bit;
| if ((*Byte & Mask) == Mask)
| return 1;
| else
| return 0;
Ok. But note that the last 4 lines are equivalent to:
return ( (*Byte & Mask)==Mask );
Or:
return ( *Byte & Mask ) ? 1 : 0;
| }
But all in all, your code is mostly ok.

Regards,
Ivan


Thanks.

I am making a basic huffman coding program, which reads in all the bytes of
a file, sorts them by the frequency they appear in the file, then pairs the
lowest frequencies to produce a kind of tree.
When I pair them up, I am creating a binary code which adds a 1 at the
beginning if the node was the highest of the pair, otherwise it adds a 0 at
the beginning. It is this part that I have reversed so the code bits are
added at the end of the bit patters, but this will be reversed when
outputting to file.
Has anybody coded a basic huffman compression scheme? It would be
interesting to see how they write the info to file, since I have variable
length bit patterns (potentially 2 -> 255 bits). What I am doing is reading
each bit then adding it to the following function:

void Bytify(int xiBit) // takes bits in and once a full byte is recieved,
writes to file
{
static unsigned char lPosition = 0x80;
static unsigned char lByte = 0x0;

if (xiBit) // if the xi bit is set
lByte = lByte | lPosition; // then add it to the char

lPosition = lPosition >> 1; // next position for next time round

if (lPosition == 0x0) // if we are on the last position
{
fputc((int)lByte, fptr); // write byte to file
lPosition = 0x80; // and reset the postion and the new byte
lByte = 0x0;
}
}
One last thing, if I have the length of the bit field, I am using this to
find out the byte containing the bit, and the bit within that byte:

lBitPosition = loop%8;
lCharPosition = (loop - lBitPosition) / 8;

Where loop is going from 0 to BitPatternLength-1. Is this ok? Or is there a
better way to do it?
Thanks
Allan
Nov 13 '05 #3
Allan Bruce wrote:

Hi there,

Would the following functions work for bit manipulation?
I want to specify a byte and the bit of the byte
(from the MSB down to LSB) and either set it,
clear it or get what it is currently at. void BitSet(unsigned char *Byte, int Bit)
{
unsigned char Mask = 0x80; // all zeros with a 1 at the MSB

if (Bit>7 || Byte==NULL)
return;

Mask = Mask >> Bit;
*Byte = *Byte | Mask;
}


It's OK, except that it's eight_bit_centric.

#include <stdio.h>
#include <limits.h>

void BitSet(unsigned char *Byte, int Bit)
{
if (Bit > CHAR_BIT - 1 || Byte == NULL) {
return;
}
*Byte |= (((unsigned char)-1 >> 1) + 1) >> Bit;
}

--
pete
Nov 13 '05 #4
"Allan Bruce" <al*****@TAKEAWAYf2s.com> wrote in message
news:bm**********@news.freedom2surf.net...
| Has anybody coded a basic huffman compression scheme? It would be
| interesting to see how they write the info to file, since I have variable
| length bit patterns (potentially 2 -> 255 bits).
Well, it's been a long long time for me.
The approach I would take is more or less:

static unsigned char cur=0;
static int freeBits = 8; // # of available bits in *dst

void bitsWriter(unsigned long newbits, int bitCount)
{
while(bitCount>0) {
unsigned nbits = bitCount;
if( nbits>freeBits ) nbits = freeBits;
freeBits -= nbits;
bitCount -= nbits;
cur = (cur<<nbits)|(newbits>>bitCount);
if( freeBits==0 ) { // byte is complete
fputc((int)cur,fptr);
freeBits = 8;
}
}
}
//NB: a flush function needs to be added

Data bits are passed in 'newbits', first bit in MSB,
and last bit aligned on bit zero.
If a huffman code takes more than 32 bits, it will
need to be written using multiple calls.

The buffer 'cur' could be of type unsigned long (e.g. 32 bits)
if you are careful with endianess issues.

| What I am doing is reading
| each bit then adding it to the following function:
|
| void Bytify(int xiBit) // takes bits in and once a full byte is
recieved,
| writes to file
| {
| static unsigned char lPosition = 0x80;
| static unsigned char lByte = 0x0;
|
| if (xiBit) // if the xi bit is set
| lByte = lByte | lPosition; // then add it to the char
|
| lPosition = lPosition >> 1; // next position for next time round
|
| if (lPosition == 0x0) // if we are on the last position
| {
| fputc((int)lByte, fptr); // write byte to file
| lPosition = 0x80; // and reset the postion and the new byte
| lByte = 0x0;
| }
| }
Seems correct.
Might be slower as the function is called for each bit.

| One last thing, if I have the length of the bit field, I am using this to
| find out the byte containing the bit, and the bit within that byte:
|
| lBitPosition = loop%8;
| lCharPosition = (loop - lBitPosition) / 8;
Ok if 'loop' is positive, but the ' - lBitPosition ' part is unnecessary.
In C, integer divide will automatically round down the value.
So: lCharPosition = loop/8;

| Where loop is going from 0 to BitPatternLength-1.
| Is this ok? Or is there a better way to do it?
I would store and transmit the Huffman code word by word,
for efficiency reasons:

void sendCode( //NB: assuming 32-bit longs
int bitLen,
unsigned long codeBuf[32]) // 8*32 = 256 bits
{
while(bitLen>32) {
bitsWriter( codeBuf, 32);
++codeBuf;
bitLen-=32;
}
bitsWriter( codeBuf, bitLen ); // last (incomplete) word
}

But your code was correct. It is better to first write your encoder
in a way that you can easily understand, and then to look into
performance improvements...
Regards,
Ivan
--
http://ivan.vecerina.com
Nov 13 '05 #5

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

Similar topics

2
by: Marcus | last post by:
I am having some problems with trying to perform calculations on time fields. Say I have a start time and an end time, 1:00:00 and 2:30:00 (on a 24 hour scale, not 12). I want to find the...
4
by: Rune Johansen | last post by:
Hi. I'm doing some image manipulation in an applet using the example code on this page: http://www.akop.org/art/pixels3.htm However, I really want an application rather than an applet, I just...
3
by: Sam | last post by:
Hello, in my coding work I'm going to using a lot of matix manipulation, just basic matrix addition, multiplication, Gaussian method solving for roots, least square... But I don't know if there's...
9
by: I. Kobrinsky | last post by:
I'm new here. I started a personal password-program, a trial that includes username, logincounter and password. So my intention is to hide pwd while tipping. So I'm thinking about two popular...
9
by: Job | last post by:
Hi, I would like to find out what ASP/ASP.net can do with image manipulation. Does ASP have built in functions (eg. after upload to server) to manipulate images, like rotate, scale, crop etc.?...
4
by: WaterWalk | last post by:
Hello, I'm currently learning string manipulation. I'm curious about what is the favored way for string manipulation in C, expecially when strings contain non-ASCII characters. For example, if...
8
by: shotokan99 | last post by:
i have this situation. i have a query string: http://www.myquerystring.com?x=xxxxx what this url does is it will return or start downloading a .png file. what i wanted to do is trap this png...
0
by: L'eau Prosper Research | last post by:
Press Release: L'eau Prosper Research (Website: http://www.leauprosper.com) releases new TradeStation 8 Add-on - L'eau Prosper Market Manipulation Profiling Tools Set. L'eau Prosper Market...
0
by: L'eau Prosper Research | last post by:
NEW TradeStation 8 Add-on - L'eau Prosper Market Manipulation Profiling Tools Set By L'eau Prosper Research Press Release: L'eau Prosper Research (Website: http://www.leauprosper.com) releases...
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: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
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?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
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
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

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.