Displaying 7 results from an estimated 7 matches for "unisgn".
Did you mean:
unison
2014 Sep 30
2
[LLVMdev] size_t?
...R_WINDOWS
#define NOMINMAX
/* deal with the fact that windef.h also defines BOOL */
#define BOOL WINBOOL
#include <windows.h>
#include <intrin.h>
#undef BOOL
#endif
Looking at the preprocessor expansion of a typical .cpp file, I see that
crtdefs.h defines size_t like this:
typedef unisgned __int64 size_t;
Later on, <LLVM>\lib\clang\3.6.0\includes\stddef.h defines it as:
typedef unsigned int size_t;
Is there some other magic I need to do to get these to work?
I'm also seeing a bunch of errors like this having to do with intrinsics:
1> In file included from C:\Prog...
2014 Sep 30
2
[LLVMdev] size_t?
...t; #define BOOL WINBOOL
>
> #include <windows.h>
> #include <intrin.h>
>
> #undef BOOL
> #endif
>
> Looking at the preprocessor expansion of a typical .cpp file, I
> see that crtdefs.h defines size_t like this:
>
> typedef unisgned __int64 size_t;
>
> Later on, <LLVM>\lib\clang\3.6.0\includes\stddef.h defines it as:
>
> typedef unsigned int size_t;
>
> Is there some other magic I need to do to get these to work?
>
> I'm also seeing a bunch of errors like this having to do wi...
2014 Oct 01
2
[LLVMdev] size_t?
...OOL WINBOOL
>>
>> #include <windows.h>
>> #include <intrin.h>
>>
>> #undef BOOL
>> #endif
>>
>> Looking at the preprocessor expansion of a typical .cpp file, I see that
>> crtdefs.h defines size_t like this:
>>
>> typedef unisgned __int64 size_t;
>>
>> Later on, <LLVM>\lib\clang\3.6.0\includes\stddef.h defines it as:
>>
>> typedef unsigned int size_t;
>>
>> Is there some other magic I need to do to get these to work?
>>
>> I'm also seeing a bunch of errors like this...
2004 Oct 16
0
Re: [Ocfs2-commits] manish commits r1580 - trunk/src
...s@oss.oracle.com wrote:
> Author: manish
> Date: 2004-10-15 15:51:10 -0500 (Fri, 15 Oct 2004)
> New Revision: 1580
>
> Modified:
> trunk/src/suballoc.c
> Log:
> cast bitops on bg_bitmap to unsigned long *
Are these disk or core structures? IF core please just make them
unisgned long, if they're ondisk you just sayd goodbye to binary
compatiblity for BE and LE 64bit hosts.
2010 Dec 13
0
PATCH: btrfs ioctl for waiting for kernel cleaner thread task completions kernel code
...ded, as well as a
flag bit reserved for strict versioning. Calling it with a flags field
of 0xFFFFFFFA will wait for everything it knows how to wait for,
including things it doesn''t know how to wait for now.
It is also architecture-safe, using u32 in the interface arg structure
instead of unisgned long.
A revised btrfs-progs patch (that uses __u32 instead of unsigned long
in the interface object) will be forthcoming soon, to the btrfs list.
Question: is it safe to examine list_empty(fs->delayed_iputs) without
taking the spinlock that protects that list in inode.c?
--
“The aeroplane...
2015 Mar 18
2
[LLVMdev] GSoC:Loop Reversal Transformation
Hi Matt, All,
Thanks for looking into this and your suggestions.
I compiled the program with -O3 optimization level (clang -O3) on X86_64
target.
After your suggestion, i ran the program with iteration of 10000 runs and
found that average runtimes are (attaching data collected as well)
Forward loop traverse : 2.006 milli seconds
Reverse loop traverse : 1.531 milli seconds
Yes, i agree that
2014 Oct 01
2
[LLVMdev] size_t?
...de <windows.h>
>>> #include <intrin.h>
>>>
>>> #undef BOOL
>>> #endif
>>>
>>> Looking at the preprocessor expansion of a typical .cpp file, I see that
>>> crtdefs.h defines size_t like this:
>>>
>>> typedef unisgned __int64 size_t;
>>>
>>> Later on, <LLVM>\lib\clang\3.6.0\includes\stddef.h defines it as:
>>>
>>> typedef unsigned int size_t;
>>>
>>> Is there some other magic I need to do to get these to work?
>>>
>>> I'm also se...