search for: mrs

Displaying 20 results from an estimated 354 matches for "mrs".

Did you mean: mr
2003 Aug 04
1
hclust() and agnes() method="average" divergence (PR#3648)
...lk, seed" Mr Mupunwa 0 0 1 0 0 0 0 1 1 0 0 0 1 0 1 0 0 0 1 0 1 0 MMB40 1378 Nzende Nyanga Mangezi Manicaland grasshoppers "food, = beverage" seed Mr Kambara 0 1 0 0 0 0 0 1 1 0 0 0 1 0 0 1 0 0 0 1 0 1 MMB46 1384 Nzende Nyanga Mangezi Manicaland low resistance to rotting = food seed Mrs Chitimas 0 1 0 0 0 0 0 1 1 0 0 0 1 0 1 0 0 0 1 0 0 1 MMB47 1385 Musoswe Nyanga Mangezi Manicaland food seed Mrs Chitimas 0 = 0 0 1 0 0 1 0 1 0 0 0 1 0 1 0 0 0 1 0 0 1 MMB54 1392 Nhongoro Nyanga Mangezi Manicaland black sports on head food = " seed, stalk" Mrs P Mangezi 0 0 1 0 0 0 0 1...
2012 Feb 06
1
ggplot2 geom_polygon fill
Hi everyone, i've been trying to make a special plot with ggplot2, but I can't get it to fill the polygon I'd like to see filled so very very much. I want to display the difference or change in the distribution of the modified Rankin Scale between two groups. mRS is a scale for disability or daily activities competence. It looks like this. http://r.789695.n4.nabble.com/file/n4361919/rankinplot.png I just wish the polygons in between the bars would fill in the same colors as the bar segments do. Interestingly, in the example provided by the geom_polygon...
2014 Jan 03
2
Question about --files-from= and folder structure
...ion in the number of destination files that can be read from my thumb drive, I'm not looking to preserve the original file structure (actually, I'm looking to sync *only the files* to the new destination directory). The source files are all subfolders under /backup/Music: ./Adrian Legg/Mrs. Crowe's Blue Waltz/Paddy Goes To Nashville.mp3 ./Adrian Legg/Mrs. Crowe's Blue Waltz/Sour Grapes.mp3 ./Adrian Legg/Wine, Women & Waltz/Divorcee's Waltz.mp3 ./Adrian Legg/Wine, Women & Waltz/Mrs. Crowe's Blue Waltz.mp3 ./Adrian Legg/Wine, Women & Waltz/Nora Handley's...
2011 Aug 30
2
[LLVMdev] cortex-m{3,4} special registers
...reasons listed out below and so I won't be able to submit it until tomorrow. The actual fix itself was very straightforward, but exposed a failing in the FixedLenInstructionDecoder in that it does not support instruction predicates such as "IsThumb2". Generally this is fine, however MRS has different encodings in v{6,7}m and v{6,7}{a,r} - the encodings are not sufficiently different to deterministically tell them apart without subtarget specific information. I can encode that as instruction predicates (, Requires<[IsMClass]>, assuming I've added a new predicate 'IsM...
2013 Jul 17
2
[LLVMdev] Help with subtarget features and context-dependent asm parsers
...lt; /home/richards/llvm/src/test/MC/ARM/basic -thumb2-instructions.s | /home/richards/llvm/build/Debug+Asserts/bin/FileCheck /home/richards/llvm/src/test/MC/ARM/basic-thumb2-instructions.s -- Exit Code: 1 Command Output (stderr): -- <stdin>:1356:9: error: instruction requires: armv7m mrs r8, apsr ^ <stdin>:1357:9: error: instruction requires: armv7m mrs r8, cpsr ^ <stdin>:1358:9: error: instruction requires: armv7m mrs r8, spsr ^ and the second was the same for basic-arm-instructions.s. The problem seems to be that the MSRMas...
2011 Aug 28
2
[LLVMdev] cortex-m{3,4} special registers
...d from /p/nuttx/trunk/nuttx/include/nuttx/sched.h:54: In file included from /p/nuttx/trunk/nuttx/include/nuttx/irq.h:67: In file included from /p/nuttx/trunk/nuttx/include/arch/irq.h:60: /p/nuttx/trunk/nuttx/include/arch/armv7-m/irq.h:186:6: error: invalid operand for instruction "\tmrs %0, primask\n" ^ <inline asm>:1:14: note: instantiated into assembly here mrs r5, primask ^ This appears to be due to llvm lacking support for the various cortex-m{3,4} special registers. ("primask", "faultmask",...
2011 Aug 29
0
[LLVMdev] cortex-m{3,4} special registers
Hi Kurt, The assembly parser doesn't (yet) handle these, you're right. Currently, the MRS instruction is split into two variants in the ARMInstrThumb2.td file, t2MRS and t2MRSsys, one for the user mode version reading cpsr and one for the system mode version reading spsr. MSR, by contrast, has a custom parse method for the mask operand since it's a bit more complex than an either/or...
2011 Aug 31
0
[LLVMdev] cortex-m{3,4} special registers
...o I won't be able to submit it until tomorrow. > > The actual fix itself was very straightforward, but exposed a failing in the > FixedLenInstructionDecoder in that it does not support instruction predicates > such as "IsThumb2". > > Generally this is fine, however MRS has different encodings in v{6,7}m and > v{6,7}{a,r} - the encodings are not sufficiently different to deterministically > tell them apart without subtarget specific information. > > I can encode that as instruction predicates (, Requires<[IsMClass]>, assuming > I've added...
2009 Oct 09
2
[LLVMdev] fudging the top-level Makefile
...ory. > > Why not: > > $ RC_ARCHS="x86" make > echo Apple Build. > Apple Build. > $ make > echo Standard Build > Standard Build > $ cat Makefile > ifneq ($(RC_ARCHS),) > include Makefile.apple > else > all: > echo Standard Build > endif > mrs $ cat Makefile.apple > all: > echo Apple Build. > > It leaves Makefile mostly alone, all except for three lines at the > top and one line at the end of it. Because the existing top-level Makefile includes "Makefile.config". In a normal build, the configure step creat...
2009 Jan 28
3
[LLVMdev] [cfe-commits] r63168 - /cfe/trunk/Driver/clang.cpp
2009/1/28 Mike Stump <mrs at apple.com>: > Author: mrs > Date: Tue Jan 27 20:43:35 2009 > New Revision: 63168 > > URL: http://llvm.org/viewvc/llvm-project?rev=63168&view=rev > Log: > Add a preliminary version number. > > Modified: > cfe/trunk/Driver/clang.cpp > > Modified: cfe/t...
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 | ror} which could gain
2009 Feb 03
0
[LLVMdev] rol/ror llvm instruction set
...M, 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), %eax roll %eax ret ?
2006 Jan 28
1
Collection_select problem
I have my customer object with title attribute : @customer.title Where title is "Mr","Mrs", etc.... In edit/create from i have: @titles=["Mr","Mrs","Miss"] how do i create a selection box that sets itself to the value of @customer.title?? This doesn''t work: <%=collection_select(:customer, :title, @titles)%> Any help would be apprec...
2009 Oct 09
0
[LLVMdev] fudging the top-level Makefile
...86" make >> echo Apple Build. >> Apple Build. >> $ make >> echo Standard Build >> Standard Build >> $ cat Makefile >> ifneq ($(RC_ARCHS),) >> include Makefile.apple >> else >> all: >> echo Standard Build >> endif >> mrs $ cat Makefile.apple >> all: >> echo Apple Build. >> >> It leaves Makefile mostly alone, all except for three lines at the >> top and one line at the end of it. > > Because the existing top-level Makefile includes "Makefile.config". ? Only if you w...
2017 Jul 14
3
Conduct Network Analysis
Greeting. Dear Mr/Mrs/Miss, I want to create a network by using R but I only have a table that contain OTU ID and the abundance value of two samples ONLY. Isn't possible? If can, which package can be used? Greatly appreciated to any suggestions and helps. Thank you. Best regards, Kang Chin Yi [[alternative HTM...
2009 Feb 02
0
[LLVMdev] [cfe-commits] r63168 - /cfe/trunk/Driver/clang.cpp
...bed... Name: Picture 7.png Type: image/png Size: 13645 bytes Desc: not available URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20090202/eb726ff5/attachment.png> -------------- next part -------------- On Jan 28, 2009, at 7:44 AM, Piotr Rak wrote: > 2009/1/28 Mike Stump <mrs at apple.com>: >> Author: mrs >> Date: Tue Jan 27 20:43:35 2009 >> New Revision: 63168 >> >> URL: http://llvm.org/viewvc/llvm-project?rev=63168&view=rev >> Log: >> Add a preliminary version number. >> >> Modified: >> cfe/trunk/Dri...
2002 Oct 20
3
Corrupt Files
...FAT32-Partition, created with Vorbis-1.0-final under linux. The other question is: is there a way/tool to restore the data? Here's what ogginfo gives me (for 2 of the corrupt files; one of them is very small (108K); if you want me to I can post it/mail it): Processing file "/oggs/Wendy - Mrs. Landers.ogg"... Warning: Hole in data found at approximate offset 4500 bytes. Corrupted ogg. Error: No ogg data found in file "/oggs/Wendy - Mrs. Landers.ogg". Input probably not ogg. <p><p>Processing file "/oggs/U2 - The Best Of 1980-1990/U2 & B.B. King - Whe...
2015 Oct 20
5
[Bug 92556] New: System hangs at visiting WebGL site
...Product: Mesa Version: 11.0 Hardware: x86-64 (AMD64) OS: Linux (All) Status: NEW Severity: normal Priority: medium Component: Drivers/DRI/nouveau Assignee: nouveau at lists.freedesktop.org Reporter: mrs.sub at gmail.com QA Contact: nouveau at lists.freedesktop.org Created attachment 119007 --> https://bugs.freedesktop.org/attachment.cgi?id=119007&action=edit Two files: 'kmsg' and 'Xorg.0.log.old' When I visit any WebGL site, after it's done loading everything...
2013 Feb 20
1
generate variable y to produce excess zero in ZIP analysis
Dear Mr/Mrs I am Lili Puspita Rahayu, student from magister third level of Statistics in Bogor Agriculture University. Mr/ Mrs, now I'm analyzing the Zero inflated Poisson (ZIP), which is a solution of the Poisson regression where the response variable (Y) has zero excess. ZIP now I was doing did not use...
2009 Feb 17
3
[LLVMdev] svn pre-commit hook: help needed
On Tue, Feb 17, 2009 at 2:35 PM, Mike Stump <mrs at apple.com> wrote: > On Feb 17, 2009, at 2:21 PM, Scott Michel wrote: > > - remove trailing whitespace, > > - expand tabs to spaces, > > I'd argue for not changing anything, just fail it. > Trimming whitespace is innocuous, at best. Expanding tabs to spaces, I mig...