float8get_union 342 ext/mysqlnd/mysqlnd_portability.h #define float8get(V,M) { ((float8get_union *)&(V))->m[0] = *((long*) (M)); \ float8get_union 343 ext/mysqlnd/mysqlnd_portability.h ((float8get_union *)&(V))->m[1] = *(((long*) (M))+1); } float8get_union 344 ext/mysqlnd/mysqlnd_portability.h #define float8store(T,V) { *((long *) (T)) = ((float8get_union *)&(V))->m[0]; \ float8get_union 345 ext/mysqlnd/mysqlnd_portability.h *(((long *) (T))+1) = ((float8get_union *)&(V))->m[1]; }