search for: aassign

Displaying 2 results from an estimated 2 matches for "aassign".

Did you mean: assign
2009 Apr 22
4
Problem with "apply"
...15 2 5 7 2 4 1 1 2 1 1 2 2 2 1 > mode(mds[,11]) [1] "numeric" > mds[1,11] %in% c(0:4) [1] TRUE > if (mds[1,11] %in% c(0:4)) {y <- "0-4"} > y [1] "0-4" > xx <- matrix(trunc(runif(30,0,125)),15,2) > aassign <- function(x){ + y <- NA + if (x[2] %in% c(0:4)) {y <- "0-4"} + else if (x[2] %in% c(5:14)) {y <- "5-14" } + else if (x[2] %in% c(15:29)) {y <- "15-29" } + else if (x[2] %in% c(30:69)) {y <- "30-69"} + else if (x[2] %in% c(70:79...
2008 Jan 18
7
[Patch] Make memory hole for PCI Express bigger and prevent roll-over
...y the HVM BIOS (and prevents rollover to 0x00000000) I also have some code to parse the DSDT''s ASL code to more dynamically assign the memory hole for PCI BARs. Do you think it''s worth worrying about this, since again it should only come in handy if you have more than 3GB of RAM aassigned to a 32-bit guest OS? I tried the approach of having two different chunks of ASL code (in different SSDTs or whatever) but couldn''t get that to work, so now I have code to modify the ASL code directly. Also, this is my first attempt at submitting code to Xen so please let me know of an...