search for: hmap

Displaying 15 results from an estimated 15 matches for "hmap".

Did you mean: heap
2009 Oct 25
2
[LLVMdev] configuring LLVM 2.6 for OSX 10.4sdk on OSX 10.5 system
...cd llvm /Developer/usr/bin/gcc-4.0 -x c++ -arch i386 -fmessage-length=0 - pipe -Wno-trigraphs -fpascal-strings -fasm-blocks -O0 -isysroot / Developer/SDKs/MacOSX10.4u.sdk -fvisibility-inlines-hidden -mmacosx- version-min=10.4 -gdwarf-2 -iquote /build/codegen.build/codegen- generated-files.hmap -I/llvm/build/codegen.build/codegen-own-target- headers.hmap -I/codegen.build/codegen-all-target-headers.hmap -iquote / build/codegen.build/codegen-project-headers.hmap -Wmost -Wno-four-char- constants -Wno-unknown-pragmas -F/build/Development -I/Developer/SDKs/ MacOSX10.4u.sdk/Developer/Header...
2009 Oct 25
0
[LLVMdev] configuring LLVM 2.6 for OSX 10.4sdk on OSX 10.5 system
...oper/usr/bin/gcc-4.0 -x c++ -arch i386 -fmessage-length=0 - > pipe -Wno-trigraphs -fpascal-strings -fasm-blocks -O0 -isysroot / > Developer/SDKs/MacOSX10.4u.sdk -fvisibility-inlines-hidden -mmacosx- > version-min=10.4 -gdwarf-2 -iquote /build/codegen.build/codegen- > generated-files.hmap -I/llvm/build/codegen.build/codegen-own-target- > headers.hmap -I/codegen.build/codegen-all-target-headers.hmap - > iquote /build/codegen.build/codegen-project-headers.hmap -Wmost -Wno- > four-char-constants -Wno-unknown-pragmas -F/build/Development -I/ > Developer/SDKs/MacOSX10.4u....
2013 Aug 30
1
package seriation- how to manage font size and label margin
Hello R experts, I am trying to use hmap from package seriation or bertinplot. I have two questions: How can I specify smaller font? I tried with pushViewport(viewport(layout=grid.layout(nrow = 1, ncol = 2), + gp = gpar(fontsize = 8))) but didn't work for the font with bertinplot. Also for hmap I need to arrange the margin so that al...
2009 Jan 14
0
[LLVMdev] quick q configuring osx
Hi, For the record, adding UNIVERSAL_SDK_PATH=/Developer/SDKs/MacOSX10.4u.sdk/ was insufficient to restrict the .a/.o files to link against the 10.4 sdk, but env MACOSX_DEPLOYMENT_TARGET=10.4 make did the trick. Thanks! On Jan 14, 2009, at 1:29 PM, Jean-Daniel Dupas wrote: > > Le 14 janv. 09 à 21:48, Chris Lattner a écrit : > >> >> On Jan 14, 2009, at 12:44 PM,
2009 Jan 14
2
[LLVMdev] quick q configuring osx
Le 14 janv. 09 à 21:48, Chris Lattner a écrit : > > On Jan 14, 2009, at 12:44 PM, Graham Wakefield wrote: > >> Sorry if this is a newb q... I'm developing an application on a >> 10.5 machine but want to target the 10.4 SDK. Is there a magic >> incantation for the llvm configure script to set the sysroot path, >> equivalent to e.g. --with-sysroot
2013 May 22
0
[LLVMdev] Header Maps?
...#39;m trying to avoid adding a search path for all of Boost, and only including the Boost headers that actually get used. Xcode seems to inconsistently find headers. One problem is that boost inconsistently uses quotes-vs.-angle brackets when including. Anyway, is there a tool that can dump out a .hmap file in human-readable form, to help me see what Xcode is doing? BTW, I've tried asking on the Xcode list for insight into how Xcode tries to use .hmaps, but have yet to receive a good answer. Thanks! -- Rick
2018 Jun 12
2
[PULL] vhost: cleanups and fixes
...y, I look at "add_one_sg()" and it really doesn't make me happy. It looks hacky as hell. If I read the code right, you're really trying to just queue up a simple tuple of <pfn,len>, except you encode it as a page pointer in order to play games with the SG logic, and then you hmap that to the ring, except in this case it's all a fake ring that just adds the cpu-physical address instead. And to figuer that out, it's like five layers of indirection through different helper functions that *can* do more generic things but in this case don't. And you do all of this...
2018 Jun 12
2
[PULL] vhost: cleanups and fixes
...y, I look at "add_one_sg()" and it really doesn't make me happy. It looks hacky as hell. If I read the code right, you're really trying to just queue up a simple tuple of <pfn,len>, except you encode it as a page pointer in order to play games with the SG logic, and then you hmap that to the ring, except in this case it's all a fake ring that just adds the cpu-physical address instead. And to figuer that out, it's like five layers of indirection through different helper functions that *can* do more generic things but in this case don't. And you do all of this...
2020 Jan 16
1
[PATCH 2/2] Win::Hivex::Regedit: Ignore comments
...uot;", $1, $encoding); croak (_parse_error ($_, $lineno)) unless defined $value; push @newvalues, $value; - } elsif (/^\s*$/) { # blank line after values + } elsif (/^\s*(;.*)?$/) { # blank line after values _merge_node ($hmap, \%params, $newnode, \@newvalues, \@delvalues); $state = "outer"; } else { -- 2.25.0
2010 Jan 26
2
heatmap.2 color range
...se orange gradient if x < 1.5, use red gradient ..... Right now I have the following: orgPal<-brewer.pal(3,"Oranges") bluPal<-brewer.pal(3,"Blues") redPal<-brewer.pal(3,"Reds") grad <- ifelse(randMat > 5,orgPal,ifelse(randMat<1.5,redPal,bluPal)) hmap <- heatmap(randMat,Rowv=NULL, Colv=NULL,dendrogram="none",col = grad, scale="column",...) the problem is that all the colors become very close to white on one end of the spectrum and the orange colors, for example, start approaching red when x reaches extreme values and the...
2009 May 25
2
Looping through java hashmap from ruby through rjb
Greetings. I am trying to list all keys in a java.util.HashMap field. The Java code to do this looks like: # Collection c = hMap.values(); # # //obtain an Iterator for Collection # Iterator itr = c.iterator(); # # //iterate through HashMap values iterator # while(itr.hasNext()) System.out.println(itr.next()); So, I took a stab at the ruby version: # I...
2018 Jun 15
0
[PULL] vhost: cleanups and fixes
...doesn't make me >>> happy. It looks hacky as hell. If I read the code right, you're really >>> trying to just queue up a simple tuple of <pfn,len>, except you encode >>> it as a page pointer in order to play games with the SG logic, and >>> then you hmap that to the ring, except in this case it's all a fake >>> ring that just adds the cpu-physical address instead. >>> >>> And to figuer that out, it's like five layers of indirection through >>> different helper functions that *can* do more generic things b...
2018 Jun 11
2
[PULL] vhost: cleanups and fixes
On Mon, Jun 11, 2018 at 11:32 AM Linus Torvalds <torvalds at linux-foundation.org> wrote: > > So now we apparently do a GFP_KERNEL allocation insider the mm zone > lock, which is broken on just _so_ many levels. Oh, I see the comment about how it doesn't actually do an allocation at all because it's a single-entry. Still too damn ugly to live, and much too fragile. No way
2018 Jun 11
2
[PULL] vhost: cleanups and fixes
On Mon, Jun 11, 2018 at 11:32 AM Linus Torvalds <torvalds at linux-foundation.org> wrote: > > So now we apparently do a GFP_KERNEL allocation insider the mm zone > lock, which is broken on just _so_ many levels. Oh, I see the comment about how it doesn't actually do an allocation at all because it's a single-entry. Still too damn ugly to live, and much too fragile. No way
2008 Dec 18
0
[LLVMdev] Troubles with clang and llvm libraries and simple Xcode project
...aAV/oct08/mergathon/llvmAV /Developer/usr/bin/gcc-4.0 -x c++ -arch i386 -pipe -Wno- trigraphs -fpascal-strings -Os -fmessage-length=0 -fvisibility- inlines-hidden -mmacosx-version-min=10.4 -I/code/luaAV/oct08/ mergathon/llvmAV/build/llvmAV.build/Release/weirdbug_nolib.build/ weirdbug_nolib.hmap -Wmost -Wno-four-char-constants -Wno-unknown- pragmas -F/code/luaAV/oct08/mergathon/llvmAV/build/Release -I/code/ luaAV/oct08/mergathon/llvmAV/build/Release/include -I/usr/local/ include -I/code/luaAV/oct08/mergathon/llvmAV/build/llvmAV.build/ Release/weirdbug_nolib.build/DerivedSources -D__STD...