Displaying 20 results from an estimated 90000 matches similar to: "shift-starting applications"
2006 Feb 08
1
AJAX Event Handlers, like shift key pressing...
Hey everyone,
I thought I''d seen a demo of an AJAX app that responded to control
key presses, like performing a different action when the shift key is
pressed. What I''d really like to do is have a div change when the
shift key is pressed (to change the text of the link inside it to
indicate what new action will occur when that link is clicked with
shift held down). Is
2006 Jan 06
1
Shift to a Menu
Can you do like this?
-----------
When booting....
{Shift] Pressed -> Go to a menu system, not boot: prompt.
Nothing Pressed -> Just booting a default, without time out.
-----------
--- Okajima, Jun. Tokyo, Japan.
2008 Nov 13
1
[LLVMdev] Shift operation expansion
Hi,
My target supports shift with amount 1 only i.e. to shift a value by 5
bits, I need to have a loop with shift in the body. Similarly for the
unknown amount of shift we need to have a loop for shift.
1) How can I insert this loop in DAG for shift operation?
2) Is there a way where I can have a call to a function and later
expand to the shift code?
Which would be the
2008 Apr 14
1
shift, alt, or ctlr + mouse click not working in 0.9.59?
Since the latest wine, I noticed that pressing down shift or alt or ctlr and clicking the mouse doesn't have the intended effect.
In games like civ4, shift or alt clicking is used for city queues and selecting multiple units, nether of which work, and in warcraft3, pressing alt will show the health bars of units, but this goes away as soon as the mouse is clicked.
2009 Dec 10
2
[LLVMdev] Doubt related to scheduling with shift operation
Hi,
For the case, please see the ".ll" file attached. Here I am doing a
right shift on 32 bits by constant amount (specifically by 8).
My target is an 8-bit target. Therefore while performing a shift (right
or left) on long (32 bits) it is legalized in 4 smaller units. After
performing the shift, this value should be stored at the same location.
So order of the stores does
2013 Oct 30
1
[LLVMdev] Optimization bug - spurious shift in partial word test
In the situation where a partial word is tested, lets say >0, by shifting
left to get the sign bit into the msb and testing llvm is inserting a
spurious right shift instruction.
For example this IR:
...
%0 = load i64* %a.addr, align 8
%shl = shl i64 %0, 28
%cmp = icmp sgt i64 %shl, 0
...
results in
...
shlq $28, %rdi
sarq $28, %rdi ; <<< spurious shift
2019 Oct 01
2
Shift-by-signext - sext is bad for analysis - ignore it's use count?
Thanks for taking a look!
On Tue, Oct 1, 2019 at 9:09 PM Philip Reames <listmail at philipreames.com> wrote:
> On 9/27/19 1:40 PM, Roman Lebedev via llvm-dev wrote:
> > In https://reviews.llvm.org/D68103 the InstCombine learned that shift-by-sext
> > is simply a shift-by-zext.
>
> Just to make sure I'm following, the reasoning here is that the shift
> amount must
2004 Nov 29
1
library(fields) world shift function not working anymore
Hi there.
I just upgraded to 2.01 on Mac OS 10.3.6. I used to use the command
(on R 1.9.x):
world(ylim=c(-30,30), xlim = c(0,360), shift=TRUE, add=TRUE)
to draw a world outline over my image plots. My data uses longitude
from (0, 360) so I need to use the shift function. After I upgraded, I
get the following error:
> world(ylim=c(-30,30), xlim = c(0,360), shift=TRUE, add=TRUE)
Error
2019 Sep 27
2
Shift-by-signext - sext is bad for analysis - ignore it's use count?
In https://reviews.llvm.org/D68103 the InstCombine learned that shift-by-sext
is simply a shift-by-zext. But the transform is limited to single-use sext.
We can quite trivially get a case where there are two shifts by the same sext:
https://godbolt.org/z/j6mO3t <- We should handle those cases.
In https://reviews.llvm.org/D68103#1686130 Sanjay Patel notes that this
sext is intrusive for
2007 Apr 01
1
Problem setting shift value in tcindex filter on big endian machine
Hi all,
I''m trying to get some DiffServ QoS shaping to work on an XScale
machine, running big endian. I''m setting it up with tc. Using the
tcindex filter I found that regardless what shift value I enter, only
''0'' is returned when I list the filters afterwards. The very same rules
work fine on my (little endian) PC.
Looking at the code
2017 Oct 09
1
[PATCH] build: build mlaugeas with -Wno-shift-negative-value
The embedded copy of ocaml-augeas does Val_int(-1), which in turns
triggers warnings in newer GCC versions about "left shift of negative
value". The issue actually lies in the OCaml headers (mlvalues.h in
particular), and it was fixed in newer OCaml versions.
Since the code is actually correct, disable -Wshift-negative-value with
-Wno-shift-negative-value (checking whether the compiler
2007 Nov 23
0
[ wxruby-Bugs-15845 ] ctrl+shift+t crashes empty styled textctrl
Bugs item #15845, was opened at 2007-11-23 00:02
You can respond by visiting:
http://rubyforge.org/tracker/?func=detail&atid=218&aid=15845&group_id=35
Category: None
Group: None
Status: Open
Resolution: None
Priority: 3
Submitted By: Christopher Bludau (count_cb)
Assigned to: Nobody (None)
Summary: ctrl+shift+t crashes empty styled textctrl
Initial Comment:
If one pressed
2008 Jan 26
1
Shift count warning messages
Hi Jim,
Thanks a lot for investigating. It definitely makes sense now. I'll fix
the problem now. Is there any other place where you see that same (or
similar) problem?
Jean-Marc
Jim Crichton a ?crit :
> Jean-Marc,
>
> I dug into this further, and found that the warning occurred when PSHR32
> had a shift greater than 15.
>
> in fixed_generic.h, PSHR32 is defined as:
>
2019 Oct 01
2
Shift-by-signext - sext is bad for analysis - ignore it's use count?
The thing is, we *don't* "not demand" those high bits.
We *don't* not care what's in those bits - IR shifts don't mask their
shift amounts.
I.e we can't replace `x >> (32-y)` with `x >> (-y)`,
which would be legal transform should we not demand those bits.
We very much demand them. We just know those bits to be zero.
And i'm not sure how to convey
2010 Apr 20
2
shift and pop equivalent in R
Dear All,
I am wondering is there any shift (or pop or push or unshift) equivalent in R?
For example,
shift(x) # should return x[1], and x becomes x[-1]
Thanks a lot.
Best Regards,
Xie Chao
2019 Feb 26
2
funnel shift, select, and poison
If I got poison propagation right, it's probably only by luck!
Hopefully, the funnel shift bug is fixed here:
https://reviews.llvm.org/rL354905
Nuno, IIUC this means that you do *not* need to change the funnel shift
semantics in Alive.
So I think that means we're still on track to go with John's suggestion
that only select and phi can block poison?
(I don't know of any
2006 Nov 18
1
negative LPC shift
>From the FLAC format description:
<5> Quantized linear predictor coefficient shift needed in bits
(NOTE: this number is signed two's-complement).
What happens when the shift is negative?
Problem is that libFLAC decoder (and possibly all other decoders) uses
always '>>' operator and this operator shifts only to right.
(int)x >> -1 is the same as (int)x
2019 Feb 25
2
funnel shift, select, and poison
Don't we need to distinguish funnel shift from the more specific rotate?
I'm not seeing how rotate (a single input op shifted by some amount) gets
into trouble like funnel shift (two variables concatenated and shifted by
some amount).
Eg, if in pseudo IR we have:
%funnel_shift = fshl %x, %y, %sh ; this is problematic because either x or
y can be poison, but we may not touch the poison when
2016 Jan 08
2
[PATCH] doc: specify that quantized LPC shift must be non-negative
Refs http://sourceforge.net/p/flac/bugs/424/
---
doc/html/format.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/doc/html/format.html b/doc/html/format.html
index 8598941..2ce82c2 100644
--- a/doc/html/format.html
+++ b/doc/html/format.html
@@ -1578,7 +1578,7 @@
<5>
</td>
<td>
- Quantized linear predictor coefficient shift needed
2008 Jun 04
2
estimate phase shift between two signals
Hi,
Are there any functions in R that could be used to estimate the phase-shift
between two semi-sinusoidal vectors? Here is what I have tried so far, using
the spectrum() function -- possibly incorrectly:
# generate some fake data, normalized to unit circle
x <- jitter(seq(-2*pi, 2*pi, by=0.1), amount=pi/8)
# functions defining two out-of-phase phenomena
f1 <- function(x)