Displaying 20 results from an estimated 270 matches for "2147483648".
Did you mean:
2147483647
2006 May 25
2
Best way to validate an integer field?
I am trying to validate an integer field called quantity. I don''t know
how to chack if it has gone beyond or below the maximum or minimum value
allowed by the Firebird RDBMS. I tired adding this code to the validate
method in the model:
if (quantity > -2147483648) and (quantity < 2147483648)
errors.add("quantity", "is out of range (must be between
-2147483648 and 2147483648)")
end
But when I try entering a big value for example a bunch of numbers in
the form field I get this sql error when I hit edit:
FireRuby::FireR...
2007 May 03
2
[patch] Mac Universal Binaries
On 5/3/07, Erik de Castro Lopo <mle+la@mega-nerd.com> wrote:
> Peter Grayson wrote:
>
> Personally I think universal binaries are a bad idea.
They have obviously served some purpose, but I tend to agree that the
concept does not seem to scale well once outside the Apple microcosm.
> For one of my projects, libsndfile, endian issues is not the only
> think that breaks in
2007 Jan 10
9
[Patch] Fix the slow wall clock time issue in x64 SMP Vista
In x64 SMP Vista HVM guest (vcpus=2 in the configuration file), the wall
clock time is 50% slower than that in the real world. The attached patch
fixes the issue.
-- Dexuan
Signed-off-by: Dexuan Cui <dexuan.cui@intel.com>
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
2023 Jul 28
1
check_account: Failed to find local account with UID" issue / The university of Chicago
...fork = yes
fruit:veto_appledouble = no
fruit:posix_rename = yes
fruit:model = MacSamba
fruit:metadata = stream
fileid:algorithm = fsname
idmap config ad : range = 1401-2147483647
idmap config ad : backend = sss
idmap config * : range = 2147483648-3000000000
idmap config * : backend = tdb2
hosts allow = 127. 128.135.0.0/255.255.0.0 205.208.0.0/255.255.128.0 10.0.0.0/255.0.0.0 192.170.192.0/255.255.224.0
invalid users = root bin daemon adm lp sync shutdown halt mail operator games ftp nobody dbus systemd-coredump syste...
2007 May 03
0
[patch] Mac Universal Binaries
...besides
> endianess?
One issue I found was the cpu behaviour when converting from
float/double to int32 when the source float is outside the range
of values that can be represented by the int32.
For instance:
float int32_ppc in32_x86
2147483649.0 2147483647 -2147483648
2147483648.0 2147483647 -2147483648
2147483647.0 2147483647 2147483647 (0x7fffffff)
....
-2147483648.0 -2147483648 -2147483648
-2147483649.0 -2147483648 -2147483648 (0x80000000)
-2147483650.0 -2147483648 -2147483648
As you can see out of...
2008 Mar 28
1
bwlimit on rsync locally
...sync without --bwlimit:
> iostat; rsync -a -r --stats swapfile swapfile.rsync; iostat
Device: tps Blk_read/s Blk_wrtn/s Blk_read Blk_wrtn
sda 7.53 103.43 421.27 64549578 262909196
Number of files: 1
Number of files transferred: 1
Total file size: 2147483648 bytes
Total transferred file size: 2147483648 bytes
Literal data: 2147483648 bytes
Matched data: 0 bytes
File list size: 73
File list generation time: 0.063 seconds
File list transfer time: 0.000 seconds
Total bytes sent: 2147745923
Total bytes received: 42
sent 2147745923 bytes received 42 bytes...
2015 Sep 10
3
[OpenCL] Implicit arithmetic conversion of INT_MIN to int vector type
Hello,
I recently came across an OpenCL kernel in which an int vector type was subtracted from the INT_MIN constant, e.g.
int2 v2 = INT_MIN - (int2)(0);
INT_MIN was defined as
#define INT_MIN (-2147483648)
Clang in OpenCL modes (-x cl) produces the following error:
vector_conversion.c:12:42: error: can't convert between vector values of different size ('long' and 'int2' (vector of 2 'int' values))
int2 v_int = INT_MIN - (int2)(0); // Only error long...
2012 Dec 30
1
Sheet index (-2147483648) is out of range (0..15)
Dear useRs,
while working in XLConnect, i noticed a strange error
"Error: IllegalArgumentException (Java): Sheet index (-2147483648) is out of range (0..15)"
there is not much help available about it online. Can anyone please help?
elisa
[[alternative HTML version deleted]]
2006 Sep 04
5
[LLVMdev] bug in llvm-gcc implementation of long long
Compiling the following C code
--------------------------------------------
long long f4(void) {
return (long long)INT_MAX + 1;
}
-------------------------------------------
produces
------------------------------------------
long %f4() {
entry:
ret long -2147483648
}
------------------------------------------
but in 64 bits, -2147483648 != 2147483648. As a result, the x86 output has
eax = 2147483648
edx = 4294967295
the correct output is
eax = 2147483648
edx = 0
Best Regards,
Rafael
2009 Mar 19
2
Panic: Trying to allocate 2147483648 bytes
...ve anything to do with
the indexes. We generally have much more of them anyways. So far
everything is working smoothly, but when someone does a search through
directory with a large number of emails, dovecot dies and prints the
following message:
[ID 107833 mail.crit] Panic: Trying to allocate 2147483648 bytes
I googled around and saw this same issue elsewhere, with NFS indexes
usually being the problem. However, we have indexes turned off, so I
don't understand why the same problem is still happening.
Just to be sure, I ran with:
mmap_disable = yes
dotlock_use_excl = no
mail_nfs_storage =...
2007 May 03
2
[patch] Mac Universal Binaries
...I found was the cpu behaviour when converting from
> float/double to int32 when the source float is outside the range
> of values that can be represented by the int32.
>
> For instance:
>
> float int32_ppc in32_x86
> 2147483649.0 2147483647 -2147483648
> 2147483648.0 2147483647 -2147483648
> 2147483647.0 2147483647 2147483647 (0x7fffffff)
> ....
> -2147483648.0 -2147483648 -2147483648
> -2147483649.0 -2147483648 -2147483648 (0x80000000)
> -2147483650.0 -2147483648 -2147...
2009 Jun 18
2
Argument as.integer(NA) to a function C
...sai(int *t){
Rprintf("\nT0=%i T1=%i T2=%i T3=%i",t[0],t[1],t[2],t[3]);
}
--- R ---
boub <- c(1,2,3,4)
.C("pour",as.integer(boub),NAOK=TRUE)
# T0=1 T1=2 T2=3 T3=4[[1]]
# [1] 1 2 3 4
boub <- c(1,2,NA,4)
.C("essai",as.integer(boub),NAOK=TRUE)
# T0=1 T1=2 T2=-2147483648 T3=4[[1]]
# [1] 1 2 NA 4
--- ---
In the second example, T2=-2147483648 and not NA.
I check the "writing R extension", there is a part that explain that the
test of NA is not the same between double and integer (NA_INTEGER,
ISNA), but I did not find explanation on passing NA argumen...
2014 Jun 20
10
[Bug 80266] New: Undefined operation in tgsi_ureg.c left shift of 1 by 31 places cannot be represented in type 'int'
https://bugs.freedesktop.org/show_bug.cgi?id=80266
Priority: medium
Bug ID: 80266
Assignee: nouveau at lists.freedesktop.org
Summary: Undefined operation in tgsi_ureg.c left shift of 1 by
31 places cannot be represented in type 'int'
Severity: minor
Classification: Unclassified
OS: Linux (All)
2018 Jun 29
2
[Bug 13496] New: lseek returned -1, not 2147483648: Invalid argument (22)
https://bugzilla.samba.org/show_bug.cgi?id=13496
Bug ID: 13496
Summary: lseek returned -1, not 2147483648: Invalid argument
(22)
Product: rsync
Version: 3.1.2
Hardware: Sparc
OS: Solaris
Status: NEW
Severity: normal
Priority: P5
Component: core
Assignee: wayned at samba.org
R...
2017 Jul 24
2
LazyValueInfo vs ScalarEvolution
...; preds = %bb85, %bb73
%tmp86 = phi i32 [ 1, %bb73 ], [ %tmp95, %bb85 ]
%tmp95 = add nsw i32 %tmp86, 1
%tmp96 = icmp slt i32 %tmp95, 20
br i1 %tmp96, label %bb85, label %bb97
LazyValueInfo give:
POP %tmp86 = phi i32 [ 1, %bb73 ], [ %tmp95, %bb85 ] in bb85 =
constantrange<-2147483648, 20>
While ScalarEvolution give:
%tmp86 = phi i32 [ 1, %bb73 ], [ %tmp95, %bb85 ]
--> {1,+,1}<nuw><nsw><%bb85> U: [1,20) S: [1,20) Exits: 19
LoopDispositions: { %bb85: Computable, %bb73: Variant, %bb46:
Variant }
In this example, the range of %...
2017 Nov 08
5
Is it ok to allocate > half of address space?
...in C or not, but the IR produced by clang
looks like (32 bits):
@obj = common global [2147483656 x i8] zeroinitializer, align 1
define signext i8 @f() {
store i8 1, i8* getelementptr inbounds (i8, i8* getelementptr
inbounds ([2147483656 x i8], [2147483656 x i8]* @obj, i32 0, i32 0),
i32 -2147483648), align 1
call void @llvm.memcpy.p0i8.p0i8.i32(i8* getelementptr inbounds
([2147483656 x i8], [2147483656 x i8]* @obj, i32 0, i32 2040109465),
i8* getelementptr inbounds ([5 x i8], [5 x i8]* @.str, i32 0, i32 0),
i32 4, i32 1, i1 false)
%1 = load i8, i8* getelementptr inbounds (i8, i8*...
2007 Sep 04
12
VM start time slows with large number of VMs
...) (ramdisk /boot/initrd-xen) (args ''root=/dev/sda2 ro
ip=10.0.27.2:1.2.3.4::255.254.0.0::eth0:off xencons=tty1 3'') (notes
(FEATURES
''writable_page_tables|writable_descriptor_tables|auto_translated_physmap
|pae_pgdir_above_4gb|supervisor_mode_kernel'') (VIRT_BASE -2147483648)
(GUEST_VERSION 2.6) (PADDR_OFFSET -2147483648) (GUEST_OS linux)
(HYPERCALL_PAGE -2145361920) (LOADER generic) (SUSPEND_CANCEL 1) (ENTRY
-2145386496) (XEN_VERSION xen-3.0)))", ''name'': ''xen002''}
[2007-09-02 05:26:46 8597] DEBUG (XendDomainInfo:823) Storing do...
2014 Jul 01
2
[LLVMdev] Probable error in InstCombine
I've found what appears to be a bug in instcombine. Specifically, the transformation of -(X/C) to X/(-C) is invalid if C == INT_MIN.
Specifically, if I have
> define i32 @foo(i32 %x) #0 {
> entry:
> %div = sdiv i32 %x, -2147483648
> %sub = sub nsw i32 0, %div
> ret i32 %sub
> }
then opt -instcombine will produce
> define i32 @foo(i32 %x) #0 {
> entry:
> %sub = sdiv i32 %x, -2147483648
> ret i32 %sub
> }
You can observe this with the following test case:
> #include <stdio.h>
> #inc...
2007 Dec 20
0
13 commits - libswfdec/swfdec_as_array.c libswfdec/swfdec_xml.c libswfdec/swfdec_xml_node.c test/trace
...[type Object] />
26: toString!
[type Object]
+Creating with: (55) [type Object] (object)
+27: toString!
+<[type Object] />
+27: toString!
+[type Object]
application/x-www-form-urlencoded
<!DOCTYPE doctype declaration >
false
@@ -696,28 +717,28 @@ Infinity
Infinity
true
true
--2147483648
+0
Infinity
Testing with: (10) -Infinity (number)
-Infinity
-Infinity
true
true
--2147483648
+0
-Infinity
Testing with: (11) NaN (number)
NaN
NaN
false
false
--2147483648
+0
NaN
Testing with: (12) (string)
false
false
--2147483648
+0
Testing with: (13) 0 (string)
0
@@ -752,...
2006 Jul 26
2
mean(NA) returns -(1+.Machine$integer.max) (PR#9097)
Full_Name: Benjamin Tyner
Version: 2.3.0
OS: linux-gnu (debian)
Submission from: (NULL) (71.98.75.54)
> mean(NA)
returns -2147483648 on my system, which is -(1+.Machine$integer.max)
> sessionInfo()
Version 2.3.0 (2006-04-24)
i686-pc-linux-gnu
attached base packages:
[1] "methods" "stats" "graphics" "grDevices" "utils" "datasets"
[7] "base"