search for: diamand

Displaying 10 results from an estimated 10 matches for "diamand".

Did you mean: diamant
2001 Feb 14
3
Brazilian Keyboard and special characters !
...#39;?'. That the point, I don't have a keyboard layout error, but I dont know hou to tell wine to use special characters like ???a???... and so on. I only get ^a~a and so... Do I have to edit win.ini or system.ini file in my wine disk ? Thanks for any help, Your brazilian friend, Andre Diamand CEO, Future Technologies
2001 Feb 09
3
Palm Hotsync success...
Well, after having given up uppon serial communication from hotsync.exe to the Palm Vx, I decided to try network communication instead. I am able to perform a complete hotsync even with Netscape Calendar synchronization. I am not doing anything special to make it work but it is not straight forward, neither. I start hotsync.exe, configuring it for network access only. Then I start pi-nredir
2001 Feb 20
1
I need some help for using wine
...s more specific > than "Re: Contents of wine-users digest..." > > > Today's Topics: > > 1. Re: ICQ2000A (Eduardo Costa) > 2. Re: Re : Re: hello, I need some help for using wine (Eduardo Costa) > 3. Re: Brazilian Keyboard and special characters ! (Andre Diamand) > 4. Re: Clipboard X->win (Duane Clark) > 5. FrameMaker 6.0 problem - further information (Rick Wessman) > 6. Re: Palm Hotsync success... (Andre Diamand) > 7. Trying to find rpmlib (Wayne Maeda) > 8. Re: IE under wine (Jan Povolny) > 9. Re: Trying to find rpm...
2001 Feb 14
0
Keyboard not handled properly.. were to start debbugging?
...ime > > Joao Clemente > Portugal - IST > Computer Engeneering Joao, Could you solve your problem ? My Brazilian keyboard was fully recognized, but I cant use characters like ??? and do on. I can only get ^a,~a and so... How can I tell wine to merge a ^ with an a, like ? ? Thanks, Andre Diamand. andre@fti.com.br
2001 Feb 14
0
How about umlaut characters?
...one step before you: wine recognizes my keyboard layout as Brazilian ABNT, wich is correct and nice. But when I try to type umlaut characters like ? or ?, I only get ~a and ^e separately !!! Do I have to edit a win.ini or system.ini file ? I am becoming mad because of it. Thanks in advance, Andre Diamand
2008 May 12
1
Console app startup time
...takes (on my platform) about 0.5-1 seconds to startup - even for a program that doesn't actually do anything. I am trying to get a Windows compiler to run under Linux using Wine, so I care a lot about startup time, but I don't care at all about graphics support (for example). Thanks, Luke Diamand
2017 Apr 25
2
Contributing a new sanitizer for pointer casts
Hi all, Some of you might remember that at EuroLLVM last year in Barcelona, Chris Diamand and I gave a talk about Clang/libcrunch, a run-time checking system which can be thought of as another flavour of sanitizer. It checks pointer casts, using run-time type information. Roughly the check is that the pointer really points to an instance of the target type, though there are refineme...
2017 Apr 04
8
[RFC] Design of a TBAA sanitizer
Hi everyone, At EuroLLVM, Chandler and I chatted about the design for a potential TBAA sanitizer. Here's my attempt to summarize: C/C++ have type-based aliasing rules, and LLVM's optimizer can exploit these given TBAA metadata added by Clang. Roughly, a pointer of given type cannot be used to access an object of a different type (with, of course, certain exceptions). Unfortunately,
2017 Apr 26
2
Contributing a new sanitizer for pointer casts
Hi Vedant, > I enjoyed reading through your EuroLLVM slides and OOPSLA paper. > Detecting the creation of contract-violating pointers is an > interesting idea, and your paper demonstrates that the checking can > be comprehensive and effective. Glad you enjoyed them. :-) > However, I have concerns about the quality of diagnostics, the > complexity of the driver, and about
2017 Apr 10
2
[RFC] Design of a TBAA sanitizer
...h code >> often must be built with -fno-strict-aliasing. Performance is often >> sacrificed as a result. Part of the problem is the difficulty of finding >> TBAA violations. A sanitizer would help. > It's not quite the same thing, but at last year's EuroLLVM, Chris > Diamand and I presented a Clang-based tool for detecting bad pointer > casts. This seems to be fairly good at identifying code which needs > -fno-strict-aliasing... although it is not designed for checking of > exactly that. <http://www.llvm.org/devmtg/2016-03/#presentation9> > > Funni...