Displaying 8 results from an estimated 8 matches for "_g_uint16_t".
Did you mean:
_g_int16_t
2004 Dec 20
0
[LLVMdev] Re: Compiling FreeType 2.1.9 with LLVM 1.4
...reetype-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 sorry but at this stage I don't have the
capabilities to narrow down...
2004 Dec 20
2
[LLVMdev] Re: Compiling FreeType 2.1.9 with LLVM 1.4
...t;/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'd first like to confirm this is
> what I should be attaching. I'm...
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
...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'd first like to...
2004 Aug 26
6
chan_capi module
...e 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 /usr/include/asterisk/monitor.h:4,
from /usr/include/asterisk/channel.h:...
2005 May 25
3
Speex on TI C6x, Problem with TI C5x Patch
...********/
#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;
typedef long long spx_int64_t;
typedef unsigned long long spx_uint64_t;
# elif defined(__MWERKS__)...
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
...v_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 {
struct _IO_marker *_next;
struct _IO_FILE *_sbuf;
int _pos;
}...