search for: __int32

Displaying 18 results from an estimated 18 matches for "__int32".

2012 Feb 09
2
[PATCH] Remove even more CPP hackery
...der file > with C99 standard width integers (int8_t, uint8_t, int16_t etc). Erik I would recommend including with the distribution a file for windows developers to use. It's fairly simple /* since windows doesn't have stdint.h */ typedef unsigned __int64 uint64_t; typedef unsigned __int32 uint32_t; typedef unsigned __int16 uint16_t; typedef unsigned __int8 uint8_t; typedef __int64 int64_t; typedef __int32 int32_t; typedef __int16 int16_t; typedef __int8 int8_t; #if defined(_M_IX64) typedef unsigned __int128 uint128_t; typedef __int128 int128_t; #endif
2002 Dec 10
2
mingw compiling problem for libogg
...ogg_int32_t, etc are defined correctly on cygwin and MSVC/Borland but not on mingw... i have attached a patch that will fix this problem (i hope it attaches correctly) thx, Nehal --- os_types.h.old Fri Jul 19 02:25:52 2002 +++ os_types.h Tue Dec 10 14:15:44 2002 @@ -32,6 +32,13 @@ typedef __int32 ogg_int32_t; typedef unsigned __int32 ogg_uint32_t; typedef __int16 ogg_int16_t; +# elif defined(__MINGW32_VERSION) + /* Mingw */ +# include <stdint.h> + typedef int64_t ogg_int64_t; + typedef int32_t ogg_int32_t; + typedef uint32_t ogg_uint32_t; + typedef int16_t ogg_int1...
2009 Jan 08
1
[LLVMdev] Integer typedefs for MSVC
...def signed int int32_t; typedef unsigned int uint32_t; typedef short int16_t; typedef unsigned short uint16_t; typedef signed char int8_t; typedef unsigned char uint8_t; typedef signed int ssize_t; #endif it would be preferable to use these: typedef __int8 int8_t; typedef __int16 int16_t; typedef __int32 int32_t; typedef __int64 int64_t; typedef unsigned __int8 uint8_t; typedef unsigned __int16 uint16_t; typedef unsigned __int32 uint32_t; typedef unsigned __int64 uint64_t; Does anyone feel strongly about this? - Mark Leone -------------- next part -------------- An HTML attachment was scrubbed......
2012 Feb 09
1
[PATCH] Remove even more CPP hackery
...>>> etc). Erik >> >> I would recommend including with the distribution a file for >> windows developers to use. It's fairly simple >> >> >> /* since windows doesn't have stdint.h */ typedef unsigned >> __int64 uint64_t; typedef unsigned __int32 uint32_t; typedef >> unsigned __int16 uint16_t; typedef unsigned __int8 uint8_t; >> typedef __int64 int64_t; typedef __int32 int32_t; typedef __int16 >> int16_t; typedef __int8 int8_t; #if defined(_M_IX64) typedef >> unsigned __int128 uint128_t; typedef __int128 int128_t;...
2015 Jun 03
5
[PATCH 1/1] Updated opus_types.h to correctly support 8 and 64 bit types.
...nsigned char opus_uint8; typedef short opus_int16; typedef unsigned short opus_uint16; + typedef int opus_int32; + typedef unsigned int opus_uint32; + typedef long long opus_int64; + typedef unsigned long long opus_uint64; # else /* MSVC/Borland */ - typedef __int32 opus_int32; - typedef unsigned __int32 opus_uint32; + typedef __int8 opus_int8; + typedef unsigned __int8 opus_uint8; typedef __int16 opus_int16; typedef unsigned __int16 opus_uint16; + typedef __int32 opus_int32; + typedef unsigned __int32 opus_uint32; + typedef...
2012 Feb 09
0
[PATCH] Remove even more CPP hackery
...integers (int8_t, uint8_t, int16_t etc). Erik > > I would recommend including with the distribution a file for windows > developers to use. It's fairly simple > > > /* since windows doesn't have stdint.h */ > typedef unsigned __int64 uint64_t; > typedef unsigned __int32 uint32_t; > typedef unsigned __int16 uint16_t; > typedef unsigned __int8 uint8_t; > typedef __int64 int64_t; > typedef __int32 int32_t; > typedef __int16 int16_t; > typedef __int8 int8_t; > #if defined(_M_IX64) > typedef unsigned __int128 uint128_t; > typedef __i...
2012 Jun 14
1
High CPU usage
...CPU usage. Today I'm still using the following code before speex_encoder_init and erverything works great: // fix denormals performance issue // http://software.intel.com/en-us/articles/x87-and-sse-floating-point-assists-in-ia-32-flush-to-zero-ftz-and-denormals-are-zero-daz/ __m128 state[32]; __int32 temp; __asm fxsave state; memcpy(&temp, (char*)state + 24, 4); temp |= (1 << 11); // UNDERFLOW_EXCEPTION_MASK temp |= (1 << 15); // FTZ_BIT __asm ldmxcsr temp; Tested with Visual Studio 2010 on x86. Please let me know if it works for you too. Mark -- NEU: FreePhone 3-fach-Flat m...
2010 May 20
10
Libtheora
Hi all, I am Sahana. I am currently working on Libtheora for windows platform and very new to it. I am getting a lot of compiling errors. Since Libtheora depends on libogg and libvorbis i have added these as well to my workspace in VC++ 6. I have a doubt regarding the x86 and x86_vc folders described in the libtheora software.Since both these folders have the same set of files which one do we
2012 Jun 13
0
High CPU usage
...CPU usage. Today I'm still using the following code before speex_encoder_init and erverything works great: // fix denormals performance issue // http://software.intel.com/en-us/articles/x87-and-sse-floating-point-assists-in-ia-32-flush-to-zero-ftz-and-denormals-are-zero-daz/ __m128 state[32]; __int32 temp; __asm fxsave state; memcpy(&temp, (char*)state + 24, 4); temp |= (1 << 11); // UNDERFLOW_EXCEPTION_MASK temp |= (1 << 15); // FTZ_BIT __asm ldmxcsr temp; Tested with Visual Studio 2010 on x86. Please let me know if it works for you too. Mark -- NEU: FreePhone 3-fach-Flat m...
2017 Jan 16
2
MSVC 2005/2008 can't compile libFLAC
...these types from share/compat.h into FLAC/ordinals.h (see attached patch). But it may break some 3rd party programs that include (directly or indirectly) this file and also have their own typedefs for these types. (Also, currently FLAC/ordinals.h contains some nonsense like "typedef uint32_t __int32 FLAC__uint32;", but that's not a real problem) So, what to do? 1) include share/compat.h where needed (but it's too big, and even indirectly includes <windows.h>). 2) create a new file compat_stdint.h or compat_inttypes.h that has only necessary definitions and include it. 3...
2012 Feb 07
2
[PATCH] Remove even more CPP hackery
...ER) || defined(__BORLANDC__)) #include <inttypes.h> #endif +#if HAVE_STDINT_H +#include <stdint.h> +#endif + typedef signed char FLAC__int8; typedef unsigned char FLAC__uint8; @@ -46,13 +54,6 @@ typedef __int64 FLAC__int64; typedef unsigned __int16 FLAC__uint16; typedef unsigned __int32 FLAC__uint32; typedef unsigned __int64 FLAC__uint64; -#elif defined(__EMX__) -typedef short FLAC__int16; -typedef long FLAC__int32; -typedef long long FLAC__int64; -typedef unsigned short FLAC__uint16; -typedef unsigned long FLAC__uint32; -typedef unsigned long long FLAC__uint64; #else typedef i...
2004 Mar 13
1
Ogg / Vorbis Compiling under W32 with MingW ** Problem **
I want to compile ogg and vorbis(version 1.01) under mingw. In the console i typed ./configure make but there is a lot of error while making. here is the errors $ ./configure checking for a BSD-compatible install... /bin/install -c checking whether build environment is sane... yes checking for gawk... gawk checking whether make sets $(MAKE)... yes checking whether to enable maintainer-specific
2000 Dec 08
7
Some scratches with beta3
Hi, I have included the oggvorbis encoding and playback stuff in the Linux-Mandrake distro back in August 2000. At that time I put the "nightly CVS" version, which worked just fine. Then on Mon Nov 27 I noticed some RPM's labelled "1.0beta3" on the website so I upgraded with these ones. Since then we have had some serious problems in encoding: approx 20% of the WAV
2012 Jun 23
9
[PATCH 0/5] btrfs: lz4/lz4hc compression
WARNING: This is not compatible with the previous lz4 patchset. If you''re using experimental compression that isn''t in mainline kernels, be prepared to backup and restore or decompress before upgrading, and have backups in case it eats data (which appears not to be a problem any more, but has been during development). These patches add lz4 and lz4hc compression
2019 Jan 22
0
Wine release 4.0
...iles are always specific to the target platform. The target can be specified the same way as with the other tools, using the cpu-manufacturer-os platform specification. - Nesting of pointers and arrays works correctly. - Correct size and alignment are generated for encapsulated unions. - The __int32 type is supported. - The -robust command line option is recognized (but ignored) for compatibility with the Microsoft IDL compiler. - Multiple typelibs can be generated into a single resource file. *** .NET - 32-bit CIL-only .NET binaries are supported on 64-bit. - The Mono engine is update...
2018 Nov 09
0
Wine release 3.20
...er: Use file mode flags in async_handoff to decide if request is blocking. user32/tests: Add scrollbar subclassing tests. server: Add FILE_SKIP_SET_EVENT_ON_HANDLE support. ntdll: Remove no longer needed event handle from async_irp. ntdll: Update debug trace. widl: Add __int32 type support. widl: Ignore -robust command line option. widl: Check for actual function name when handling call_as attribute. user32: Allow scrollbar control to store scroll info in subclassed window. widl: Create type for async variant of an interface with async_uuid attrib...
2012 Feb 13
10
[RFB] add LZ4 compression method to btrfs
Hi, so here it is, LZ4 compression method inside btrfs. The patchset is based on top of current Chris'' for-linus + Andi''s snappy implementation + the fixes from Li Zefan. Passes xfstests and stresstests. I haven''t measured performance on wide range of hardware or workloads, rather wanted to publish the patches before I get distracted again. I''d like to ask
2005 May 25
3
Speex on TI C6x, Problem with TI C5x Patch
...px_uint64_t; # elif defined(__MWERKS__) typedef long long spx_int64_t; typedef int spx_int32_t; typedef unsigned int spx_uint32_t; typedef short spx_int16_t; typedef unsigned short spx_uint16_t; # else /* MSVC/Borland */ typedef __int64 spx_int64_t; typedef __int32 spx_int32_t; typedef unsigned __int32 spx_uint32_t; typedef __int16 spx_int16_t; typedef unsigned __int16 spx_uint16_t; # endif #elif defined(__MACOS__) # include <sys/types.h> typedef SInt16 spx_int16_t; typedef UInt16 spx_uint16_t; typedef SInt32 spx_int32_t;...