You are hereBlogs / David Grant's blog / Ugly Bit-Wise Arithmetic

Ugly Bit-Wise Arithmetic


By David Grant - Posted on 02 March 2007

I just had a WTF moment today. If I ever see code like this again I swear I will go postal:

answer = new long[(size + 0x3F) >>> 6];

one simpler ways to write this would be:

answer = new long[size/64 + 1];

This is java by the way, not C.

Post new comment

The content of this field is kept private and will not be shown publicly.
  • Allowed HTML tags: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd> <blockquote> <s> <img> <h2> <h3>
  • Lines and paragraphs break automatically.
  • You can enable syntax highlighting of source code with the following tags: <code>, <blockcode>. The supported tag styles are: <foo>, [foo].
  • Images can be added to this post.
  • You may use [inline:xx] tags to display uploaded files or images inline.
  • You may use [view:name=display=args] tags to display views.

More information about formatting options

CAPTCHA
This question is for testing whether you are a human visitor and to prevent automated spam submissions.
  _____   _____        _    _____        _   _____ 
|_ _| |_ _| | | / ____| | | |_ _|
| | | | | | | | | | | |
| | | | _ | | | | _ | | | |
_| |_ _| |_ | |__| | | |____ | |__| | _| |_
|_____| |_____| \____/ \_____| \____/ |_____|

Enter the code depicted in ASCII art style.