search for: nlongs

Displaying 20 results from an estimated 35 matches for "nlongs".

Did you mean: nlogs
2006 Apr 04
1
imaging and contouring
Dear R'Helpers and Colleagues, I have looked in the documentation, asked to some colleagues in the lab, but was unable to solve the following difficulty. I am running R on a iMac G5 with OS 10.4. The file below (73 rows x 144 col) shows the values of a climatic index on the globe with a grid of 2,5 ? x 2,5 ? (NA = no value): ? With image() and map() and running the following
2007 Feb 16
13
negate the regexp in validates_format_of
Railsters: ActiveRecord''s validation system puts other database systems to shame. However, the newbies might not know how to write a regexp that excludes a match, instead of tests for it. Understand - I''m just asking this question to help them. I have been using Regexps since ''grep'' on Xenix! But the newbies here might not know how to do this:
2012 Oct 03
0
ggplot2 problem
Dear all, We are trying the code from the paper (http://www.jstatsoft.org/v40/i01/) to build stars for each point on the map (plyr package). It uses ggplot2 package and works fine for ozone data but we can't get it work for our data (probably due to misunderstanding of some issues). Our data is SO2 time series for each point on the map with 0.25 degrees step. It has both NA, negative and
2009 Jan 13
0
[ANNOUNCE] xf86-input-evdev 2.1.1
Alan Coopersmith (1): Remove xorgconfig & xorgcfg from See Also list in man page Matt Helsley (2): rename NBITS to NLONGS to reflect its actual meaning Fix FOO_MAX off-by-one Michael Chapman (1): Disable middle mouse button emulation when a middle mouse button event is registered Peter Hutterer (2): Finalize MB emu (and wakeup handlers) before closing the fd. evdev 2.1.1 Yan Li (1): Fi...
2010 Sep 28
1
A problem with plotting a long expression in ylab ?
Hello, It seems that there is a problem when plotting an expression in the ylab of a plot in case it is too long. Example: plot(1) title(ylab = "test looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong ") # work plot(1) title(ylab = expression(paste("test (% of 360" *degree, ")"))) # works plot(1) title(ylab = expression(paste("test
1999 May 13
0
dos to unix file conversion...
When the world was young, "Norm Long" <nlong@worldvision.org> carved some runes like this: > Greetings, was wondering how to handle problems regarding viewing files on > our hp server through notepad. When we view files via note pad we all see > the carriage return(unix) making the file a little difficult to read. If > samba had a some kind of file conversion
1998 Sep 11
3
SAMBA digest 1809
> From: Gary Stainburn <gary.stainburn@ringways.co.uk> > To: "Samba Mailing List (E-mail)" <samba@samba.anu.edu.au> > Subject: smbtar multiple machines > Message-ID: <01BDDD6E.ABFF0580@garys.computer.leeds> > > Hi all, > > I'm just looking at using smbtar to backup the Win95 PC's on my network, and would like usability ideas please. >
2009 Mar 02
1
[ANNOUNCE] xf86-input-evdev 2.1.99.1
...yboard: Disable kernel autorepeat Fernando Carrijo (1): Fix error message Julien Cristau (1): Fix TestBit() on 64bit Julien Plissonneau Duquene (1): EvdevCacheCompare: ignore changes in current device position Matt Helsley (4): Add pressure valuator rename NBITS to NLONGS to reflect its actual meaning Fix FOO_MAX off-by-one General axis valuator support. Michael Chapman (1): Disable middle mouse button emulation when a middle mouse button event is registered Paulo Cesar Pereira de Andrade (1): Janitor: make distcheck, .gitignore. Peter Bre...
2017 Dec 12
0
[PATCH v19 3/7] xbitmap: add more operations
...amp; IS_ALIGNED(start, 8) && + __builtin_constant_p(nbits & 7) && IS_ALIGNED(nbits, 8)) + memset((char *)map + start / 8, 0, nbits / 8); + else + __bitmap_clear(map, start, nbits); +} + static inline void bitmap_fill(unsigned long *dst, unsigned int nbits) { unsigned int nlongs = BITS_TO_LONGS(nbits); diff --git a/tools/include/linux/kernel.h b/tools/include/linux/kernel.h index 0ad8844..3c992ae 100644 --- a/tools/include/linux/kernel.h +++ b/tools/include/linux/kernel.h @@ -13,6 +13,8 @@ #define UINT_MAX (~0U) #endif +#define IS_ALIGNED(x, a) (((x) & ((typeof(x))...
2017 Nov 03
0
[PATCH v17 2/6] radix tree test suite: add tests for xbitmap
...amp; IS_ALIGNED(start, 8) && + __builtin_constant_p(nbits & 7) && IS_ALIGNED(nbits, 8)) + memset((char *)map + start / 8, 0, nbits / 8); + else + __bitmap_clear(map, start, nbits); +} + static inline void bitmap_fill(unsigned long *dst, unsigned int nbits) { unsigned int nlongs = BITS_TO_LONGS(nbits); diff --git a/tools/include/linux/kernel.h b/tools/include/linux/kernel.h index 77d2e94..21e90ee 100644 --- a/tools/include/linux/kernel.h +++ b/tools/include/linux/kernel.h @@ -12,6 +12,8 @@ #define UINT_MAX (~0U) #endif +#define IS_ALIGNED(x, a) (((x) & ((typeof(x))...
1999 Jul 01
1
SAMBA digest 2150
samba@samba.org wrote: > SAMBA Digest 2150 > > For information on unsubscribing see http://samba.org/listproc/ > Topics covered in this issue include: > > 1) Autoconnect on restarts doesn't work > by =?iso-8859-1?Q?Str=F6mberg_Peter?= <Peter.Stromberg@scania.com> > 2) Re: How to backup from Win to Linux using smb? >
2017 Dec 21
0
[PATCH v20 3/7 RESEND] xbitmap: add more operations
...) && IS_ALIGNED(start, 8) && + __builtin_constant_p(nbits) && IS_ALIGNED(nbits, 8)) + memset((char *)map + start / 8, 0, nbits / 8); + else + __bitmap_clear(map, start, nbits); +} + static inline void bitmap_fill(unsigned long *dst, unsigned int nbits) { unsigned int nlongs = BITS_TO_LONGS(nbits); diff --git a/tools/include/linux/kernel.h b/tools/include/linux/kernel.h index 0ad884452c5c..3c992ae15440 100644 --- a/tools/include/linux/kernel.h +++ b/tools/include/linux/kernel.h @@ -13,6 +13,8 @@ #define UINT_MAX (~0U) #endif +#define IS_ALIGNED(x, a) (((x) & ((...
2017 Dec 21
7
[PATCH v20 3/7 RESEND] xbitmap: add more operations
...) && IS_ALIGNED(start, 8) && + __builtin_constant_p(nbits) && IS_ALIGNED(nbits, 8)) + memset((char *)map + start / 8, 0, nbits / 8); + else + __bitmap_clear(map, start, nbits); +} + static inline void bitmap_fill(unsigned long *dst, unsigned int nbits) { unsigned int nlongs = BITS_TO_LONGS(nbits); diff --git a/tools/include/linux/kernel.h b/tools/include/linux/kernel.h index 0ad8844..3c992ae 100644 --- a/tools/include/linux/kernel.h +++ b/tools/include/linux/kernel.h @@ -13,6 +13,8 @@ #define UINT_MAX (~0U) #endif +#define IS_ALIGNED(x, a) (((x) & ((typeof(x))...
2017 Dec 21
7
[PATCH v20 3/7 RESEND] xbitmap: add more operations
...) && IS_ALIGNED(start, 8) && + __builtin_constant_p(nbits) && IS_ALIGNED(nbits, 8)) + memset((char *)map + start / 8, 0, nbits / 8); + else + __bitmap_clear(map, start, nbits); +} + static inline void bitmap_fill(unsigned long *dst, unsigned int nbits) { unsigned int nlongs = BITS_TO_LONGS(nbits); diff --git a/tools/include/linux/kernel.h b/tools/include/linux/kernel.h index 0ad8844..3c992ae 100644 --- a/tools/include/linux/kernel.h +++ b/tools/include/linux/kernel.h @@ -13,6 +13,8 @@ #define UINT_MAX (~0U) #endif +#define IS_ALIGNED(x, a) (((x) & ((typeof(x))...
2018 Jan 09
0
[PATCH v21 1/5] xbitmap: Introduce xbitmap
...amp; IS_ALIGNED(start, 8) && + __builtin_constant_p(nbits & 7) && IS_ALIGNED(nbits, 8)) + memset((char *)map + start / 8, 0, nbits / 8); + else + __bitmap_clear(map, start, nbits); +} + static inline void bitmap_fill(unsigned long *dst, unsigned int nbits) { unsigned int nlongs = BITS_TO_LONGS(nbits); diff --git a/tools/include/linux/kernel.h b/tools/include/linux/kernel.h index 0ad8844..3c992ae 100644 --- a/tools/include/linux/kernel.h +++ b/tools/include/linux/kernel.h @@ -13,6 +13,8 @@ #define UINT_MAX (~0U) #endif +#define IS_ALIGNED(x, a) (((x) & ((typeof(x))...
2018 Jan 09
6
[PATCH v21 0/5] Virtio-balloon Enhancement
This patch series enhances the existing virtio-balloon with the following new features: 1) fast ballooning: transfer ballooned pages between the guest and host in chunks using sgs, instead of one array each time; and 2) free page block reporting: a new virtqueue to report guest free pages to the host. The second feature can be used to accelerate live migration of VMs. Here are some details: Live
2017 Dec 19
15
[PATCH v20 0/7] Virtio-balloon Enhancement
This patch series enhances the existing virtio-balloon with the following new features: 1) fast ballooning: transfer ballooned pages between the guest and host in chunks using sgs, instead of one array each time; and 2) free page block reporting: a new virtqueue to report guest free pages to the host. The second feature can be used to accelerate live migration of VMs. Here are some details: Live
2017 Dec 19
15
[PATCH v20 0/7] Virtio-balloon Enhancement
This patch series enhances the existing virtio-balloon with the following new features: 1) fast ballooning: transfer ballooned pages between the guest and host in chunks using sgs, instead of one array each time; and 2) free page block reporting: a new virtqueue to report guest free pages to the host. The second feature can be used to accelerate live migration of VMs. Here are some details: Live
2017 Sep 30
12
[PATCH v16 0/5] Virtio-balloon Enhancement
This patch series enhances the existing virtio-balloon with the following new features: 1) fast ballooning: transfer ballooned pages between the guest and host in chunks using sgs, instead of one array each time; and 2) free page block reporting: a new virtqueue to report guest free pages to the host. The second feature can be used to accelerate live migration of VMs. Here are some details: Live
2017 Sep 30
12
[PATCH v16 0/5] Virtio-balloon Enhancement
This patch series enhances the existing virtio-balloon with the following new features: 1) fast ballooning: transfer ballooned pages between the guest and host in chunks using sgs, instead of one array each time; and 2) free page block reporting: a new virtqueue to report guest free pages to the host. The second feature can be used to accelerate live migration of VMs. Here are some details: Live