search for: maxuint

Displaying 19 results from an estimated 19 matches for "maxuint".

Did you mean: max_int
2012 Oct 21
2
[LLVMdev] dyld: lazy symbol binding failed: fast lazy bind offset out of range
...cktraces as... (gdb) bt #0 0x00007fff5fc0106d in __dyld_dyld_fatal_error () #1 0x00007fff5fc048c8 in __dyld__ZN4dyld4haltEPKc () #2 0x00007fff5fc04948 in __dyld__ZN4dyld18fastBindLazySymbolEPP11ImageLoaderm () #3 0x00007fff90af7716 in dyld_stub_binder_ () #4 0x0000000100f3b2c0 in Json::Value::maxUInt () #5 0x00007fff5fc0fda6 in __dyld__ZN16ImageLoaderMachO18doModInitFunctionsERKN11ImageLoader11LinkContextE () #6 0x00007fff5fc0faf2 in __dyld__ZN16ImageLoaderMachO16doInitializationERKN11ImageLoader11LinkContextE () #7 0x00007fff5fc0d2e4 in __dyld__ZN11ImageLoader23recursiveInitializationERKNS_...
2012 Oct 22
0
[LLVMdev] dyld: lazy symbol binding failed: fast lazy bind offset out of range
Jack, Some binary has an initializer which dyld is calling. Somehow the initializer gets to: #4 0x0000000100f3b2c0 in Json::Value::maxUInt () which is calling a function in another dylib for the first time. When you call a function in another dylib, you actually jump through a (lazy) pointer. The pointer initially points to a helper which loads an index parameter specifying which function to bind, then jumps into dyld. Dyld is erro...
2012 Oct 22
2
[LLVMdev] dyld: lazy symbol binding failed: fast lazy bind offset out of range
On Sun, Oct 21, 2012 at 06:00:36PM -0700, Nick Kledzik wrote: > Jack, > > Some binary has an initializer which dyld is calling. Somehow the initializer gets to: > #4 0x0000000100f3b2c0 in Json::Value::maxUInt () > which is calling a function in another dylib for the first time. When you call a function in another dylib, you actually jump through a (lazy) pointer. The pointer initially points to a helper which loads an index parameter specifying which function to bind, then jumps into dyld. Dyld is...
2012 Oct 22
0
[LLVMdev] dyld: lazy symbol binding failed: fast lazy bind offset out of range
...Mon, Oct 22, 2012 at 09:48:59AM -0400, Jack Howarth wrote: > On Sun, Oct 21, 2012 at 06:00:36PM -0700, Nick Kledzik wrote: > > Jack, > > > > Some binary has an initializer which dyld is calling. Somehow the initializer gets to: > > #4 0x0000000100f3b2c0 in Json::Value::maxUInt () > > which is calling a function in another dylib for the first time. When you call a function in another dylib, you actually jump through a (lazy) pointer. The pointer initially points to a helper which loads an index parameter specifying which function to bind, then jumps into dyld. Dy...
2017 Jul 31
4
unsigned operations with negative numbers
Hello, I want to know, if I can always assume that when I do unsigned operations like udiv, urem I will get the both operands converted to unsigned values? with under optimized version of code I sometimes receive these lines: unsigned a = 123; int b = -2; int c = a / b; -> %1 = udiv i32 123, -2 and get the result 0. Will it always be zero? or is it undefined?
2012 Oct 23
0
[LLVMdev] dyld: lazy symbol binding failed: fast lazy bind offset out of range
...00, Jack Howarth wrote: >>> On Sun, Oct 21, 2012 at 06:00:36PM -0700, Nick Kledzik wrote: >>>> Jack, >>>> >>>> Some binary has an initializer which dyld is calling. Somehow the initializer gets to: >>>> #4 0x0000000100f3b2c0 in Json::Value::maxUInt () >>>> which is calling a function in another dylib for the first time. When you call a function in another dylib, you actually jump through a (lazy) pointer. The pointer initially points to a helper which loads an index parameter specifying which function to bind, then jumps into dy...
2012 Oct 22
5
[LLVMdev] dyld: lazy symbol binding failed: fast lazy bind offset out of range
...2 at 09:48:59AM -0400, Jack Howarth wrote: >> On Sun, Oct 21, 2012 at 06:00:36PM -0700, Nick Kledzik wrote: >>> Jack, >>> >>> Some binary has an initializer which dyld is calling. Somehow the initializer gets to: >>> #4 0x0000000100f3b2c0 in Json::Value::maxUInt () >>> which is calling a function in another dylib for the first time. When you call a function in another dylib, you actually jump through a (lazy) pointer. The pointer initially points to a helper which loads an index parameter specifying which function to bind, then jumps into dyld....
2017 Jul 25
2
undef value
Hello, I am opening llvm more and more for me, so now I have some questions about shifting and undef value: 1) undef value is like a separate entity. But I have seen in some notes, that this is legal to compute expressions with undef value. So , undef |1 will be equal to one (the size of the result will depended on the size of one)? And undef & 0 will be equal to zero and so on? 2) Is it
2012 Oct 22
0
[LLVMdev] dyld: lazy symbol binding failed: fast lazy bind offset out of range
...ck Howarth wrote: > >> On Sun, Oct 21, 2012 at 06:00:36PM -0700, Nick Kledzik wrote: > >>> Jack, > >>> > >>> Some binary has an initializer which dyld is calling. Somehow the initializer gets to: > >>> #4 0x0000000100f3b2c0 in Json::Value::maxUInt () > >>> which is calling a function in another dylib for the first time. When you call a function in another dylib, you actually jump through a (lazy) pointer. The pointer initially points to a helper which loads an index parameter specifying which function to bind, then jumps into d...
2012 Oct 23
2
[LLVMdev] dyld: lazy symbol binding failed: fast lazy bind offset out of range
...te: >>>> On Sun, Oct 21, 2012 at 06:00:36PM -0700, Nick Kledzik wrote: >>>>> Jack, >>>>> >>>>> Some binary has an initializer which dyld is calling. Somehow the initializer gets to: >>>>> #4 0x0000000100f3b2c0 in Json::Value::maxUInt () >>>>> which is calling a function in another dylib for the first time. When you call a function in another dylib, you actually jump through a (lazy) pointer. The pointer initially points to a helper which loads an index parameter specifying which function to bind, then jumps int...
2012 Oct 23
0
[LLVMdev] dyld: lazy symbol binding failed: fast lazy bind offset out of range
On Oct 23, 2012, at 1:57 PM, Jack Howarth wrote: > Nick, > Can I do this without access to a debug version of dyld? Using the copy of LLVMPolly.so with isl/cloog-isl/gmp statically linked, > I find that if I set the breakpoint to the address of the initializer... > > dyld: calling initializer function 0x100ebb3a0 in /sw/opt/llvm-3.2/lib/LLVMPolly.so > dyld: lazy symbol binding
2012 Oct 23
2
[LLVMdev] dyld: lazy symbol binding failed: fast lazy bind offset out of range
...fff5fc0123f in __dyld__ZN13dyldbootstrap5startEPK12macho_headeriPPKclS2_Pm () #1 0x00007fff5fc02138 in __dyld__ZN4dyld4haltEPKc () #2 0x00007fff5fc04048 in __dyld__ZN4dyld18fastBindLazySymbolEPP11ImageLoaderm () #3 0x00007fff8bd808ee in dyld_stub_binder_ () #4 0x0000000100faf3e0 in Json::Value::maxUInt () #5 0x0000000100ebad65 in pch_address_space () #6 0x0000000100ebb5a0 in pch_address_space () #7 0x0000000100ebb5b9 in pch_address_space () #8 0x00007fff5fc13378 in __dyld__ZN16ImageLoaderMachO18doModInitFunctionsERKN11ImageLoader11LinkContextE () #9 0x00007fff5fc13762 in __dyld__ZN16ImageLoa...
2012 Oct 23
2
[LLVMdev] dyld: lazy symbol binding failed: fast lazy bind offset out of range
On Tue, Oct 23, 2012 at 01:05:04PM -0700, Nick Kledzik wrote: > On Oct 23, 2012, at 12:50 PM, Jack Howarth wrote: > > On Mon, Oct 22, 2012 at 11:40:32AM -0700, Nick Kledzik wrote: > >> > >> On Oct 22, 2012, at 11:34 AM, Jack Howarth wrote: > >> > >>> Nick, > >>> I have uploaded the full walk with 'set env
2007 Apr 17
0
15 commits - libswfdec/jpeg libswfdec/swfdec_bits.c libswfdec/swfdec_edittext.c libswfdec/swfdec_font.c libswfdec/swfdec_image.c libswfdec/swfdec_root_sprite.c libswfdec/swfdec_script.c libswfdec/swfdec_shape.c libswfdec/swfdec_sprite.c
...bits, 4); shape->n_line_bits = swfdec_bits_getbits (bits, 4); } diff-tree b498ba186ab9d587cc087ae9ab5952f1d5b2865a (from 45c89c3d902be858a304539165d1160e822fba52) Author: Benjamin Otte <otte@gnome.org> Date: Tue Apr 17 12:19:27 2007 +0200 avoid overflow issues when bytes is near MAXUINT diff --git a/libswfdec/swfdec_bits.c b/libswfdec/swfdec_bits.c index 8eef225..0f7e4c9 100644 --- a/libswfdec/swfdec_bits.c +++ b/libswfdec/swfdec_bits.c @@ -95,7 +95,9 @@ swfdec_bits_init_bits (SwfdecBits *bits, bits->buffer = from->buffer; bits->ptr = from->ptr; - bits->en...
2007 Apr 17
0
Branch 'as' - 17 commits - libswfdec/jpeg libswfdec/swfdec_bits.c libswfdec/swfdec_font.c libswfdec/swfdec_image.c libswfdec/swfdec_root_sprite.c libswfdec/swfdec_script.c libswfdec/swfdec_shape.c libswfdec/swfdec_sound.c libswfdec/swfdec_sprite.c
...bits, 4); shape->n_line_bits = swfdec_bits_getbits (bits, 4); } diff-tree b498ba186ab9d587cc087ae9ab5952f1d5b2865a (from 45c89c3d902be858a304539165d1160e822fba52) Author: Benjamin Otte <otte@gnome.org> Date: Tue Apr 17 12:19:27 2007 +0200 avoid overflow issues when bytes is near MAXUINT diff --git a/libswfdec/swfdec_bits.c b/libswfdec/swfdec_bits.c index 8eef225..0f7e4c9 100644 --- a/libswfdec/swfdec_bits.c +++ b/libswfdec/swfdec_bits.c @@ -95,7 +95,9 @@ swfdec_bits_init_bits (SwfdecBits *bits, bits->buffer = from->buffer; bits->ptr = from->ptr; - bits->en...
2012 Oct 24
0
[LLVMdev] dyld: lazy symbol binding failed: fast lazy bind offset out of range
...d__ZN13dyldbootstrap5startEPK12macho_headeriPPKclS2_Pm () > #1 0x00007fff5fc02138 in __dyld__ZN4dyld4haltEPKc () > #2 0x00007fff5fc04048 in __dyld__ZN4dyld18fastBindLazySymbolEPP11ImageLoaderm () > #3 0x00007fff8bd808ee in dyld_stub_binder_ () > #4 0x0000000100faf3e0 in Json::Value::maxUInt () > #5 0x0000000100ebad65 in pch_address_space () > #6 0x0000000100ebb5a0 in pch_address_space () > #7 0x0000000100ebb5b9 in pch_address_space () > #8 0x00007fff5fc13378 in __dyld__ZN16ImageLoaderMachO18doModInitFunctionsERKN11ImageLoader11LinkContextE () > #9 0x00007fff5fc1376...
2007 Apr 27
0
Changes to 'refs/tags/0.4.4'
...wfdecBits struct directly sanely skip offsets in DefineFont2 handle morph shape offset sanely Fix various failures to sanely read buffers only convert variable names if they exist movies without a rate don't have sound avoid overflow issues when bytes is near MAXUINT it's not this code's job to syncbits break out of loop if no more bits are available break the ExportAssets loop if no more bytes are available return if no data is available add more characters that aren't escaped graphic may not be NULL update...
2013 Oct 26
2
[PATCH] 1. changes for vdiskadm on illumos based platform
...rray = stack; stack += VDEV_UBERBLOCK_RING; osp = (objset_phys_t *)stack; @@ -1305,8 +1562,6 @@ zfs_mount(void) for (label = 0; label < VDEV_LABELS; label++) { - uint64_t sector; - /* * some eltorito stacks don''t give us a size and * we end up setting the size to MAXUINT, further @@ -1324,39 +1579,38 @@ zfs_mount(void) /* Read in the uberblock ring (128K). */ if (devread(sector + - ((VDEV_SKIP_SIZE + VDEV_PHYS_SIZE) >> - SPA_MINBLOCKSHIFT), 0, VDEV_UBERBLOCK_RING, - (char *)ub_array) == 0) + ((VDEV_SKIP_SIZE + VDEV_PHYS_SIZE) >...
2008 Jan 21
0
70 commits - configure.ac libswfdec-gtk/Makefile.am libswfdec-gtk/swfdec-gtk.h libswfdec-gtk/swfdec_gtk_loader.c libswfdec-gtk/swfdec_gtk_player.c libswfdec-gtk/swfdec_gtk_socket.c libswfdec-gtk/swfdec_gtk_socket.h libswfdec-gtk/swfdec_playback_alsa.c
...cSpriteMovie * movie; /* the movie responsible for creating this instance */ SwfdecLoader * loader; /* the loader providing data for the decoder */ commit 34887b70ad9a823a6f179564c137d685aef3886f Author: Benjamin Otte <otte at gnome.org> Date: Mon Jan 21 12:44:44 2008 +0100 use MAXUINT as a version identifier diff --git a/libswfdec/swfdec_as_context.c b/libswfdec/swfdec_as_context.c index e5778ef..ccce123 100644 --- a/libswfdec/swfdec_as_context.c +++ b/libswfdec/swfdec_as_context.c @@ -558,6 +558,8 @@ swfdec_as_context_init (SwfdecAsContext *context) { const char *s; + c...