Displaying 20 results from an estimated 134 matches for "21,10".
Did you mean:
51,10
2019 Oct 17
2
Static assert fails when compiler for i386
...oes smooth when compile for x86_64.
Following changes fixes this.
diff --git a/clang/lib/Headers/__stddef_max_align_t.h
b/clang/lib/Headers/__stddef_max_align_t.h
index e3b439285d0..46f705a09c3 100644
--- a/clang/lib/Headers/__stddef_max_align_t.h
+++ b/clang/lib/Headers/__stddef_max_align_t.h
@@ -21,6 +21,10 @@ typedef struct {
__attribute__((__aligned__(__alignof__(long long))));
long double __clang_max_align_nonce2
__attribute__((__aligned__(__alignof__(long double))));
+ #ifdef __i386__
+ typedef double xx __attribute__((vector_size(16)));
+ xx __clang_max_align_nonce3...
2008 Apr 29
0
[LLVMdev] [PATCH] use-diet for review
...eneric tag type for (at least 32 bit) pointers
+enum Tag { noTag, tagOne, tagTwo, tagThree };
Why such a generic pointer tagging mechanism? This should either be
specific to the application or in a shared location (e.g. include/llvm/
Support).
+++ include/llvm/Instructions.h (Arbeitskopie)
@@ -21,10 +21,10 @@
#include "llvm/DerivedTypes.h"
#include "llvm/ParameterAttributes.h"
+#include "llvm/BasicBlock.h"
Why the #include? Please avoid this if possible.
Why are operand lists stored as templates instead of arrays? "Op<0>"
is very strang...
2008 Apr 29
5
[LLVMdev] [PATCH] use-diet for review
Hi all,
I have reported more than enough about the space savings achieved
and the associated costs, here comes the current patch for review.
Since this one is substantially smaller than the previous one, I did
not cut it in pieces. The front part is about headers and the rest
the .cpp and other files.
Cheers,
Gabor
-------------- next part --------------
An embedded and charset-unspecified
2001 Jul 11
2
[PATCH]: Cygwin: Allow sshd to switch user context without password
...========================================================
RCS file: /cvs/openssh_cvs/openbsd-compat/bsd-cygwin_util.c,v
retrieving revision 1.4
diff -u -p -r1.4 bsd-cygwin_util.c
--- openbsd-compat/bsd-cygwin_util.c 2001/04/13 14:28:42 1.4
+++ openbsd-compat/bsd-cygwin_util.c 2001/07/11 20:35:40
@@ -21,10 +21,14 @@ RCSID("$Id: bsd-cygwin_util.c,v 1.4 2001
#include <fcntl.h>
#include <stdlib.h>
+#include <sys/utsname.h>
#include <sys/vfs.h>
#include <windows.h>
#define is_winnt (GetVersion() < 0x80000000)
+#define ntsec_on(c) ((c) && str...
2014 Oct 31
3
[PATCH] Fix, simplify out-of-tree build/install for bash completions
---
bash/Makefile.am | 54 +++++++++++++++---------------------------------------
1 file changed, 15 insertions(+), 39 deletions(-)
diff --git a/bash/Makefile.am b/bash/Makefile.am
index 10f0861..780da64 100644
--- a/bash/Makefile.am
+++ b/bash/Makefile.am
@@ -21,6 +21,10 @@ scripts = \
guestfish \
guestmount \
virt-alignment-scan \
+ virt-rescue \
+ virt-resize
+
+symlinks = \
virt-builder \
virt-cat \
virt-df \
@@ -30,53 +34,21 @@ scripts = \
virt-inspector \
virt-log \
virt-ls \
- virt-rescue \
- virt-resize \
virt-sparsify \
virt-s...
2015 Oct 26
0
[PATCH 1/4] subdev/pmu/fuc: add gk104
...d7,
+ 0xd4f100dd,
+ 0x1bf47000,
+/* 0x0067: nsec */
+ 0xf900f8f5,
+ 0xf080f990,
+ 0x88cf2c87,
+/* 0x0071: nsec_loop */
+ 0x2c97f000,
+ 0xbb0099cf,
+ 0x9eb80298,
+ 0xf41ef406,
+ 0x90fc80fc,
+/* 0x0086: wait */
+ 0x90f900f8,
+ 0x87f080f9,
+ 0x0088cf2c,
+/* 0x0090: wait_loop */
+ 0xf402eeb9,
+ 0xdab90421,
+ 0x04adfd02,
+ 0xf406acb8,
+ 0x97f0120b,
+ 0x0099cf2c,
+ 0xb80298bb,
+ 0x1ef4069b,
+/* 0x00b1: wait_done */
+ 0xfc80fce2,
+/* 0x00b7: intr_watchdog */
+ 0x9800f890,
+ 0x96b003e9,
+ 0x2a0bf400,
+ 0xbb9a0a98,
+ 0x1cf4029a,
+ 0x01d7f00f,
+ 0x028c21f5,
+ 0x0ef494bd,
+/* 0x00d5: intr_watchdog_next_tim...
2002 Jan 02
2
macosx (lots of little changes)
...AC_MSG_ERROR([could not find dlopen() needed by libao sound
drivers
+# your system may not be supported.])
])
])
<p>macosx doesn't seem to have pthread_sigmask(). this is not a perfect
solution, I can't ^C out of ogg123.
--- ogg123/buffer.c.orig Wed Jan 2 01:21:20 2002
+++ ogg123/buffer.c Tue Jan 1 16:15:31 2002
@@ -75,7 +75,11 @@
sigaddset(&set, SIGINT);
sigaddset(&set, SIGTSTP);
sigaddset(&set, SIGCONT);
+#ifdef __APPLE__
+ if (sigprocmask(SIG_BLOCK, &set, NULL) != 0 )
+#else
if (pthread_sigmask(SIG_BLOCK, &set,...
2002 Jan 02
2
macosx (lots of little changes)
...AC_MSG_ERROR([could not find dlopen() needed by libao sound
drivers
+# your system may not be supported.])
])
])
<p>macosx doesn't seem to have pthread_sigmask(). this is not a perfect
solution, I can't ^C out of ogg123.
--- ogg123/buffer.c.orig Wed Jan 2 01:21:20 2002
+++ ogg123/buffer.c Tue Jan 1 16:15:31 2002
@@ -75,7 +75,11 @@
sigaddset(&set, SIGINT);
sigaddset(&set, SIGTSTP);
sigaddset(&set, SIGCONT);
+#ifdef __APPLE__
+ if (sigprocmask(SIG_BLOCK, &set, NULL) != 0 )
+#else
if (pthread_sigmask(SIG_BLOCK, &set,...
2020 Mar 02
2
[PATCH 28/51] drm/bochs: Drop explicit drm_mode_config_cleanup
...s/bochs_drv.c
index addb0568c1af..e18c51de1196 100644
--- a/drivers/gpu/drm/bochs/bochs_drv.c
+++ b/drivers/gpu/drm/bochs/bochs_drv.c
@@ -7,6 +7,7 @@
#include <drm/drm_drv.h>
#include <drm/drm_atomic_helper.h>
+#include <drm/drm_managed.h>
#include "bochs.h"
@@ -21,10 +22,7 @@ static void bochs_unload(struct drm_device *dev)
{
struct bochs_device *bochs = dev->dev_private;
- bochs_kms_fini(bochs);
bochs_mm_fini(bochs);
- kfree(bochs);
- dev->dev_private = NULL;
}
static int bochs_load(struct drm_device *dev)
@@ -32,7 +30,7 @@ static int bochs...
2002 Aug 14
0
automake 1.6 compatability patch
...am
===================================================================
RCS file: /usr/local/cvsroot/vorbis-tools/oggdec/Makefile.am,v
retrieving revision 1.7
diff -u -r1.7 Makefile.am
--- oggdec/Makefile.am 11 Jul 2002 02:45:37 -0000 1.7
+++ oggdec/Makefile.am 14 Aug 2002 17:12:18 -0000
@@ -2,16 +2,21 @@
AUTOMAKE_OPTIONS = foreign
-mans = oggdec.1
+man_pages = oggdec.1
oggdecsources = oggdec.c
if BUILD_OGGDEC
+mans=$(man_pages)
+else
+mans=
+endif
datadir = @datadir@
localedir = $(datadir)/locale
DEFS = -DLOCALEDIR=\"$(localedir)\" @DEFS@
-bin_PROGRAMS = oggdec
+bin_PRO...
2015 Mar 14
0
[PATCH 0/1] EFI access from Com32 modules
...f.c32 cptime.c32 debug.c32
+ hexdump.c32 poweroff.c32 cptime.c32 debug.c32 elf_bios_efi.c32
TESTFILES =
diff -uprN a/efi/build-gnu-efi.sh b/efi/build-gnu-efi.sh
--- a/efi/build-gnu-efi.sh 2014-10-06 10:27:44.000000000 -0600
+++ b/efi/build-gnu-efi.sh 2015-03-13 13:07:51.577939127 -0600
@@ -21,23 +21,23 @@ fi
ARCH="$1"
objdir="$(readlink -f $2)"
-if [ ! -e ../version.h ]; then
- printf "build-gnu-efi.sh: Cannot be run outside Syslinux object tree\n"
- pwd
- exit 1
-fi
-
-(
- cd ../..
- git submodule update --init
-)
+#if [ ! -e ../version.h ]; t...
2016 Jan 01
0
[PATCH v2 30/32] virtio_ring: update weak barriers to use __smp_xxx
...nstead of homegrown ifdef hacks.
Cc: Peter Zijlstra <peterz at infradead.org>
Cc: Alexander Duyck <alexander.duyck at gmail.com>
Signed-off-by: Michael S. Tsirkin <mst at redhat.com>
---
include/linux/virtio_ring.h | 25 ++++---------------------
1 file changed, 4 insertions(+), 21 deletions(-)
diff --git a/include/linux/virtio_ring.h b/include/linux/virtio_ring.h
index 67e06fe..f3fa55b 100644
--- a/include/linux/virtio_ring.h
+++ b/include/linux/virtio_ring.h
@@ -12,7 +12,7 @@
* anyone care?
*
* For virtio_pci on SMP, we don't need to order with respect to MMIO
-...
2020 Feb 19
0
[PATCH 29/52] drm/bochs: Drop explicit drm_mode_config_cleanup
...s/bochs_drv.c
index addb0568c1af..e18c51de1196 100644
--- a/drivers/gpu/drm/bochs/bochs_drv.c
+++ b/drivers/gpu/drm/bochs/bochs_drv.c
@@ -7,6 +7,7 @@
#include <drm/drm_drv.h>
#include <drm/drm_atomic_helper.h>
+#include <drm/drm_managed.h>
#include "bochs.h"
@@ -21,10 +22,7 @@ static void bochs_unload(struct drm_device *dev)
{
struct bochs_device *bochs = dev->dev_private;
- bochs_kms_fini(bochs);
bochs_mm_fini(bochs);
- kfree(bochs);
- dev->dev_private = NULL;
}
static int bochs_load(struct drm_device *dev)
@@ -32,7 +30,7 @@ static int bochs...
2007 Aug 05
0
[PATCH] Enable lguest drivers in Kconfig
...implied by selecting lguest support).
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
---
drivers/lguest/Kconfig | 2 ++
1 file changed, 2 insertions(+)
===================================================================
--- a/drivers/lguest/Kconfig
+++ b/drivers/lguest/Kconfig
@@ -21,8 +21,10 @@ config LGUEST_GUEST
config LGUEST_NET
tristate
+ default y
depends on LGUEST_GUEST && NET
config LGUEST_BLOCK
tristate
+ default y
depends on LGUEST_GUEST && BLOCK
2003 Oct 23
0
GotoIf Problems
I have the following in my extensions.conf:
exten => 21,1,NoOp(${CALLERIDNUM})
exten => 21,2,GotoIf($[${CALLERIDNUM} = ""]?21|4:21|9)
exten => 21,4,Playback(/etc/asterisk/interactive-services/no-callerid)
exten => 21,5,Wait(1)
exten => 21,6,Playback(/etc/asterisk/interactive-services/no-callerid)
exten => 21,7,Wait(1)
exten =>...
2007 Aug 05
0
[PATCH] Enable lguest drivers in Kconfig
...implied by selecting lguest support).
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
---
drivers/lguest/Kconfig | 2 ++
1 file changed, 2 insertions(+)
===================================================================
--- a/drivers/lguest/Kconfig
+++ b/drivers/lguest/Kconfig
@@ -21,8 +21,10 @@ config LGUEST_GUEST
config LGUEST_NET
tristate
+ default y
depends on LGUEST_GUEST && NET
config LGUEST_BLOCK
tristate
+ default y
depends on LGUEST_GUEST && BLOCK
2007 Aug 02
1
libswfdec-gtk/swfdec_gtk_loader.c
libswfdec-gtk/swfdec_gtk_loader.c | 1 +
1 files changed, 1 insertion(+)
New commits:
diff-tree 4d1ee537d4cd388a8b21003496d3511df6f0549d (from ba4f1da69d0c74c45b0b4d92330f2203d258bb49)
Author: Benjamin Otte <otte at gnome.org>
Date: Thu Aug 2 13:06:55 2007 +0200
keep a reference to the message, since it's unreffed automagically
diff --git a/libswfdec-gtk/swfdec_gtk_loader.c b/libswfdec-gtk/swfde...
2007 Aug 04
2
[Q]lguest git repo location?
HI Rusty,
I wanted to play with lguest. As it was recently merge upstream by
Linus, i took a look and the location looks like driver/lguest*.
Unfortunately my local git repo cannot get the 2.6.23-rc2 changes from
upstream somehow :-/.[duh... says "Cannot get the repository state
from http://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git"].
i do not know what i am doing
2007 Aug 04
2
[Q]lguest git repo location?
HI Rusty,
I wanted to play with lguest. As it was recently merge upstream by
Linus, i took a look and the location looks like driver/lguest*.
Unfortunately my local git repo cannot get the 2.6.23-rc2 changes from
upstream somehow :-/.[duh... says "Cannot get the repository state
from http://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git"].
i do not know what i am doing
2007 Jul 06
1
Recursion in R ...
...(1,k) = k
Nnk(n,k) = Nnk(n-1,k) + sum[r= 1 to k](Nnk(n-1,r))
So I slickly wrote a recursive definition:
Nnk<-function(n,k){
if(n==1) {return(k)} else {
R<-0;
for(r in (1:k)) R<-(R+Nnk(n-1,k-r+1,depth))
}
return(R)
}
I then ran a few test cases, to check timing etc.:
Nnk(21, 7) 34 seconds
Nnk(21, 8) 120 seconds
Nnk(21, 9) 384 seconds
Nnk(21,10) 1141 seconds
I then complacently set it to work out the number I happened
to really want:
Nnk(21,20)
24 hours later, no result; and an extra "test line" (not
shown above) at the start of the function had prodce...