Displaying 20 results from an estimated 94 matches for "ull".
Did you mean:
null
2018 Nov 25
3
BUGS n code generated for target i386 compiling __bswapdi3, and for target x86-64 compiling __bswapsi2()
..._bswapsi2 (unsigned long ul)
{
return (((ul) & 0xff000000ul) >> 3 * 8)
| (((ul) & 0x00ff0000ul) >> 8)
| (((ul) & 0x0000ff00ul) << 8)
| (((ul) & 0x000000fful) << 3 * 8);
}
unsigned long long __bswapdi2(unsigned long long ull)
{
return ((ull & 0xff00000000000000ull) >> 7 * 8)
| ((ull & 0x00ff000000000000ull) >> 5 * 8)
| ((ull & 0x0000ff0000000000ull) >> 3 * 8)
| ((ull & 0x000000ff00000000ull) >> 8)
| ((ull & 0x00000000ff000000ull) &l...
2013 Apr 08
1
"No such file or directory" error setting up dict quota for mdbox
Hi, I've some troubles setting up the dict based quota plugin for mdbox, it
always returns a error when lmtp tries to deliver an e-mail:
Apr 8 12:40:16 mb07 dovecot: lmtp(3001, asmarre at ull.es): Error:
fstat(/sharedfs/10.4.1.107/ull.es/54/asmarre/dovecot-quota.lock) failed: No
such file or directory
Apr 8 12:40:16 mb07 dovecot: lmtp(3001, asmarre at ull.es): Error: file dict
commit: file_dotlock_open(/sharedfs/
10.4.1.107/ull.es/54/asmarre/dovecot-quota) failed: No such file or
direc...
2018 Nov 25
3
BUGS n code generated for target i386 compiling __bswapdi3, and for target x86-64 compiling __bswapsi2()
...; 0xff000000ul) >> 3 * 8)
>> | (((ul) & 0x00ff0000ul) >> 8)
>> | (((ul) & 0x0000ff00ul) << 8)
>> | (((ul) & 0x000000fful) << 3 * 8);
>> }
>>
>> unsigned long long __bswapdi2(unsigned long long ull)
>> {
>> return ((ull & 0xff00000000000000ull) >> 7 * 8)
>> | ((ull & 0x00ff000000000000ull) >> 5 * 8)
>> | ((ull & 0x0000ff0000000000ull) >> 3 * 8)
>> | ((ull & 0x000000ff00000000ull) >> 8)
>...
2013 Oct 09
2
unsigned long long suffix
...ontains the following code:
/* adjust for compilers that can't understand using LLU suffix for uint64_t literals */
#ifdef _MSC_VER
#define FLAC__U64L(x) x
#else
#define FLAC__U64L(x) x##LLU
#endif
I tested MSVS 2005 and indeed it doesn't support LLU suffix, but it can compile
a code with ULL suffix. Also, http://gcc.gnu.org/onlinedocs/gcc/Long-Long.html
mentions ?ULL? suffix, not ?LLU?.
I don't know about VS2003 or earlier versions, but if FLAC supports only
Visual Studio 2005 and newer, it's possible to reduce this code to:
#define FLAC__U64L(x) x##ULL
Another version:
/*...
2010 Jun 13
2
[LLVMdev] Bignum development
...ort C
> program:
>
>
> #include <stdlib.h>
> #include <stdio.h>
>
> #define BITS 64
>
> /****************************************
>
> Types
>
> ****************************************/
>
> typedef unsigned long ul;
> typedef __uint128_t ull;
> typedef ulong mp_size;
> typedef const ulong * mp_src;
> typedef ulong * mp_dst;
> typedef ulong * mp_ptr;
>
>
> /****************************************
>
> Random routines
>
> ****************************************/
>
> ull __randval = (ull) 13993185...
2010 Jun 12
0
[LLVMdev] Bignum development
...be able to
retrieve the carry and do an add with carry. Consider this short C
program:
#include <stdlib.h>
#include <stdio.h>
#define BITS 64
/****************************************
Types
****************************************/
typedef unsigned long ul;
typedef __uint128_t ull;
typedef ulong mp_size;
typedef const ulong * mp_src;
typedef ulong * mp_dst;
typedef ulong * mp_ptr;
/****************************************
Random routines
****************************************/
ull __randval = (ull) 13993185049168412078UL;
const ull __randprime = (ull) 9223372036854...
2018 Nov 25
2
BUGS n code generated for target i386 compiling __bswapdi3, and for target x86-64 compiling __bswapsi2()
...| (((ul) & 0x00ff0000ul) >> 8)
> >>> | (((ul) & 0x0000ff00ul) << 8)
> >>> | (((ul) & 0x000000fful) << 3 * 8);
> >>> }
> >>>
> >>> unsigned long long __bswapdi2(unsigned long long ull)
> >>> {
> >>> return ((ull & 0xff00000000000000ull) >> 7 * 8)
> >>> | ((ull & 0x00ff000000000000ull) >> 5 * 8)
> >>> | ((ull & 0x0000ff0000000000ull) >> 3 * 8)
> >>> | ((ull &am...
2010 Jun 13
0
[LLVMdev] Bignum development
...b.h>
>> #include <stdio.h>
>>
>> #define BITS 64
>>
>> /****************************************
>>
>> Types
>>
>> ****************************************/
>>
>> typedef unsigned long ul;
>> typedef __uint128_t ull;
>> typedef ulong mp_size;
>> typedef const ulong * mp_src;
>> typedef ulong * mp_dst;
>> typedef ulong * mp_ptr;
>>
>>
>> /****************************************
>>
>> Random routines
>>
>> **********************************...
2004 Sep 10
0
'out of range' Warnings Building FLAC
...range' warnings during the make,
and these give rise to failures in the test suite:
testing zeroes, raw_uint32*... FAILED pattern match
testing process_until_end_of_stream()... 0... 1... 2...
ERROR: metadata block mismatch
for example.
The problem is that gcc 2.7.2.3 wants a 'ULL' suffix for integer
constants of type 'unsigned long long' (as typedef'ed by FLAC__uint64).
Appending this makes for a clean build and check.
I've attached a patch file, but it's platform specific and the problem
really needs to be sorted out in a portable way.
Also, just...
2010 Jun 13
2
[LLVMdev] Bignum development
...t;
>>>
>>> #define BITS 64
>>>
>>> /****************************************
>>>
>>> Types
>>>
>>> ****************************************/
>>>
>>> typedef unsigned long ul;
>>> typedef __uint128_t ull;
>>> typedef ulong mp_size;
>>> typedef const ulong * mp_src;
>>> typedef ulong * mp_dst;
>>> typedef ulong * mp_ptr;
>>>
>>>
>>> /****************************************
>>>
>>> Random routines
>>>
>>...
2018 Mar 02
0
geo-replication
...---------------------------------------------
> > > > > > > > ------------------------------------------------------------
> > > > > > > > ---------------------------------------------------
> > > > > > > > gluster1 interbullfs /interbullfs geouser
> > > > > > > > ssh://geouser at gluster-geo1::interbullfs-geo gluster-geo2
> > > > Active
> > > > > > > > Changelog Crawl 2018-02-06 11:46:08
> > > > > > > > gluster2 inte...
2003 Jun 29
2
rpcclient returns NT_STATUS_NO_SUCH_DEVICE on adddriver
...putting file /usr/share/cups/drivers/cups.hlp as \W32X86/cups.hlp (731.6 kb/s) (average
1458.8 kb/s)
Running command: rpcclient localhost -N -U'root%password' -c 'adddriver "Windows NT x86"
"MomijiPrintingSystem:cupsdrvr.dll:MomijiPrintingSystem.ppd:cupsui.dll:cups.hlp:NULL:RAW:N
ULL"'
INFO: Debug class all level = 3 (pid 20372 from pid 20372)
session setup ok
Domain=[NAVI] OS=[Unix] Server=[Samba 2.2.8a]
cmd = adddriver "Windows NT x86"
"MomijiPrintingSystem:cupsdrvr.dll:MomijiPrintingSystem.ppd:cupsui.dll:cups.hlp:NULL:RAW:N
ULL"
adddr...
2018 Feb 06
4
geo-replication
...SLAVE NODE STATUS CRAWL STATUS LAST_SYNCED
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------
gluster1 interbullfs /interbullfs geouser ssh://geouser at gluster-geo1::interbullfs-geo gluster-geo2 Active Changelog Crawl 2018-02-06 11:46:08
gluster2 interbullfs /interbullfs geouser ssh://geouser at gluster-geo1::interbullfs-geo gluster-geo1 Passive N...
2009 Dec 07
2
[LLVMdev] Macro redefinitions
In DataTypes.h starting on line 121 are these lines:
#define INT8_C(C) C
#define UINT8_C(C) C
#define INT16_C(C) C
#define UINT16_C(C) C
#define INT32_C(C) C
#define UINT32_C(C) C ## U
#define INT64_C(C) ((int64_t) C ## LL)
#define UINT64_C(C) ((uint64_t) C ## ULL)
They are conflicting with the cstdint when we have updated headers in
our MSVC build. I could have sworn I talked about this before along
with a patch, guess no one ever fixed it, hence consider this a poke.
The above lines should be changed into:
#ifndef INT8_C
# define INT8_C(C) C
#endif
#...
2018 Mar 02
1
geo-replication
...> > > ------------------------------------------------------------
> > > > > > ------------------------------------------------------------
> > > > > > ---------------------------------------------------
> > > > > > gluster1 interbullfs /interbullfs geouser
> > > > > > ssh://geouser at gluster-geo1::interbullfs-geo gluster-geo2
> > Active
> > > > > > Changelog Crawl 2018-02-06 11:46:08
> > > > > > gluster2 interbullfs /interbullfs geouser
>...
2003 Apr 21
2
piece wise functions
...ing in R for that?
I have tried to use nonlinear (nls package)
regression, "forcing" with the "nls" function the shape of the surface,
but it does not work.
By the way, the cofficients A_i have to be positive, but I suppose this is
another question.
Thanks
Casiano
casiano at ull.es
2010 Jun 11
3
[LLVMdev] Bignum development
...ne, we should be
> using LLVM assembly code and writing part of the bignum library on the
> "other side" of this interface.
>
> If you have time, check out the cminusminus language reference. They
> had a bits1 type for flags, like carry from addition, and a mulhi and
> mullo instruction. Now cminusminus never took off and died an untimely
> death (largely because they wrote it in some bizarre ML in my
> opinion), but from a bignum point of view, they got this one minor
> detail right.
Hmm... LLVM currently uses i1 pretty extensively, and you can express
equi...
2018 Feb 06
0
geo-replication
...SLAVE NODE STATUS CRAWL STATUS LAST_SYNCED
> ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------
> gluster1 interbullfs /interbullfs geouser ssh://geouser at gluster-geo1::interbullfs-geo gluster-geo2 Active Changelog Crawl 2018-02-06 11:46:08
> gluster2 interbullfs /interbullfs geouser ssh://geouser at gluster-geo1::interbullfs-geo gluster-geo1 Passive...
2018 Feb 07
1
geo-replication
...SLAVE NODE STATUS CRAWL STATUS
> > LAST_SYNCED
> > ------------------------------------------------------------
> > ------------------------------------------------------------
> > ---------------------------------------------------
> > gluster1 interbullfs /interbullfs geouser
> > ssh://geouser at gluster-geo1::interbullfs-geo gluster-geo2 Active
> > Changelog Crawl 2018-02-06 11:46:08
> > gluster2 interbullfs /interbullfs geouser
> > ssh://geouser at gluster-geo1::interbullfs-geo gluster-geo...
2010 Jun 16
2
[LLVMdev] Bootstrapping llvm
...quot; but get
link
> > errors.
>
> Try using CXX=clang++ instead. Always use clang++ for C++ code. :)
>
clang++ does not exist. I tried "CXX=clang -x c++" but fail with errors, clang
is trying to compile .o files.
"llvm/utils/fpcmp/Release/fpcmp.o:4:2235: warning: ull character ignored"
with
./configure --enable-optimized --with-clang=/usr/bin/clang CC=/usr/bin/clang
CXX="/usr/bin/clang -x c++"
Tried clean svn, but fails too. Did I something wrong?