search for: setw

Displaying 7 results from an estimated 7 matches for "setw".

Did you mean: set
2009 Aug 25
1
[LLVMdev] [llvm-commits] [llvm] r79615 - in /llvm/trunk/test/Analysis/Profiling: ./ 2009-08-21-irregular-loop.ll 2009-08-21-only-one-block.ll 2009-08-21-several-blocks.ll dg.exp
...ses std::cout for the regular text output and outs() for the printing of the annotated code. Problem is that this two streams interweave the output since they seem not to be syncronized. How can I solve this? If I replace std::cout with outs() I get a whole bunch of error messages because the std::setw(3) are not usable with outs(). (This stuff is heavily used for output formating in llvm-prof.) Besides that, how can I format the raw_outstreams anyways? Andi
2009 Sep 29
3
How do I access class slots from C?
Hi I'm trying to implement something similar to the following R snippet using C. I seem to have hit the wall on accessing class slots using C. library(fPortfolio) lppData <- 100 * LPP2005.RET[, 1:6] ewSpec <- portfolioSpec() nAssets <- ncol(lppData) setWeights(ewSpec) <- rep(1/nAssets, times = nAssets) ewPortfolio <- feasiblePortfolio( data = lppData, spec = ewSpec, constraints = "LongOnly") ewSpec is an object of type Portfolio Spec which has the following slots: model slot type = "MV" a s...
2009 Aug 22
0
[LLVMdev] X86 Disassembler
...hings. llvm/ Support/Format.h lets you do things like: OS << "mynumber: " << format("%4.5f", 1234.412) << '\n'; with raw_ostreams. Using "printf style" format strings is a lot more pretty than: +#define BYTE_FLAGS std::hex << std::setw(2) << std::setfill('0') << std::right :) Not a critical issue, but please put a space after control flow keywords like if/while. while(current - address < size && current < limit) { if(readByte(current, &buf[(current - address)])) Please...
2009 Aug 19
3
[LLVMdev] X86 Disassembler
Bill, thanks for your comments. I'll respond to them individually. I've attached a new revision of the patch that addresses them. Patch built and tested against SVN 79487, with the additional attached fix that fixes an Intel table bug. Sean On 2009/08/18, at 0:57, Bill Wendling wrote: > 0. Watch out for tabs! Fixed. Thanks. > 1. Includes like this "#include
2014 Jan 17
0
Wine release 1.7.11
...rizon needs msvcr90.dll.?_is_exception_typeof@@YAHABVtype_info@@PAU_EXCEPTION_POINTERS@@@Z 35145 RSA SecurID token v411 crashes on startup 35196 Depth Hunter crashes when changing video options 35227 Secret Files 2: hardware mouse pointer corrupted 35237 Ivona Voices needs MSVCP110.dll.?setw at std@@YA?AU?$_Smanip at _J@1 at _J@Z 35247 Teleglitch: Die More Edition needs msvcr110.dll._libm_sse2_sqrt_precise 35261 Ys 1 crashes on startup 35303 Multiple Realarcade installers fail on startup, complaining with COM/LUA scripting errors (need support for IFolder::get_Files) 35318...
2012 Jun 22
0
Wine release 1.5.7
...ed operator<<(basic_ostream<char>, basic_string<char>) implementation. msvcp90: Added cin, cout and cerr objects. msvcp90: Added basic_ostream<char>::operator<<(function) implementation. msvcp90: Added setprecision implementation. msvcp90: Added setw implementation. msvcp90: Added basic_ios::narrow implementation. msvcp90: Added basic_ios::widen implementation. msvcp: Sync spec files. msvcp90: Added codecvt<wchar> class stub. msvcp90: Added codecvt<wchar> implementation. msvcp90: Added _Stodx impl...
2012 Nov 20
52
[PATCH RFC] stubdom: Change vTPM shared page ABI
Since the vTPM implementations are being incorproated into Xen and possibly upstream Linux, I would like to see if this protocol change could be added before we have significant legacy implementations. If not, I still think it would be useful as either a v2 or negotiated protocol change. The current vTPM protocol is a copy of the network protocol. This was likely done for ease of implementation,