A bit is a single binary digit.

learn more… | top users | synonyms

0
votes
2answers
16 views

Store Series of 0s and 1s in MySQL database

I'm using MySql and Nodejs. I need to store a huge string made of only 0s and 1s. (This is a map grid. 0 = Can Move, 1 = Can't move.) Ex: ...
1
vote
3answers
34 views

Extracting certain bits from binary data

I have a binary number that looks like this: 00000000 00000000 00000011 00001101 = 781 integer value = integer name "packed" How am i able to extract each of those as separate integer values ...
0
votes
1answer
31 views

Java Could not reserve enough space for object heap

i have win7 32 bit java and 4 gb ram but still does java -Xmx4G -Xms4G -jar Minecraft.jar java -Xmx3G -Xms3G -jar Minecraft.jar java -Xmx2G -Xms2G -jar Minecraft.jar not work. error; Error ...
4
votes
1answer
45 views

Integer to Bit in SQL

I have an Integer field, and I need to divide it into Bits to the SQL(Firebird). For each byte of the Integer field should be a new field. For Example: Integer field: 7 = 00000111 Bit 1 field1: 1 ...
0
votes
3answers
31 views

Extracting certain bit from binary data

I have a binary number that looks like this: 00000000 00000000 00000011 00001101 = 781 integer value = integer name "packed" How am i able to extract each of those as separate integer values ...
0
votes
2answers
48 views

given a number print the next highest number which has same number of ones

given a number we have to find next highest number and previous number which has same number of 1 bits in their binary representation my solution is a brute force approach i.e incrementing the number ...
0
votes
1answer
31 views

how to get bytes representation for no ascii string? [duplicate]

Im traying to convert inputs strings to utf-8 using php, i know thats mbstring() and iconv() can do it, but my problems' when the strings are not in suported detection encoding list of mbstring. For ...
0
votes
1answer
38 views

Reserved bit meaning

In the file http://lxr.linux.no/#linux+v3.9.4/arch/x86/mm/fault.c#L29, there are some information about page fault error code: Page fault error code bits: bit 0 == 0: no page found 1: ...
0
votes
1answer
26 views

Assembler- reading bits

anyone could help me read 96 bits from user in assembly? For now I was reading numbers like this: mov $12, %edx mov $variable1, %ecx mov $STDIN, %ebx mov $SYSREAD, %eax int $0x80 Can anyone help me ...
-4
votes
1answer
52 views

reversing bits in number [closed]

can anybody explain this code. I am not able to understand this. unsigned int reverseBits(unsigned int num) { unsigned int count = sizeof(num) * 8 - 1;     unsigned int reverse_num = num;  ...
0
votes
0answers
8 views

Assembly- STDIN bit by bit

Greetings I'm programming recently in assembly and I encountered little issue: how can I read chain of 2x96 bits? mov $12, %edx mov $variable1, %ecx mov $STDIN, %ebx mov $SYSREAD, %eax int ...
1
vote
2answers
70 views

Sieve of Eratosthenes bit array

I am trying to find primes using Sieve of Eratosthenes with bit arrays, but I am using unsigned int array. I need to be able to generate upto 2,147,483,647 primes. My code works and can generate ...
1
vote
2answers
51 views

Checking if bits set to 1

I am trying to check whether the last 2 bits in a byte variable have been set to 1. This is what I have: if ((my_byte & (1 << 0)) == 1 && (my_byte & (1 << 1)) == 1) ...
0
votes
3answers
46 views

How to fastest count the number of set bits in php?

I just want to find some fastest set bits count function in the php. For example, 0010101 => 3, 00011110 => 4 I saw there is good Algorithm that can be implemented in c++. How to count the number of ...
0
votes
1answer
38 views

Bit Shifting a Byte

I have the following code: byte my_byte; my_byte |= (1 << 7); my_byte |= (1 << 6); I am trying to set the 8th and 7th bit in my_byte to 1. Using the debugger I found that after ...
0
votes
0answers
6 views

Calculate a Ratio on a Boolean Column

I have a vehicle table that has a FuelType column that is a boolean data type. 0 for diesel and 1 for petrol. I need a query to calculate the ratio of diesel to petrol vehicles as a percentage. ie ...
2
votes
2answers
57 views

Java 16 bit alignment

I'm currently dealing with some integer values that represent offsets within a file, the numbers I have need to be aligned on 16-bit boundaries, however I'm a little unsure how to do this. For ...
2
votes
1answer
57 views

Shortest Bit Sequence Logic

I am trying to understand how does the shortest bit sequence work. I mean the logic. I need to create a program for it but don't know actually what is this shortest bit sequence. I tried to google but ...
2
votes
3answers
90 views

sign extension in C, char>unsigned char

When i was reading K&R, i am confused in this code: #include "syscalls.h" int getchar(void) { char c; return (read(0, &c, 1) == 1) ? (unsigned char)c : EOF; } It is said unsigned ...
0
votes
0answers
34 views

Is it possible to use an array of bits or something like a std::bitset in CUDA?

I have an input array that is given to a kernel. Each thread works with one value of the array and either changes the value or doesn't change it at all according to an algorithm. I would like to find ...
2
votes
2answers
101 views

C programming bitfield in structure

Why is answer of it -1, 2, -3 ? (especially -3 ??? how come) struct b1 { int a:1; int b:3; int c:4; } ; int main() { struct b1 c = {1,2,13}; printf("%d, %d, %d",c.a,c.b,c.c); ...
0
votes
1answer
43 views

Read and write file bit by bit

There is a .jpg file for example or some other file. I want to read it bit by bit. I do this: open(FH, "<", "red.jpg") or die "Error: $!\n"; my $str; while(<FH>) { $str .= unpack('B*', ...
2
votes
2answers
72 views

why endianess matters among bits inside a byte?

the following is the IP structure from library on a linux machine struct ip { #if __BYTE_ORDER == __LITTLE_ENDIAN unsigned int ip_hl:4; /* header length */ ...
1
vote
1answer
76 views

print console characters faster

I have a function that accepts a number which will convert it to a 5x7 graphic representation of digits like this: Console.WriteLine(" ███ "); // byte: 0000 1110 Console.WriteLine("█ █"); // ...
1
vote
2answers
92 views

I need help on Bit Twiddling

I love to see people writing Bit Twiddling code but I just can't understand it at all. Gone through Hacker's Delight and http://graphics.stanford.edu/~seander/bithacks.html, but I failed to understand ...
-1
votes
1answer
47 views

compression zero bit sequences

I tried to find some library (C++) or algorithm which could compress array of bits with these properties: There are seqences of zero bits and sequences of bits, which carry the information (1 or 0). ...
1
vote
3answers
81 views

c++ bit operations how to print out 16, 32 bits

at the moment I have script which prints out numeric values into bits so for example print((short) 1); I get a value of 00000001, but how can I get for this a value like 00000001 00000000 and in ...
1
vote
1answer
52 views

How to do bitwise operation in perl to get the count of longest sequence of 0s between two 1s

Given an integer I would like to print bit by bit in perl. For instance given a number 9, i would like to get 1 0 0 1 How do i achive this. Essentially what I am trying to do is, to get the number ...
0
votes
2answers
199 views

Get value of CheckBox in GridView, Bit Datatype, asp.net

I am beginner and question or syntax may be silly. I have drawn a grid view having based on a SqlDataSource query. Converted a status field into Bit. a checkbox is automatically created. now how ...
0
votes
2answers
53 views

Java query with setString unable to insert bit type

Here is the issue I'm using Netbeans and MySQL latest version I'm using the BIT(1) Field type in MySQL to manage the Boolean types in my app When storing Data in the data base if I use this code ...
0
votes
2answers
29 views

How to divide a byte array into bit places

How can i store two numbers in a byte array or set the bits at diffrent positions? like divide the array in two blocks. one block of 5 bits and second of 3 positions. so storing 6 and 3 would look ...
1
vote
2answers
42 views

Bitwise left shifting unexpected result

I found some wired problems when I tried to do left shift for 32 times. The code in the test function should print the same results of 0x0, but I got "ffffffff, 0" instead. Anybody could give a hint ...
1
vote
1answer
48 views

Changing a value inside an array of bits

I have a "bitmap" lets say, 64 wide. Meaning 8 bits per Byte. 0000 0000 and let's say I want to activate the second bit, 0100 0000. I tried making an array of unsigned char and using memcpy. ...
2
votes
2answers
74 views

How to change bits inside Short

I have a short-variable in C# and want to change a specific bit. How can I do it the easiest way?
-7
votes
2answers
81 views

How can this number be converted into bit in c++? [closed]

I wish to convert numbers like 0x030C30C3 and 0x09249249 into bit. How can I do that?
0
votes
0answers
33 views

Bit packing blocks in Simulink?

Could anyone please explain to me what the bit packing blocks in Simulink do? I am currently learning programming, Simulink and control theory so I am not very proficient. I tried using the help ...
0
votes
0answers
28 views

Correct Bit reader?

This is a homework question from an assignment earlier this semester. I'm trying to study for my final coming up now. The program involves decoding a huffman tree from a file. The format for the ...
1
vote
3answers
78 views

Bit-fields confusion?

I am working with bit-fields in C and do not understand what is going on with them. I created this code but I do not understand why different things are coming up as usual. struct tB { unsigned ...
0
votes
0answers
17 views

Calculation units in EtherType frame field

The EterType ethernet frame field value is represent a payload field length in bits or bytes?
1
vote
2answers
110 views

How to convert a Seq[Byte] into an Array[Boolean] representing each bit in Scala

Is there a better way to convert a sequence of Bytes into an Seq[Boolean] where each element represents a bit from the Byte sequence? I'm currently doing this, but byte2Bools seems a little too ...
1
vote
2answers
76 views

Why does bitwise AND with byte in JAVA do this?

I'm messing around with bitwise operators, and I was trying to convert a negative byte to an unsigned 8 bit value, and this is what people suggested: System.out.println(-20 & 0xFF); //bitwise ...
3
votes
2answers
89 views

Handling bit arrays in C without padding

I'm writing a C program that runs on the Altera NIOS II processor. The program has to interface to a VHDL module on an FPGA test board through a specific memory location. My interface is provided ...
1
vote
2answers
82 views

Combine 2 numbers in a byte

I have two numbers (going from 0-9) and I want to combine them into 1 byte. Number 1 would take bit 0-3 and Number 2 has bit 4-7. Example : I have number 3 and 4. 3 = 0011 and 4 is 0100. Result ...
0
votes
3answers
28 views

Packing characters into bits?

I am trying to pack characters into bits in terms of 0's and 1's. I have looked up many websites about bit-packing but I did not get any of them. I just want a simple idea about bit-packing, and how ...
-2
votes
1answer
42 views

How to use xor and and in SPARC assembly

set 0xDEADBEEF, %o1 set 0x13579246, %o2 xor %o1, %o2, %o1 What will be in register o1? set 0xDEADBEEF, %o1 set 0x13579246, %o2 and %o1, %o2, %o1 What will be in register o1?
0
votes
3answers
99 views

C - Is there any way to check if a number is equal to 1 using bit checks?

This is more just a question of interest - I'm not sure how it would actually be applicable. Anyways - is it possible using bit-checks to see if a number is equal to 1?
2
votes
2answers
75 views

Convert string of 0s and 1s to byte in Python

I have a string representation of binary integers and I need bytes having the exact bit structure, to send over the sockets. For e.g. if I have a string of length 16 : 0000111100001010 then I need 2 ...
0
votes
0answers
73 views

BIT columns all “1” after a phpMyAdmin export/import

I have to import data from a MySQL database using phpMyAdmin. I have exported my database from my local machine using phpMyAdmin. After that I imported the script file to my host. All of data in the ...
0
votes
1answer
35 views

Convert number into 7 bit words with 96 states max

I would like to encode some information in Code128 barcodes which allow 96 different characters to be used in one slot. Therefore, 95 decimal would translate to 101 1111b and 96 to 1 000 0000b. Now I ...
0
votes
1answer
68 views

Why MySQL query does not properly insert BIT(50) bitfield

I'm implementing a bitfield column to my database on my current project. It's 50 bits long but it does not seem to properly insert the bitfield I create in PHP. This is the literal query (I tried ...

1 2 3 4 5 11