~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mystrings/longlong2str.c

  • Committer: Monty Taylor
  • Date: 2008-10-10 23:04:21 UTC
  • mto: (509.1.1 codestyle)
  • mto: This revision was merged to the branch mainline in revision 511.
  • Revision ID: monty@inaugust.com-20081010230421-zohe1eppxievpw8d
Removed O_NOFOLLOW

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
        itoa assumes that 10 -base numbers are allways signed and other arn't.
38
38
*/
39
39
 
40
 
#include "config.h"
41
 
 
42
40
#include "m_string.h"
43
41
 
44
 
namespace drizzled
45
 
{
46
 
namespace internal
47
 
{
48
 
 
49
42
#if !defined(int64_t2str) && !defined(HAVE_LONGLONG2STR)
50
43
 
51
 
char _dig_vec_upper[] =
52
 
  "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
53
 
 
54
44
/*
55
45
  This assumes that int64_t multiplication is faster than int64_t division.
56
46
*/
87
77
 
88
78
  while (uval > (uint64_t) LONG_MAX)
89
79
  {
90
 
    uint64_t quo= uval/(uint32_t) radix;
91
 
    uint32_t rem= (uint32_t) (uval- quo* (uint32_t) radix);
 
80
    uint64_t quo= uval/(uint) radix;
 
81
    uint32_t rem= (uint) (uval- quo* (uint) radix);
92
82
    *--p = _dig_vec_upper[rem];
93
83
    uval= quo;
94
84
  }
134
124
 
135
125
  while (uval > (uint64_t) LONG_MAX)
136
126
  {
137
 
    uint64_t quo= uval/(uint32_t) 10;
138
 
    uint32_t rem= (uint32_t) (uval- quo* (uint32_t) 10);
 
127
    uint64_t quo= uval/(uint) 10;
 
128
    uint32_t rem= (uint) (uval- quo* (uint) 10);
139
129
    *--p = _dig_vec_upper[rem];
140
130
    uval= quo;
141
131
  }
150
140
  return dst-1;
151
141
}
152
142
#endif
153
 
 
154
 
} /* namespace internal */
155
 
} /* namespace drizzled */