~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/korr.h

  • Committer: Mark Atwood
  • Date: 2012-01-04 16:59:32 UTC
  • mfrom: (2478.2.3 real-key-use-catalog)
  • Revision ID: me@mark.atwood.name-20120104165932-cm0xqs4by0u3p4cy
mergeĀ lp:~stewart/drizzle/key-use-catalog

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18
18
 */
19
19
 
20
 
#ifndef DRIZZLED_KORR_H
21
 
#define DRIZZLED_KORR_H
 
20
#pragma once
22
21
 
23
22
 
24
23
/*
77
76
#define doublestore(T,V) do { *((long *) T) = ((doubleget_union *)&V)->m[0]; \
78
77
                             *(((long *) T)+1) = ((doubleget_union *)&V)->m[1]; \
79
78
                         } while (0)
80
 
#define float4get(V,M)   do { *((float *) &(V)) = *((float*) (M)); } while(0)
81
79
#define float8get(V,M)   doubleget((V),(M))
82
80
#define floatstore(T,V)  memcpy((T), (&V), sizeof(float))
83
81
#define float8store(V,M) doublestore((V),(M))
89
87
*/
90
88
#define sint2korr(A)    (int16_t) (((int16_t) ((unsigned char) (A)[0])) +\
91
89
                                 ((int16_t) ((int16_t) (A)[1]) << 8))
92
 
#define sint3korr(A)    ((int32_t) ((((unsigned char) (A)[2]) & 128) ? \
93
 
                                  (((uint32_t) 255L << 24) | \
94
 
                                   (((uint32_t) (unsigned char) (A)[2]) << 16) |\
95
 
                                   (((uint32_t) (unsigned char) (A)[1]) << 8) | \
96
 
                                   ((uint32_t) (unsigned char) (A)[0])) : \
97
 
                                  (((uint32_t) (unsigned char) (A)[2]) << 16) |\
98
 
                                  (((uint32_t) (unsigned char) (A)[1]) << 8) | \
99
 
                                  ((uint32_t) (unsigned char) (A)[0])))
100
90
#define sint4korr(A)    (int32_t) (((int32_t) ((unsigned char) (A)[0])) +\
101
91
                                (((int32_t) ((unsigned char) (A)[1]) << 8)) +\
102
92
                                (((int32_t) ((unsigned char) (A)[2]) << 16)) +\
241
231
 
242
232
#endif /* WORDS_BIGENDIAN */
243
233
 
244
 
#endif /* DRIZZLED_KORR_H */