Lines Matching refs:V

342 #define float8get(V,M)    { ((float8get_union *)&(V))->m[0] = *((long*) (M)); \  argument
343 ((float8get_union *)&(V))->m[1] = *(((long*) (M))+1); }
344 #define float8store(T,V) { *((long *) (T)) = ((float8get_union *)&(V))->m[0]; \ argument
345 *(((long *) (T))+1) = ((float8get_union *)&(V))->m[1]; }
346 #define float4get(V,M) { *((float *) &(V)) = *((float*) (M)); } argument
348 #define floatget(V,M) memcpy((char*) &(V),(char*) (M),sizeof(float)) argument
422 #define float4get(V,M) do { float def_temp;\ argument
427 (V)=def_temp; } while (0)
428 #define float8store(T,V) do { \ argument
429 *(((char *)(T))) = (char) ((char *) &(V))[7];\
430 *(((char *)(T))+1) = (char) ((char *) &(V))[6];\
431 *(((char *)(T))+2) = (char) ((char *) &(V))[5];\
432 *(((char *)(T))+3) = (char) ((char *) &(V))[4];\
433 *(((char *)(T))+4) = (char) ((char *) &(V))[3];\
434 *(((char *)(T))+5) = (char) ((char *) &(V))[2];\
435 *(((char *)(T))+6) = (char) ((char *) &(V))[1];\
436 *(((char *)(T))+7) = (char) ((char *) &(V))[0]; } while (0)
438 #define float8get(V,M) do { double def_temp;\ argument
447 (V) = def_temp; \
450 #define float4get(V,M) memcpy((char*) &(V),(char*) (M),sizeof(float)) argument
453 #define float8store(T,V) do { \ argument
454 *(((char *)(T)))= ((char *) &(V))[4];\
455 *(((char *)(T))+1)=(char) ((char *) &(V))[5];\
456 *(((char *)(T))+2)=(char) ((char *) &(V))[6];\
457 *(((char *)(T))+3)=(char) ((char *) &(V))[7];\
458 *(((char *)(T))+4)=(char) ((char *) &(V))[0];\
459 *(((char *)(T))+5)=(char) ((char *) &(V))[1];\
460 *(((char *)(T))+6)=(char) ((char *) &(V))[2];\
461 *(((char *)(T))+7)=(char) ((char *) &(V))[3];} while (0)
462 #define float8get(V,M) do { double def_temp;\ argument
471 (V) = def_temp; } while (0)
487 #define float8get(V,M) memcpy((char*) &(V),(char*) (M), sizeof(double)) argument
488 #define float8store(T,V) memcpy((char*) (T),(char*) &(V), sizeof(double)) argument
490 #define float8get(V,M) memcpy((char*) &(V),(char*) (M),sizeof(double)) argument
491 #define float8store(T,V) memcpy((char*) (T),(char*) &(V),sizeof(double)) argument