similar to: Floats in Microsoft Basic format

Displaying 20 results from an estimated 120 matches similar to: "Floats in Microsoft Basic format"

2023 Jan 30
1
[Bridge] [PATCH net-next 06/16] net: bridge: Add a tracepoint for MDB overflows
Steven Rostedt <rostedt at goodmis.org> writes: > On Thu, 26 Jan 2023 18:01:14 +0100 > Petr Machata <petrm at nvidia.com> wrote: > >> + TP_printk("dev %s af %u src %pI4/%pI6c grp %pI4/%pI6c/%pM vid %u", >> + __get_str(dev), __entry->af, __entry->src4, __entry->src6, >> + __entry->grp4, __entry->grp6, __entry->grpmac,
2009 Aug 14
1
reading in mdb and outputting to sql (GIS application)
I have a geodatabase and would like to import it into GRASS, but it is in .mbf. I use mac and linux, and don't have access to access on the machines that I normally use. I do have access to access at school, but I would like to find a way around this if possible. Any thoughts, comments, or suggestions would be welcome. thanks, -- Stephen Sefick Let's not spend our time and resources
2012 Apr 19
0
[LLVMdev] Target Dependent Hexagon Packetizer patch
Sure I will split it and put it in two patches. Give me few hours. I need to test those patches. Sirish On 4/19/2012 8:40 AM, Tom Stellard wrote: > On Wed, Apr 18, 2012 at 11:18:05PM -0500, Sirish Pande wrote: >> Hi, >> >> Here's a patch for Hexagon Packetizer for review. This patch does >> not yield any warnings. >> > Would it be possible to split this
2010 Mar 28
2
[LLVMdev] Which floating-point comparison?
I notice llvm provides both ordered and unordered variants of floating-point comparison. Which of these is the right one to use by default? I suppose the two criteria would be, in order of importance: 1. Which is more efficient (more directly maps to typical hardware)? 2. Which is more familiar (more like the way C and Fortran do it)?
2010 Mar 28
0
[LLVMdev] Which floating-point comparison?
On Sun, Mar 28, 2010 at 7:45 AM, Russell Wallace <russell.wallace at gmail.com> wrote: > I notice llvm provides both ordered and unordered variants of > floating-point comparison. Which of these is the right one to use by > default? I suppose the two criteria would be, in order of importance: > > 1. Which is more efficient (more directly maps to typical hardware)? You can
2007 Mar 11
1
samba+Ldap+smbldap-tools
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 hi, I have aproblem with the smbldap-tools...when I try to change the passwd fron a user in win...I get the error "....", and I know that the script of smbldap-tools fails when try to execute the next line: # non-root user if (!defined($oldpass)) { # prompt for current password system "stty -echo"; print "(current)
2006 Jul 20
1
samba as pdc in Ubuntu dapper, fails on ps$ join?
Hola, I've done everything as correct as I can see in smb.conf under fresh ubuntu 6.06 fully updated install to have it run as a PDC on hostname florentine, domain DAVEYST. There are no testparm errors. I've added users with useradd and smbpasswd -a I've added machines with useradd and smbpasswd -a -m I can see the server in my network neighbourhood and access/browse folders on
2005 Nov 26
1
Tomb Raider 4 and wine 0.9.1(DirectX 6.1)
Hi! I've just installed wine-0.9.1 on my Fedora Core 3 system (Radeon 9600XT - fglrx-8.19.10). While TR3(demo) setup & gameplay runs okay, TR4 breaks and gives me this error output after the setup screen is thru: ALSA lib seq_hw.c:446:(snd_seq_hw_open) open /dev/snd/seq failed: No such file or dir ectory err:int:INSTR_EmulateInstruction mov cr4,eax at 0x0048da53
2006 Apr 02
1
Floats being stored in database as integer?
Hi all - having a problem that''s driving me insane. I was working on a project that required reading in Access MDB files, then writing them to a mySQL DB. I got it working, but the DB had a bunch of worthless data from my previous testing - so I dropped the table to start fresh. Once I dropped it, the float values from the Access read are being written to the DB as integers. If I
2006 Jun 16
0
Draggables, Floats, DOM and IE
Hello All, While performing work on an upcoming project, we are running into a problem where floats are not showing up in draggables under IE when these elements are dynamically added to a container via the DOM. Of course, we are re-initializing the Draggables on re-insertion, but IE is not rendering the floats -- although they are there, and once the element is dragged, they appear. For a
2006 Jan 08
0
sortable floats help, please!
ok, first off. i love script.aculo.us! anywho on to business. the hoverclass doesn''t seem to work in the sortables.create. and the handle doesn''t work (yeah i have the id="handle" ) this is what i have ..
2008 May 16
1
[Bug 15957] New: Properties window floats on top of all other windows
http://bugs.freedesktop.org/show_bug.cgi?id=15957 Summary: Properties window floats on top of all other windows Product: swfdec Version: 0.6.0 Platform: Other OS/Version: All Status: NEW Severity: normal Priority: medium Component: plugin AssignedTo: swfdec at lists.freedesktop.org
2009 Feb 05
2
[LLVMdev] 16 bit floats
On Thu, Feb 5, 2009 at 1:34 PM, Villmow, Micah <Micah.Villmow at amd.com> wrote: > I need to do a similar where I convert the 16bit floats to 32bit floats on > memory operations for both scalar and vector formats. So can these > operations be implemented without adding 16 bit float support natively to > LLVM? If so, how? In this case, you only really need two currently
2009 Feb 05
1
[LLVMdev] 16 bit floats
On Feb 5, 2009, at 1:34 PM, Villmow, Micah wrote: > BGB/Chris, > I need to do a similar where I convert the 16bit floats to 32bit > floats on memory operations for both scalar and vector formats. So > can these operations be implemented without adding 16 bit float > support natively to LLVM? If so, how? Just codegen them as i16 in LLVM IR, and use a library function to
2009 Feb 05
0
[LLVMdev] 16 bit floats
Eli, This is similar to what I was originally thinking, but I also need to support i16 data type and conversions between it and floating point values. So would there be a way for me to distinguish between a half and a short? For example, I have the short a = load_from_memory(short_ptr, index); and half a = load_from_memory(half_ptr, index); if I force it to use i16 wouldn't the function be
2010 Apr 06
1
[LLVMdev] PrintModule: How to make it show floats in decimal instead of hex?
Is there a way to make the printer to display float values in decimal form instead of the cryptic 0x... ? -- Regards, Gabi http://bugspy.net
2010 Apr 06
2
[LLVMdev] PrintModule: How to make it show floats in decimal instead of hex?
> PS: Maybe not for x86 long double though. Right, so how to make x86 double displayed in decimal ? -- Regards, Gabi http://bugspy.net
2010 Apr 06
0
[LLVMdev] PrintModule: How to make it show floats in decimal instead of hex?
On 06/04/10 23:12, Gabi wrote: >> PS: Maybe not for x86 long double though. > > Right, so how to make x86 double displayed in decimal ? Currently this is never done AFAIK. I don't know why, maybe Dale does. Ciao, Duncan.
2012 Nov 26
0
[LLVMdev] strange dbgs() behavior: unable to print floats in machine backend
Hi, I am trying to debug my backend, and observe very strange behavior with dbgs(): In the IfConverter, I have added two debugging lines that print floating-point numbers for the sake of demonstration that such printing works fine. bool MeetIfcvtSizeLimit(MachineBasicBlock &BB, unsigned Cycle, unsigned Extra, const BranchProbability
2017 Nov 15
0
[PATCH] nouveau/codegen: dump tgsi floats as hex values
This looks like the saner approach, compared to changing tgsi_dump.c to display more fractional digits. Maybe there could be a second option to display as both float and hex? Reviewed-by: Pierre Moreau <pierre.morrow at free.fr> On 2017-11-14 — 15:11, Tobias Klausmann wrote: > Printing without this could lead to the following output, while the values are > not exactly zero: >