search for: guint32_from_l

Displaying 2 results from an estimated 2 matches for "guint32_from_l".

Did you mean: guint32_from_le
2007 Jul 11
0
libswfdec/swfdec_bits.c
...nv.i[0] = conv.i[1]; - conv.i[1] = tmp; - } + conv.i[1] = (b->ptr[3] << 24) | (b->ptr[2] << 16) | (b->ptr[1] << 8) | b->ptr[0]; + conv.i[0] = (b->ptr[7] << 24) | (b->ptr[6] << 16) | (b->ptr[5] << 8) | b->ptr[4]; #else - conv.i[0] = GUINT32_FROM_LE (conv.i[0]); - conv.i[1] = GUINT32_FROM_LE (conv.i[1]); + conv.i[0] = (b->ptr[3] << 24) | (b->ptr[2] << 16) | (b->ptr[1] << 8) | b->ptr[0]; + conv.i[1] = (b->ptr[7] << 24) | (b->ptr[6] << 16) | (b->ptr[5] << 8) | b->ptr[4]; +#if 0 + c...
2007 Jul 11
0
Branch 'as' - 3 commits - libswfdec/swfdec_bits.c
...nv.i[0] = conv.i[1]; - conv.i[1] = tmp; - } + conv.i[1] = (b->ptr[3] << 24) | (b->ptr[2] << 16) | (b->ptr[1] << 8) | b->ptr[0]; + conv.i[0] = (b->ptr[7] << 24) | (b->ptr[6] << 16) | (b->ptr[5] << 8) | b->ptr[4]; #else - conv.i[0] = GUINT32_FROM_LE (conv.i[0]); - conv.i[1] = GUINT32_FROM_LE (conv.i[1]); + conv.i[0] = (b->ptr[3] << 24) | (b->ptr[2] << 16) | (b->ptr[1] << 8) | b->ptr[0]; + conv.i[1] = (b->ptr[7] << 24) | (b->ptr[6] << 16) | (b->ptr[5] << 8) | b->ptr[4]; +#if 0 + c...