0
votes
6answers
532 views
SQL SERVER | Bitwise operations on an int/smallint/tinyint field
I was wondering if you can do bitwise operations on an int/uint fields in SQL SERVER?
1
vote
5answers
105 views
Bitwise Operation and Usage
x = 1 # 0001
x << 2 # Shift left 2 bits: 0100
# Result: 4
x | 2 # Bitwise OR: 0011
# Result: 3
x & 1 # Bitwise AND: 0001
# Result: 1
I can …
0
votes
3answers
57 views
Simulate a 128-bit unsigned integer in SQL and C# using a 64-bit signed value?
Take this scenario: You have a few flag enumerations in C# tied to (and in fact generated from) Enum-ish tables in SQL Server. Say you are a distributor, and you allow your reselle …
5
votes
8answers
1k views
Rounding off to nearest power of 2
I want to write a function that returns the nearest upper power of 2 number. For example if my input is 789, the output should be 1024. Is there any way of achieving this without u …
1
vote
3answers
107 views
Difference between ^ Operator in JS and Python
I need to port some JS code which involves Math.random()*2147483648)^(new Date).getTime(). While it looks like for smaller numbers, the python function and the JS function are equi …
0
votes
5answers
199 views
Return zero for negative integers
A friend just throw some code similar to following C# code:
int i = ...;
return i < 0 ? 0 : i;
That made me think. There's any "different" way to return zero for negative int …
4
votes
6answers
186 views
Is there any advantage to using ‘<< 1’ instead of ‘* 2’ ?
I've seen this a couple of times, but it seems to me that using the bitwise shift left hinders readability. Why is it used? Is it faster than just multiplying by 2?
0
votes
3answers
85 views
Python bitwise operations confusion
I came up with this "magic string" to meet the ID3 tagging specification:
The ID3v2 tag size is encoded with four bytes where the most significant bit (bit 7) is set to zero in …
9
votes
9answers
1k views
Branchless code that maps zero, negative, and positive to 0, 1, 2
Write a branchless function that returns 0, 1, or 2 if the difference between two signed integers is zero, negative, or positive.
Here's a version with branching:
int Compare(int …
0
votes
4answers
99 views
Sql Server 2000: Return “true” or “false” based on any 1 of 25 columns being “true”
Hi,
I have to create a query that checks across several different columns, and if any of them have a 1, I want to return true.
Ideal output would be along the lines of:
ID:55
…
0
votes
3answers
243 views
How do I make a bitwise and in a bat-file?
I have tried with the following, but it just says "& was unexpected at this time."
@echo off
:enter-input
echo Please enter a number between 1 and 15:
echo 1 = Selection one
e …
0
votes
3answers
33 views
bit pack Int16 into a Ushort VB.net
I have to pack and unpack a 16bit Int from/into a Ushort in VB.net
This is how I thought I could do it (doesn't work, gives me overflow exception)
'Pack Int16 into ushort '
Dim u …
1
vote
3answers
132 views
Is it possible to create a generic bitwise enumeration ‘IsOptionSet()’ method?
The below code makes it easy to pass in a set HtmlParserOptions and then check against a single option to see if it's been selected.
[Flags]
public enum HtmlParserOptions
{
No …
1
vote
2answers
54 views
Do .net FlagsAttribute enums need to be manually valued?
To allow for different formatting options on a method that displays a news story, I've created an enumeration that can be passed in to specify how it gets displayed.
[Flags]
priva …
1
vote
3answers
122 views
Bitwise enum cast return value not expected
I have the following enum:
[Flags]
public enum PermissionLevel {
User = 1,
Administrator = 2,
ITStaff = 3,
Manager = 4,
SuperAdministra …
