Tagged Questions
The shift tag has no wiki summary.
39
votes
3answers
5k views
What are Scala continuations and why use them?
So I just finished "Programming in Scala" and I've been looking into the changes between Scala 2.7 and 2.8. The one that seems to be the most important is the continuations plugin but I don't ...
22
votes
12answers
4k views
C# quickest way to shift array
How can i quickly shift all the items in an array one to the left, padding the end with null?
[0,1,2,3,4,5,6] would become [0,2,3,4,5,6,null]
Edit: I said quickly but I guess I meant efficiently. I ...
21
votes
2answers
403 views
Why are delimited continuation primitives named “shift” and “reset”?
I think I understand (in general) what shift and reset mean. However I do not understand why they are named so ? What do shift and reset as Delimited Continuation primitives have to do with "shift" ...
19
votes
5answers
255 views
Optimization levels in gcc changing c program behaviour
I'm seeing behaviour I don't expect when compiling this code with different optimization levels in gcc.
The function test should fill a 64 bit unsigned integer with ones, shift them shift_size bits ...
13
votes
8answers
2k views
Is 'shift' evil for processing Perl subroutine parameters?
I'm frequently using shift to unpack function parameters:
sub my_sub {
my $self = shift;
my $params = shift;
....
}
However, many on my colleagues are preaching that shift is actually ...
9
votes
2answers
6k views
PHP - pop first element of array instead of last (reveresed array_pop)?
Is there a PHP function that would 'pop' first element of array?
array_pop() pops last element, but I'd like to pop the first.
7
votes
1answer
456 views
Map shift-tab in vim to inverse tab in Vim
I've done some searching and found a wealth of information on binding keys in vim, but I can't find out, for sure, how to map shift-tab. Or what command I need to map it to for it to "tab backwards".
...
7
votes
7answers
824 views
Is a logical right shift by a power of 2 faster?
I would like to know if performing a logical right shift is faster when shifting by a power of 2. I am using C++.
For example, is
myUnsigned >> 4
any faster than
myUnsigned >> 3
I ...
6
votes
6answers
852 views
What is the fastest way to get the 4 least significant bits in a byte (C++)?
I'm talking about this:
If we have the letter 'A' which is 77 in decimal and 4D in Hex.
I am looking for the fastest way to get D.
I thought about two ways:
Given x is a byte.
x << 4; x >> ...
5
votes
4answers
97 views
best way to differentiate between untrue/unpassed args in Perl
I am trying to figure the best way to differeniate in Perl between cases where an argument has not been passed, and where an argument has been passed as 0, since they mean different things to me.
...
5
votes
2answers
123 views
A complex key for guavas Cache (shifting)
I have a point object:
class Point {
final int x,y;
...
}
Because these points will be used/created all over the place in my code, I want to start using guavas cache. Unfortuinally the ...
5
votes
2answers
200 views
C standard on negative zero (1's complement and signed magnitude)
All of these functions gives the expected result on my machine. Do they all work on other platforms?
More specifically, if x has the bit representation 0xffffffff on 1's complement machines or ...
5
votes
4answers
222 views
Is a union more efficient than a shift on modern compilers?
Consider the simple code:
UINT64 result;
UINT32 high, low;
...
result = ((UINT64)high << 32) | (UINT64)low;
Do modern compilers turn that into a real barrel shift on high, or optimize it to a ...
5
votes
6answers
286 views
Bitshifting Java, please explain
I'm trying to understand how bit shift works. Can someone please explain the meaning of this line:
while ((n&1)==0) n >>= 1;
where n is an integer and give me an example of a n when the ...
4
votes
2answers
131 views
How do you get multiple arguments in Perl functions?
In my code, I'm been using the fairly primitive method of extraction parameters from a function call as follows:
sub addSix ($$$$$$) {
my ($a, $b, $c, $d, $e, $f) = (shift, shift, shift, shift, ...
4
votes
4answers
117 views
Google Chrome console.log out of sequence?
Can someone explain the following two outputs?
Code 1:
console.log(itemsAry);
//loadNextItem();
function loadNextItem(){
var item = itemsAry.shift();
console.log(item);
}
Result:
...
4
votes
1answer
119 views
Programming “enter” and “shift-enter” for EditText using a soft keyboard
I am developing an Android application that makes use of EditText (Multiline). The devices I am testing it on lack hard keyboards, so as a result I (obviously) use the soft keyboard. When I ...
4
votes
2answers
101 views
Does it matter where a shift stands in a reset block?
Suppose, there is a reset block with a single shift:
val r = reset {
// do smth. 1
shift {...}
// do smth. 2
// do smth. 3
}
Is it correct that I place the shift after "do smth. 2" or ...
4
votes
1answer
141 views
In C, for example, why is second operand of shift allowed to be signed?
Note: This question is all about the signedness of the second operand of bit shift operators << and >>. Not at all about the first operand.
CERT INT34-C, in part: Do not shift a negative number ...
4
votes
6answers
195 views
C: clever way to “shift” a matrix?
I have an integer matrix that should act like a buffer:
x = {{0, 0, 0, 0, 0}, {1, 1, 1, 1, 1}, {2, 2, 2, 2, 2}};
Now if I add a new row {3, 3, 3, 3, 3}, the new matrix should look like:
x = {{1, 1, ...
4
votes
4answers
260 views
Circular Shifts on Strings in Bash
I have a homework assignment where I need to take input from a file and continuously remove the first word in a line and append it to the end of the line until all combinations have been done. I ...
4
votes
5answers
260 views
How do I shift an array of items up by 4 places in Javascript
How do I shift an array of items up by 4 places in Javascript?
I have the following string array:
var array1 = ["t0","t1","t2","t3","t4","t5"];
I need a function convert "array1" to result in:
// ...
4
votes
4answers
5k views
In C Left shift (char) 0xFF by 8 and cast it to int
On left shift of (char) 0xff by 8 and casting it to int we get -256 or 0xffffff00.
Can somebody explain why this should happen?
#include <stdio.h>
int main (void)
{
char c = 0xff;
...
4
votes
12answers
3k views
Where can I find a bit shifting guide for C?
I have looked at http://stackoverflow.com/questions/141525/absolute-beginners-guide-to-bit-shifting but I still find the concept of bit shifting difficult to understand.
Can someone point me in the ...
3
votes
1answer
426 views
Verilog Barrel Shifter
I want to create a 64-bit barrel shifter in verilog (rotate right for now). I want to know if there is a way to do it without writing a 65 part case statement? Is there a way to write some simple code ...
3
votes
5answers
495 views
Perl shift operator simple question
What's the purpose of the following two lines of perl??
my $host = shift || 'localhost';
my $port = shift || 200;
That should return localhost and port 10. What is the shift keyword??
3
votes
2answers
106 views
Reverse Engineering, Left Bit shift by seven
I've been trying to reverse engineer a function of a game but I'm kinda confused. I'm pretty new to reverse engineering (I'm using ollydbg btw) so I don't really know about all the tricks and details ...
3
votes
3answers
698 views
JavaScript can't capture “SHIFT+TAB” combination
For whatever reason I can't capture "SHIFT+TAB" combination.
I am using the latest jQuery.
Same result if I use other ajax/javascript, etc.
Here is a simple example that should work as I currently ...
3
votes
7answers
603 views
PHP: 'rotate' an array?
is it possible to easily 'rotate' an array in PHP ?
Like this:
1, 2, 3, 4 -> 2, 3 ,4 ,1
Is there some kind of built-in PHP function for this?
3
votes
1answer
237 views
WPF ContextMenu using (Shift-Right-Click)
I have a question with the "ContextMenu" in WPF. Is there a way to have the context menu pop up only if a "Shift-Right-Click" was performed??
I have been looking all over the place for this. The ...
3
votes
1answer
433 views
ctrl+click or shift+click not always firing the onclick event
I recently discovered that different browsers handle the onclick event differently when the control of shift key is pressed. Same thing for following links with the middle mouse button.
<a ...
3
votes
3answers
742 views
How find a variable value in MOD expression?
9 = 2^X mod 11
What is X and how do you find X?
Its related to finding the plain text in RSA algorithm and I'm writing a C program for it.
3
votes
5answers
1k views
C unsigned int array and bit shifts
If i have an array of short unsigned ints.
Would shifting array[k+1] left by 8 bits, put 8 bits into the lower half of array[k+1]?
Or do they simply drop off as they have gone outside of the ...
3
votes
3answers
735 views
Left Shift Overflow on 68k/x86?
I heard that the Motorola 68000 and Intel x86 architectures handle overflow from left shifting differently. Specifically the 68k LSL vs. the Intel SAL/SHL assembly instructions.
Does anyone know the ...
2
votes
5answers
112 views
Shifting Elements in an Array
I have an array of objects, and I am trying to pull one element to the top and shift the rest down by one.
Assume I have an array of size 10, and I am trying to pull the fifth element. The fifth ...
2
votes
3answers
168 views
c get nth byte of integer
I know you can get the first byte by using
int x = number & ((1<<8)-1);
or
int x = number & 0xFF;
But I don't know how to get the nth byte of an integer.
For example, 1234 is ...
2
votes
5answers
165 views
Javascript SHIFT and POP on Associative Array
Using a regular array I am able to grab the image src from an array using shift() and pop(); I would like to do the same thing using an associative array to add a name and id.
Single Array
var ...
2
votes
3answers
62 views
PHP array : renumber elements when new element added
I have a PHP array with elements:
$myarray = array ( "tom", "dick", "Harry" );
. I need to keep the array fixed in size of just 3 elements
. I need to add a new element "jerry" such that the array ...
2
votes
4answers
197 views
ASCII character from VK_Code
I have a small WIN32 C-Application in which i work with the KBDLLHOOKSTRUCT structure. This structure contains the VK-Code for a pressed key.
I try to convert this to an ASCII-Character. For this i ...
2
votes
4answers
185 views
What does assigning 'shift' to a variable mean?
Example:
use strict;
my $file = shift;
open( IN, $file ) || die "Unable to open $file\n";
open( OUT, ">$file.$$" ) or die $!;
What is going on with the my $file = shift?
2
votes
4answers
291 views
Arithmetic Bit Shift of Double Variable Data Type in C
I am trying to arithmetic bit shift a double data type in C. I was wondering if this is the correct way to do it:
NOTE: firdelay[ ][ ] is declared in main as
double firdelay[8][12]
void ...
2
votes
1answer
105 views
Problem with SInt32 and <<
I've got this simple piece of code:
char data[4] = { 0x13, 0x34, 0xad, 0xff };
int s = 0;
SInt32 tmp = data[s++]<<24;
printf("tmp= %x\n",tmp);
tmp += (data[s++]<<16);
printf("tmp= ...
2
votes
1answer
182 views
Delphi. How to shift Frames using TreeView?
Please help me with my question.
I have TreeView and Frames, how can I shift them if I click on an item of TreeView?
Is it better to use PageControl (PageControl1.Pages[i].TabVisible := false;) ...
2
votes
1answer
167 views
Shift right “>>” in C99 [closed]
Possible Duplicate:
Weird behavior of right shift operator
Hello
Why both numbers from this function are printed the same? It is not a cyclic shift.
unsigned int i=0x89878685;
int main()
...
2
votes
4answers
214 views
bit shifting in C
int x = 2;
x = rotateInt('L', x, 1); // should return 4
x = rotateInt('R', x, 3); // should return 64
Here is the code, can someone check it and let me know what the error is?
Compilation is ...
2
votes
1answer
438 views
Perl pack/unpack/shift
I've been having this problem in Perl for a few days now, and after scouring countless man pages, perldocs and googling too many search terms, hopefully someone here can help me out.
I am given two ...
2
votes
2answers
470 views
Bitwise Shifting in C
I've recently decided to undertake an SMS project for sending and receiving SMS though a mobile.
The data is sent in PDU format - I am required to change ASCII characters to 7 bit GSM alphabet ...
2
votes
2answers
894 views
Is there a way to allow paste from the clipboard using Shift-Insert on top of CTRL-V?
I know that you can use the context menu using a right-mouse-click in a control to choose to cut, copy, paste, etc. I've also noticed that you can use the windows keyboard shortcuts CTRL-C for Copy ...
2
votes
4answers
135 views
uninterlace bits from 16 bit value
I have a 16 bit value with its bits "interlaced".
I want to get an array of 8 items (values 0 to 3) that stores the bits in this order:
item 0: bits 7 and 15
item 1: bits 6 and 14
item 2: bits 5 ...
2
votes
4answers
1k views
How do you determine if a character requires the shift key to be down to be typed?
I am writing some code to type strings using the Robot class. Everything is mostly good (well, I have to use a big switch statement to get character keycodes), except some keys don't have keycodes, ...