search for: _g_int32_t

Displaying 11 results from an estimated 11 matches for "_g_int32_t".

2001 Jan 19
1
tiny cygwin bug (& solution)
In the file os_types.h (ogg/include/ogg) cygwin (newest version) complains about some error on line 43. Apparently "typedef unsigned _G_int32_t ogg_uint32_t;" is an illegal line .. Anyone have any idea why ? .. Anyway, if "unsigned _G_int32_t" is replaced by "_G_uint32_t", cygwin compiles happily (i attached a cvs diff-file that does this). I still have problems compiling ogg/vorbis though.. The (auto)make-files w...
2004 Dec 20
0
[LLVMdev] Re: Compiling FreeType 2.1.9 with LLVM 1.4
...t/t5/freetype-2.1.9/src/sfnt/sfnt.c" # 1 "/home/adam/t/t5/freetype-2.1.9//" # 1 "/home/adam/t/t5/freetype-2.1.9/src/sfnt/sfnt.c" # 1 "<built-in>" # 1 "<command line>" ... typedef int _G_int16_t __attribute__ ((__mode__ (__HI__))); typedef int _G_int32_t __attribute__ ((__mode__ (__SI__))); typedef unsigned int _G_uint16_t __attribute__ ((__mode__ (__HI__))); typedef unsigned int _G_uint32_t __attribute__ ((__mode__ (__SI__))); ... ...because there's 4.8MB of them and I'd first like to confirm this is what I should be attaching. I'm so...
2000 Sep 13
1
PATCH - mingw compatibility for 9/13/00 build.
I am a mingw coder and I needed to make the following changes to the CVS source from 9/13/00 to get a build: os_types.h L36C16 reads had to change "unsigned _G_int32_t" to "_G_uint32_t" to resolve the compile error: ..\include\vorbis\os_types.h:36:parse error before 'ogg_uint32_t' ..\include\vorbis\os_types.h:36:warning:data definition has no type or storage class ince mingw doesn't have rint I added: "#define rint(x) floor((x) +...
2004 Dec 20
2
[LLVMdev] Re: Compiling FreeType 2.1.9 with LLVM 1.4
..." > # 1 "/home/adam/t/t5/freetype-2.1.9//" > # 1 "/home/adam/t/t5/freetype-2.1.9/src/sfnt/sfnt.c" > # 1 "<built-in>" > # 1 "<command line>" > ... > typedef int _G_int16_t __attribute__ ((__mode__ (__HI__))); > typedef int _G_int32_t __attribute__ ((__mode__ (__SI__))); > typedef unsigned int _G_uint16_t __attribute__ ((__mode__ (__HI__))); > typedef unsigned int _G_uint32_t __attribute__ ((__mode__ (__SI__))); Yup, that would be the preprocessed sources! > ... > > ...because there's 4.8MB of them and I...
2004 Dec 20
3
[LLVMdev] Compiling FreeType 2.1.9 with LLVM 1.4
Adam, I recant my previous message. I built FreeType with GCC not LLVMGCC by accident (I shoulda checked!). The thing is, FreeType's makefiles don't respect environment variables. So, I did this: CC=/path/to/llvmgcc CXX=/path/to/llvmg++ configure make and was able to reproduce the problem. Not sure what's up with that but as Misha pointed out, llvmgcc isn't any
2004 Dec 20
0
[LLVMdev] Re: Compiling FreeType 2.1.9 with LLVM 1.4
...uot;/home/adam/t/t5/freetype-2.1.9//" >># 1 "/home/adam/t/t5/freetype-2.1.9/src/sfnt/sfnt.c" >># 1 "<built-in>" >># 1 "<command line>" >>... >>typedef int _G_int16_t __attribute__ ((__mode__ (__HI__))); >>typedef int _G_int32_t __attribute__ ((__mode__ (__SI__))); >>typedef unsigned int _G_uint16_t __attribute__ ((__mode__ (__HI__))); >>typedef unsigned int _G_uint32_t __attribute__ ((__mode__ (__SI__))); >> >> > >Yup, that would be the preprocessed sources! > > > >>... &...
2015 Jun 03
5
[PATCH 1/1] Updated opus_types.h to correctly support 8 and 64 bit types.
...typedef int16_t opus_int16; typedef uint16_t opus_uint16; typedef int32_t opus_int32; typedef uint32_t opus_uint32; + typedef int64_t opus_int64; + typedef uint64_t opus_uint64; + #elif defined(_WIN32) # if defined(__CYGWIN__) -# include <_G_config.h> - typedef _G_int32_t opus_int32; - typedef _G_uint32_t opus_uint32; - typedef _G_int16 opus_int16; - typedef _G_uint16 opus_uint16; +# include <stdint.h> + typedef int8_t opus_int8; + typedef uint8_t opus_uint8; + typedef int16_t opus_int16; + typedef uint16_t opus_uint16; +...
2004 Aug 26
6
chan_capi module
...error: field `__data' has incomplete type /usr/include/_G_config.h:53: error: storage class specified for parameter `_G_iconv_t'/usr/include/_G_config.h:55: error: storage class specified for parameter`_G_int16_t'/usr/include/_G_config.h:56: error: storage class specified for parameter`_G_int32_t'/usr/include/_G_config.h:57: error: storage class specified for parameter`_G_uint16_t'/usr/include/_G_config.h:58: error: storage class specified for parameter`_G_uint32_t'In file included from /usr/include/libio.h:53, from /usr/include/stdio.h:72, from...
2005 May 25
3
Speex on TI C6x, Problem with TI C5x Patch
...$Id: os_types.h 7524 2004-08-11 04:20:36Z conrad $ ********************************************************************/ #ifndef _SPEEX_TYPES_H #define _SPEEX_TYPES_H #if defined(_WIN32) # if defined(__CYGWIN__) # include <_G_config.h> typedef _G_int64_t spx_int64_t; typedef _G_int32_t spx_int32_t; typedef _G_uint32_t spx_uint32_t; typedef _G_int16_t spx_int16_t; typedef _G_uint16_t spx_uint16_t; # elif defined(__MINGW32__) typedef short spx_int16_t; typedef unsigned short spx_uint16_t; typedef int spx_int32_t; typedef unsigned int spx_uint32_t...
2012 Nov 29
2
[LLVMdev] problem trying to write an LLVM register-allocation pass
I have a new problem: Register RBP is used in a function foo. (I am not allocating RBP to any virtual register, the instances of RBP in function foo are in the machine code when my register allocator starts.) Function foo calls function bar. Register RBP is not saved across the call, though it is live after the call. Function bar includes a virtual register. The code that I'm using to
2012 Dec 01
0
[LLVMdev] problem trying to write an LLVM register-allocation pass
..._steps; __extension__ struct __gconv_step_data __data []; } *__gconv_t; typedef union { struct __gconv_info __cd; struct { struct __gconv_info __cd; struct __gconv_step_data __data; } __combined; } _G_iconv_t; typedef int _G_int16_t __attribute__ ((__mode__ (__HI__))); typedef int _G_int32_t __attribute__ ((__mode__ (__SI__))); typedef unsigned int _G_uint16_t __attribute__ ((__mode__ (__HI__))); typedef unsigned int _G_uint32_t __attribute__ ((__mode__ (__SI__))); typedef __builtin_va_list __gnuc_va_list; struct _IO_jump_t; struct _IO_FILE; typedef void _IO_lock_t; struct _IO_marker {...