Displaying 20 results from an estimated 88 matches for "rol".
Did you mean:
rorl
2009 Aug 19
0
font size on graphics
...m x axis.
One other problem i have is that often '10' on the botom x axis is not
printed.
I tried to patch it up this way (below), yet its unsatisfactory, sometimes
it works sometimes it don't.
axis(1,at=c(28:30),c('','10','') , padj=-1.5 ,
cex.axis=ifelse((rol==1),setting[rol,8]-0.15,setting[rol,8]-0.1))
And finaly, when creating the graphs, i prefer the size of graf_1_small
it pastes easaly to a word documentn ( 2 one one line),
yet the labels are not always clear to read, so i copy the one without
suffix to word then i size it to 75%, wich means it...
2009 Aug 19
0
font size on graphics question (correction in example,sorry)
...m x axis.
One other problem i have is that often '10' on the botom x axis is not
printed.
I tried to patch it up this way (below), yet its unsatisfactory, sometimes
it works sometimes it don't.
axis(1,at=c(28:30),c('','10','') , padj=-1.5 ,
cex.axis=ifelse((rol==1),setting[rol,8]-0.15,setting[rol,8]-0.1))
And finaly, when creating the graphs, i prefer the size of graf_1_small
it pastes easaly to a word documentn ( 2 one one line),
yet the labels are not always clear to read, so i copy the one without
suffix to word then i size it to 75%, wich means it...
2020 May 22
2
[PATCH] Optimized assembler version of md5_process() for x86-64
...) X[0] */
+ mov %edx, %r11d /* (NEXT STEP) z' = %edx */
+ xor %ecx, %r11d /* y ^ ... */
+ lea -680876936(%eax,%r10d),%eax /* Const + dst + ... */
+ and %ebx, %r11d /* x & ... */
+ xor %edx, %r11d /* z ^ ... */
+ mov 1*4(%rsi),%r10d /* (NEXT STEP) X[1] */
+ add %r11d, %eax /* dst += ... */
+ rol $7, %eax /* dst <<< s */
+ mov %ecx, %r11d /* (NEXT STEP) z' = %ecx */
+ add %ebx, %eax /* dst += x */
+ xor %ebx, %r11d /* y ^ ... */
+ lea -389564586(%edx,%r10d),%edx /* Const + dst + ... */
+ and %eax, %r11d /* x & ... */
+ xor %ecx, %r11d /* z ^ ... */
+ mov 2*4(%rsi),%r10d /*...
2008 Sep 18
1
PNG file don't run on mac's?
Een ingesloten tekst met niet-gespecificeerde tekenset is gescrubt ...
Naam: niet beschikbaar
URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20080918/ed87aa31/attachment.pl>
2009 Feb 03
2
[LLVMdev] rol/ror llvm instruction set
Hi,
I was looking around the LLVM instruction set and I failed to find ROL and ROR instructions. Is there any plans on adding these instructions to LLVM?
The reason that I am asking is for cryptographical algorithms which are becoming ever more important rotation is a major operation. Thus including such instruction could reduce 3 instructions {shl, shr, or} into {rol |...
2009 Feb 03
2
[LLVMdev] rol/ror llvm instruction set
On Feb 3, 2009, at 2:35 PMPST, Mike Stump wrote:
> On Feb 3, 2009, at 2:28 PM, Kasra wrote:
>> I was looking around the LLVM instruction set and I failed to find
>> ROL and ROR instructions. Is there any plans on adding these
>> instructions to LLVM?
>
> Not sure what you mean:
He's referring to the LLVM IR, I think, and it's true that doesn't
have rotates. The LLVM back ends do know about rotate instructions on
targets that have them...
2009 Feb 03
0
[LLVMdev] rol/ror llvm instruction set
On Feb 3, 2009, at 2:28 PM, Kasra wrote:
> I was looking around the LLVM instruction set and I failed to find
> ROL and ROR instructions. Is there any plans on adding these
> instructions to LLVM?
Not sure what you mean:
$ cat t.c
unsigned int rol(unsigned int i) {
return i << 1 | i >> 31;
}
mrs $ clang -S t.c -O2
mrs $ cat t.s
.text
.align 4,0x90
.globl _rol
_rol:
movl 4(%esp), %ea...
2009 Feb 03
0
[LLVMdev] rol/ror llvm instruction set
On Tue, Feb 3, 2009 at 2:45 PM, Dale Johannesen <dalej at apple.com> wrote:
>
> On Feb 3, 2009, at 2:35 PMPST, Mike Stump wrote:
>
>> On Feb 3, 2009, at 2:28 PM, Kasra wrote:
>>> I was looking around the LLVM instruction set and I failed to find
>>> ROL and ROR instructions. Is there any plans on adding these
>>> instructions to LLVM?
>>
>> Not sure what you mean:
>
> He's referring to the LLVM IR, I think, and it's true that doesn't
> have rotates. The LLVM back ends do know about rotate instructions on...
2009 Feb 03
6
[LLVMdev] rol/ror llvm instruction set
--- On Tue, 2/3/09, Bill Wendling <isanbard at gmail.com> wrote:
> From: Bill Wendling <isanbard at gmail.com>
> Subject: Re: [LLVMdev] rol/ror llvm instruction set
> To: "LLVM Developers Mailing List" <llvmdev at cs.uiuc.edu>
> Cc: kasra_n500 at yahoo.com
> Date: Tuesday, February 3, 2009, 2:52 PM
> On Tue, Feb 3, 2009 at 2:45 PM, Dale Johannesen
> <dalej at apple.com> wrote:
> >
> > On...
2009 Feb 04
0
[LLVMdev] rol/ror llvm instruction set
On Feb 3, 2009, at 3:54 PM, Kasra wrote:
> I guess the backends could know about the instructions. But I am not
> convinced why it is beneficial not to have ROR and ROL instructions
> within llvm.
>
How would it be beneficial to have them, if we already generate them
at the target level properly? Adding instructions "just because"
doesn't seem wise.
-Owen
2009 Feb 04
1
[LLVMdev] rol/ror llvm instruction set
--- On Tue, 2/3/09, Owen Anderson <resistor at mac.com> wrote:
> From: Owen Anderson <resistor at mac.com>
> Subject: Re: [LLVMdev] rol/ror llvm instruction set
> To: kasra_n500 at yahoo.com, "LLVM Developers Mailing List" <llvmdev at cs.uiuc.edu>
> Date: Tuesday, February 3, 2009, 4:20 PM
> On Feb 3, 2009, at 3:54 PM, Kasra wrote:
> > I guess the backends could know about the
> instructions. But I...
2006 Jan 21
3
help... why can''t Iuse data from two tables in the same view
..., and seem to be making a
very silly mistake somewhere here. Can anybody help?
I am trying to write an application which involves ''exercises'', each of
which consists of several ''templates''. This is based on MySQL tables
with these names. I have models and controllers, built with the Rails
Scaffold, for both these tables. The ''exercises'' controller is called
Setup-controller and the templates controller is called
Design_controller.
My problem is that I want to show, on the same web page, data for a
given Exercise, and for the Templates...
2009 Feb 04
0
[LLVMdev] rol/ror llvm instruction set
On Tue, Feb 3, 2009 at 3:54 PM, Kasra <kasra_n500 at yahoo.com> wrote:
>
> I guess the backends could know about the instructions. But I am not convinced why it is beneficial not to have ROR and ROL instructions within llvm.
>
I guess I could ask you the opposite question: What is the benefit of
having these? They would have to be mappable to the source language in
some way. I'm not sure about Ada, but I don't know of a "rotate"
operator for any of the C variants, or any o...
2009 Feb 04
0
[LLVMdev] rol/ror llvm instruction set
Dale Johannesen wrote:
>On Feb 3, 2009, at 2:35 PMPST, Mike Stump wrote:
>> On Feb 3, 2009, at 2:28 PM, Kasra wrote:
>>> I was looking around the LLVM instruction set and I failed to find
>>> ROL and ROR instructions. Is there any plans on adding these
>>> instructions to LLVM?
>>
>> Not sure what you mean:
>
> He's referring to the LLVM IR, I think, and it's true that doesn't
> have rotates. The LLVM back ends do know about rotate instructions on...
2009 Feb 08
0
[LLVMdev] rol/ror llvm instruction set
Thanks Nick for the compile.
I think the case for rol/ror is closed. Since LLVM optomises the code into rotations anyway.
-- Kasra
2009 Feb 04
1
[LLVMdev] rol/ror llvm instruction set
--- On Tue, 2/3/09, Bill Wendling <isanbard at gmail.com> wrote:
> From: Bill Wendling <isanbard at gmail.com>
> Subject: Re: [LLVMdev] rol/ror llvm instruction set
> To: kasra_n500 at yahoo.com, "LLVM Developers Mailing List" <llvmdev at cs.uiuc.edu>
> Date: Tuesday, February 3, 2009, 4:17 PM
> On Tue, Feb 3, 2009 at 3:54 PM, Kasra
> <kasra_n500 at yahoo.com> wrote:
> >
> > I guess the bac...
2009 Feb 04
2
[LLVMdev] rol/ror llvm instruction set
Hi Bill,
> I guess I could ask you the opposite question: What is the benefit of
> having these? They would have to be mappable to the source language in
> some way. I'm not sure about Ada, but I don't know of a "rotate"
> operator for any of the C variants, or any other high-level language..
Ada has rotate.
Ciao,
Duncan.
2009 Feb 04
0
[LLVMdev] rol/ror llvm instruction set
On Tue, Feb 3, 2009 at 10:23 PM, Duncan Sands <baldrick at free.fr> wrote:
> Hi Bill,
>
>> I guess I could ask you the opposite question: What is the benefit of
>> having these? They would have to be mappable to the source language in
>> some way. I'm not sure about Ada, but I don't know of a "rotate"
>> operator for any of the C variants, or
2015 Nov 19
2
rol/ror IR support question
Hi all,
Is it planned to add support of rotations to IR?
Thanks,
Aleksey Zasenko
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20151119/c897b935/attachment.html>
2007 Jan 05
1
Upgrading to Windows 2003 servers
...obal parameters
[global]
workgroup = RAD
server string = Samba server
netbios name = REC2
security = SHARE
max log size = 50
log file = /usr/local/samba/var/log.%m
socket options = TCP_NODELAY
wins server = 159.233.190.90
[rols]
comment = rec2:/global/rols
path = /global/rols
guest ok = yes
read only = no
create mask = 0777
[maps]
comment = rec2:/global/rols/rols4/maps
path = /global/rols/rols4/maps
guest ok = yes
read only = no
create ma...