search for: 17c17

Displaying 4 results from an estimated 4 matches for "17c17".

Did you mean: 1717
2019 Oct 01
1
Improvement in hist command documentation
...main and xlab 2) make the word "label" explicitly appear in the documentation for the ylab key That way, people looking either for the word "label" or the word "Frequency" in hist?s help will get more chance to find the ylab key. Here is the diff with revision 77240 17c17 < xlab = xname, ylab, --- > xlab = xname, ylab = "Frequency", 65,66c65,66 < \item{main, xlab, ylab}{these arguments to \code{title} have useful < defaults here.} --- > \item{main, xlab, ylab}{to change the default value of the main title, > the labe...
2000 Aug 27
0
Patch for typo in os_types.h
...os_types.h, simply missing a "ty", I have pasted the diff below: Index: os_types.h =================================================================== RCS file: /usr/local/cvsroot/vorbis/include/vorbis/os_types.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -r1.1.1.1 -r1.2 17c17 < last mod: $Id: os_types.h,v 1.1.1.1 2000/08/28 03:16:27 don Exp $ --- > last mod: $Id: os_types.h,v 1.2 2000/08/28 03:19:04 don Exp $ 29c29 < pedef _G_int64_t int64_t; --- > typedef _G_int64_t int64_t; --- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepa...
1999 Apr 29
1
R-0.64.0 installation on SGI IRIX 6.5 machine
...simple-true.R > simple-true.Rout Comparing `simple-true.Rout' to `/usr/local/R-0.64.0/tests/simple-true.Rout.save' ... OK LC_ALL=C ../bin/R --vanilla < simple-tests.R > simple-tests.Rout Comparing `simple-tests.Rout' to `/usr/local/R-0.64.0/tests/simple-tests.Rout.save' ...17c17 < [1] FALSE --- > [1] TRUE gmake[1]: *** [simple-tests.Rout] Error 1 gmake[1]: Leaving directory `/usr/local/R-0.64.0/tests' gmake: [test-All] Error 2 (ignored) *********************************** The test that fails from the simple-test.Rout file is > Meps <- .Machine $ double.ep...
2012 Jul 15
3
[LLVMdev] clan -x assembler fails on vcvttsd2siq instruction
...much! Nobu Nobu Katayama nobu.katayama at ipmu.jp foo.c void foo(int *a, double *b, int n){ int i; for (i=0; i<8*n; i++){ a[i] = b[i]; } } foo_long.c void foo(long *a, double *b, int n){ int i; for (i=0; i<8*n; i++){ a[i] = b[i]; } } diff foo.s foo_long.s 17c17 < leaq 0(,%rax,4), %rdx --- > leaq 0(,%rax,8), %rdx 27,28c27,28 < vcvttsd2si %xmm0, %eax < movl %eax, (%rdx) --- > vcvttsd2siq %xmm0, %rax > movq %rax, (%rdx)