search for: ap

Displaying 20 results from an estimated 1828 matches for "ap".

Did you mean: map
2010 Oct 08
2
incorrect number of levels
...CH CH CH CH CH CH [201] CH CH CH CH CH CH CH CH CH CH CH CH CH CH CH CH CH CH CH CH TB HI HI HI TB HI HI TB TB TB TB TB TB TB TB TB TB HI TB TB TB TB TB TB TB TB TB TB TB TB [251] TB HI HI HI CH CH CH CH CH CH CH CH CH CH HI HI CH CH CH CH CH CH CH CH CH CH CH CH TB TB TB TB TB TB TB TB TB TB CH CH AP AP AP AP AP AP HI HI HI CH [301] CH CH CH AP AP TB TB AP AP AP AP AP AP SA BB BB TB TB TB TB AP HI AP SA AP HI AP AP HI HI TB HI AP SA AP AP AP AP AP AP AP AP SA AP AP SA AP AP AP SA [351] SA SA AP AP AP CH CH CH CH CH AP BB BB BB BB BB TB CH CH CH CH CH CH CH CH CH CH CH CH CH CH CH Levels: AP BB...
2012 Feb 09
0
Help with TimeSeries
Hello everyone! I´ve started using R last week and I´m having really persistent problems trying to make predictions using the HoltWinters function. I´m sending my script and the errors I´m getting. My data is: Jan Feb Mar Apr May Jun Jul Ago Sep Oct Nov Dec 2004 118 143 169 158 143 135 135 140 135 125.0000 120.0000 120.0000 2005 143 158 180 180 150 150 153 148 150 145.0000 145.0000 143.0000 2006 165 180 190 168 163 163 168 175 180 160.0000 155.0000 150.0000 2007 152 163 185 163 158 175 175 178 168 168.00...
2010 Jun 01
2
Help on aggregate method
Dear R experts, I would really appreciate if you had an idea on how to use more efficiently the aggregate method: More specifically, I would like to calculate the mean of certain values on a data frame,? grouped by various attributes, and then create a new column in the data frame that will have the corresponding mean for every ro...
2008 Aug 27
0
[PATCH] stubdom: add v?errx? and v?warnx? functions
..._POSIX_ERR_H */ diff -r 14a9a1629590 extras/mini-os/lib/sys.c --- a/extras/mini-os/lib/sys.c Wed Aug 27 10:26:50 2008 +0100 +++ b/extras/mini-os/lib/sys.c Wed Aug 27 10:29:36 2008 +0100 @@ -1035,6 +1035,68 @@ void closelog(void) syslog_ident = NULL; } +void vwarn(const char *format, va_list ap) +{ + int the_errno = errno; + printk("stubdom: "); + if (format) { + print(0, format, ap); + printk(", "); + } + printk("%s", strerror(the_errno)); +} + +void warn(const char *format, ...) +{ + va_list ap; + va_start(ap, format); +...
2007 Apr 03
3
[LLVMdev] Implementing a complicated VAARG
...with the ELF ABI. It is largely more complicated than the Macho ABI or x86 because it manipulates a struct instead of a direct pointer in the stack. You can find the layout of the va_list struct at the end of this mail. A VAARG call requires a lot of computation. Typically the C code for va_arg(ap, int) is: int va_arg_gpr(ap_list ap) { int idx = ap->gpr; if (idx < 8) { ap->gpr = idx + 1; return ap->reg_save_area[idx]; } else { int res = ap->overflow_arg_area[0]; ap->gpr = idx + 1; ap->overflow_arg_area += 4; return...
2016 Oct 19
4
[Sparc] vararg double issue on 32 bit Sparc processors
Hi, I've discovered a problem on Sparc processors (specifically, LEON, but I suspect but can't verify that it also happens on all Sparc processors). The problem is, or appears to be with using double values in Sparc (32 bit). Specifically, double values are not being loaded into registers correctly within a function using va_args. Only half the value is loaded (i.e. 32, rather than 64 bits of the value). What I...
2007 Apr 18
2
[RFC, PATCH 9/24] i386 Vmi smp support
SMP bootstrapping support. Just as in the physical platform model, the BSP is responsible for initializing the AP state prior to execution. The dependence on lots of processor state information is a design choice of our implementation. Conceivably, this could be a hypercall that awakens the same start of day s...
2007 Apr 18
2
[RFC, PATCH 9/24] i386 Vmi smp support
SMP bootstrapping support. Just as in the physical platform model, the BSP is responsible for initializing the AP state prior to execution. The dependence on lots of processor state information is a design choice of our implementation. Conceivably, this could be a hypercall that awakens the same start of day s...
2007 Jan 09
5
filtering in layer 2 [but is not a bridge]
I have a linux AP with prism2 (hostap) wireless nic. I whant to filter traffic that pass betwen clients of the AP, this is layer 2 traffic (802.11) and netfilter does not sees it, at first i think in physdev target, but is for layer2 bridged interfaces, and this is not the case. There is a way to filter layer2 t...
2004 Sep 26
1
routing between networks on same interface
...2.168.140.199,192.168.140.203,192.168.140.207,192.168.140.211,192.168.140.215,192.168.140.219,192.168.140.223,192.168.140.227,192.168.140.231,192.168.140.235,192.168.140.239,192.168.140.243,192.168.140.247,192.168.140.251,192.168.140.255 routefilter,tcpflags in interface file and something like: ap eth0:192.168.140.192/30 ap eth0:192.168.140.196/30 ap eth0:192.168.140.200/30 ap eth0:192.168.140.204/30 ap eth0:192.168.140.208/30 ap eth0:192.168.140.212/30 ap eth0:192.168.140.216/30 ap eth0:192.168.140.220/30 ap eth0:192.168.140.224/30 ap eth0:192.168.140.228/30 ap eth0:192.168.140.2...
2011 Dec 13
2
Problem with ploting fitted values
Hello! I have such a problem... Estimated a model based on common data (you can find it in R library), and I wanted to plot the orginal values with the estimated one. Unfortunately I can only see the original values. Below is the code with data library: / library(forecast) data(AirPassengers) AP <- AirPassengers class(AP) start(AP) end(AP) frequency(AP) lgAP <- log(AP) t<-2:length(AP) APsL<-log(ts(lgAP, start=1949, frequency=12)) final<-(ts.intersect(lgAP,lgAPlag=lag(lgAP,-1), t=t, sin12 = sin(2*pi*t/12), cos12 = cos(2*pi*t/12),dframe=TRUE)) summary(AIRlm <- lm(lgAP...
2020 May 29
1
[PATCH v3 69/75] x86/realmode: Setup AP jump table
On Tue, Apr 28, 2020 at 05:17:19PM +0200, Joerg Roedel wrote: > From: Tom Lendacky <thomas.lendacky at amd.com> > > Setup the AP jump table to point to the SEV-ES trampoline code so that > the APs can boot. Tom, in his laconic way, doesn't want to explain to us why is this even needed....
2007 Nov 12
4
a repetition of simulation
Hello, I have a simple (?) simulation problem. I'm doing a simulation with logistic model and I want to reapet it 600 times. The simulation looks like this: z <- 0 x <- 0 y <- 0 aps <- 0 tiss <- 0 for (i in 1:500){ z[i] <- rbinom(1, 1, .6) x[i] <- rbinom(1, 1, .95) y[i] <- z[i]*x[i] if (y[i]==1) aps[i] <- rnorm(1,mean=13.4, sd=7.09) else aps[i] <- rnorm(1,mean=12.67, sd=6.82...
2015 Apr 01
2
[PATCH v2 4/4] Add virtio-vga bits.
...12d5 100644 --- a/drivers/gpu/drm/virtio/virtgpu_drm_bus.c +++ b/drivers/gpu/drm/virtio/virtgpu_drm_bus.c @@ -37,6 +37,26 @@ int drm_virtio_set_busid(struct drm_device *dev, struct drm_master *master) return 0; } +static void virtio_pci_kick_out_firmware_fb(struct pci_dev *pci_dev) +{ + struct apertures_struct *ap; + bool primary; + + ap = alloc_apertures(1); + if (!ap) + return; + + ap->ranges[0].base = pci_resource_start(pci_dev, 2); + ap->ranges[0].size = pci_resource_len(pci_dev, 2); + + primary = pci_dev->resource[PCI_ROM_RESOURCE].flags + & IORESOURCE_ROM_SHADOW; + + re...
2015 Apr 01
2
[PATCH v2 4/4] Add virtio-vga bits.
...12d5 100644 --- a/drivers/gpu/drm/virtio/virtgpu_drm_bus.c +++ b/drivers/gpu/drm/virtio/virtgpu_drm_bus.c @@ -37,6 +37,26 @@ int drm_virtio_set_busid(struct drm_device *dev, struct drm_master *master) return 0; } +static void virtio_pci_kick_out_firmware_fb(struct pci_dev *pci_dev) +{ + struct apertures_struct *ap; + bool primary; + + ap = alloc_apertures(1); + if (!ap) + return; + + ap->ranges[0].base = pci_resource_start(pci_dev, 2); + ap->ranges[0].size = pci_resource_len(pci_dev, 2); + + primary = pci_dev->resource[PCI_ROM_RESOURCE].flags + & IORESOURCE_ROM_SHADOW; + + re...
2003 May 12
2
Proliant on a 6500
Sorry to reply to myself, but I wanted to expand this to -stable and add some more info... See the original post at the bottom of this msg. I just took the Smart 2/P and put it in slot1 (one of the shared Eisa/PCI slots.) Now the Dmesg output shows the "SMP: AP CPU" lines in a different order... They were: SMP: AP CPU# 3 Launched! SMP: AP CPU# 1 Launched! SMP: AP CPU# 2 Launched! now they are: SMP: AP CPU# 1 Launched! SMP: AP CPU# 2 Launched! SMP: AP CPU# 3 Launched! I don't think this is a SMP problem, but rather a SMP/Smart2 combined problem...
2014 Dec 16
1
Realtime not storing voicemail password changes
...pdate2_realtime in main/config.c. Issued source is ==> int ast_update2_realtime(const char *family, ...) { RAII_VAR(struct ast_variable *, lookup_fields, NULL, ast_variables_destroy); RAII_VAR(struct ast_variable *, update_fields, NULL, ast_variables_destroy); va_list ap; va_start(ap, family); /* XXX: If we wanted to pass no lookup fields (select all), we'd be * out of luck. realtime_arguments_to_fields expects at least one key * value pair. */ realtime_arguments_to_fields(ap, &lookup_fields); va_end(ap);...
2015 Jun 22
4
LDAP authentication
Hi again I'm trying to authenticate a user against an LDAP Server (well, our AD, but it can LDAP). This is my configuration: hosts = my.server.local auth_bind = yes ldap_version = 3 base = CN=Person,CN=Schema,CN=Configuration,DC=company,DC=local scope = subtree user_attrs = \ =home=/home/imapproxy/%u, \ =mail=maildir:/home/imapproxy/%u pass_attr...
2017 Nov 24
8
[PATCH 00/13] remove_conflicting_framebuffers() cleanup
...ng_pci_framebuffers() drm/mgag200: use simpler remove_conflicting_pci_framebuffers() drm/radeon: use simpler remove_conflicting_pci_framebuffers() drm/virtio: use simpler remove_conflicting_pci_framebuffers() staging: sm750fb: use simpler remove_conflicting_pci_framebuffers() fbdev: allow apertures == NULL in remove_conflicting_framebuffers() drm/vc4: use simpler remove_conflicting_framebuffers(NULL) drm/sun4i: use simpler remove_conflicting_framebuffers(NULL) drm/tegra: kick out simplefb drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c | 23 +----------------- drivers/gpu/drm/bochs/bo...
2017 Nov 24
8
[PATCH 00/13] remove_conflicting_framebuffers() cleanup
...ng_pci_framebuffers() drm/mgag200: use simpler remove_conflicting_pci_framebuffers() drm/radeon: use simpler remove_conflicting_pci_framebuffers() drm/virtio: use simpler remove_conflicting_pci_framebuffers() staging: sm750fb: use simpler remove_conflicting_pci_framebuffers() fbdev: allow apertures == NULL in remove_conflicting_framebuffers() drm/vc4: use simpler remove_conflicting_framebuffers(NULL) drm/sun4i: use simpler remove_conflicting_framebuffers(NULL) drm/tegra: kick out simplefb drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c | 23 +----------------- drivers/gpu/drm/bochs/bo...