search for: tospac

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

Did you mean: tospace
2011 Feb 21
2
[LLVMdev] A working garbage collector - finally :)
...ce it will be traced as a static root. if (header.gcstate != 0) { if (header.gcstate & uint(GCFlags.RELOCATED)) != 0 { ptrAddr[0] = header.newLocation; } else { let size = header.gcstate & uint(~3); let newAddr:Address[ubyte] = toSpace.alloc(size); Memory.arrayCopy(newAddr, addr, size); header.newLocation = ptrAddr[0] = Memory.bitCast(newAddr); header.gcstate = uint(GCFlags.RELOCATED); } } } } } /** Static instance of the trace action. */ let TRACE_ACTION = T...
2008 Sep 26
1
looking for a better way to code a bar graph
...,ps/total, gpgpu, date ... ... ... ... .. that contains the percent that certain features contribute to a part and the date the part was built I'd like to do stacked bar graphs one bar per part showing the percents and I'd like tospace the bars based on the date released I tried area <- read.csv("c:/talks/pact2008/g1.csv"); dates <-strptime(as.character(area$date), "%m/%d/%Y") ## hack to figure out the amount to shift the bars l <- length(as.POSIXct(dates)) diff <- as.numeric(di...