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