search for: suprized

Displaying 9 results from an estimated 9 matches for "suprized".

Did you mean: suprised
2005 Apr 22
3
[LLVMdev] isa and friends as an alternative to dynamic cast?
On Thu, 2005-21-04 at 19:43 -0700, Reid Spencer wrote: > In case it wasn't obvious from Misha's answer, the main reason for > doing this is speed. RTTI is not very quick. Right. This is why I was somewhat suprized to see the "isa" facilities included in LLVM without also disabling rtti. It will reduce the memory footprint a fair bit if you do disable it, at least based on my experience with other C++ projects. Evan Jones
2005 Apr 22
0
[LLVMdev] isa and friends as an alternative to dynamic cast?
...point. Evan Jones wrote: >On Thu, 2005-21-04 at 19:43 -0700, Reid Spencer wrote: > > >>In case it wasn't obvious from Misha's answer, the main reason for >>doing this is speed. RTTI is not very quick. >> >> > >Right. This is why I was somewhat suprized to see the "isa" facilities >included in LLVM without also disabling rtti. It will reduce the memory >footprint a fair bit if you do disable it, at least based on my >experience with other C++ projects. > >Evan Jones > > >___________________________________________...
2005 Apr 22
2
[LLVMdev] isa and friends as an alternative to dynamic cast?
...wrote: > >> On Thu, 2005-21-04 at 19:43 -0700, Reid Spencer wrote: >> >>> In case it wasn't obvious from Misha's answer, the main reason for >>> doing this is speed. RTTI is not very quick. >>> >> >> Right. This is why I was somewhat suprized to see the "isa" facilities >> included in LLVM without also disabling rtti. It will reduce the memory >> footprint a fair bit if you do disable it, at least based on my >> experience with other C++ projects. >> >> Evan Jones >> >> >> ___...
2005 Apr 22
0
[LLVMdev] isa and friends as an alternative to dynamic cast?
Evan, In case it wasn't obvious from Misha's answer, the main reason for doing this is speed. RTTI is not very quick. Since LLVM is well contained, there are no IR classes that LLVM doesn't know about it. Using dynamic_cast is really only warranted when blending libraries together that have inheritance relationships between them that aren't known in one or more of the libraries.
2009 Jun 02
5
(Dar)Wine and The Bat!
Greetings, I'm trying to run The Bat! (email client by RITlabs) on Mac OS X 10.5.7 with the most current XQuartz installed. I compiled Wine 1.1.22 using MacPorts and confirmed it is working for simple Windows applications. (Btw, is this Wine or Darwine, since MacPorts seems to download and compile the official Wine sources?) After installing The Bat!, it starts up and immediately quits with
2005 Mar 09
3
from long/lat to UTM
Hi: Is there any function in R which can convert the long/lat to UTM(Universal Transverse Mercator)? There are quite a few converters on Internet. However, the interface is designed as input->output which I can not convert lots of locations at the same time. Another question is whether there is a function in R which can tell the time zone from the location's lat/long? Thank you!
2008 Sep 29
3
wine: Unhandled page fault on read access to 0x00000064
Why am i always getting this crash ?? I dont understand how can I make this work wine: Unhandled page fault on read access to 0x00000064 at address 0x7e72d7a6 (thread 0009), starting debugger... Unhandled exception: page fault on read access to 0x00000064 in 32-bit code (0x7e72d7a6). Register dump: CS:0073 SS:007b DS:007b ES:007b FS:0033 GS:003b EIP:7e72d7a6 ESP:00334b7c EBP:00334b94
2004 Aug 06
2
Multiple Instances are Crashing
Oh ... Ok tryed to do it with 8100 but either doesnt work... <p><p>-----Original Message----- From: owner-icecast@xiph.org [mailto:owner-icecast@xiph.org]On Behalf Of Michael Smith Sent: Monday, May 20, 2002 1:31 PM To: icecast@xiph.org Subject: Re: [icecast] Multiple Instances are Crashing <p>At 12:16 PM 5/20/02 +0200, you wrote: >If i want to start icecast a 2nd time with
2005 Apr 22
6
[LLVMdev] isa and friends as an alternative to dynamic cast?
I see a bunch of definitions scattered throughout LLVM, and I could not find good documentation on them. I don't understand why they exist when LLVM is being compiled with RTTI enabled. It seems to me that: isa<T>(x) is a substitute for (dynamic_cast<T>(x) != NULL) and there are some other similar casting tools defined in Casting.h. Why should I use these instead of C++'s