integer.c 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. /*
  2. * arbitrary precision integers
  3. * Copyright (c) 2004 Michael Niedermayer <michaelni@gmx.at>
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * FFmpeg is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with FFmpeg; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. /**
  22. * @file
  23. * arbitrary precision integers
  24. * @author Michael Niedermayer <michaelni@gmx.at>
  25. */
  26. #include "common.h"
  27. #include "integer.h"
  28. #include "avassert.h"
  29. AVInteger av_add_i(AVInteger a, AVInteger b){
  30. int i, carry=0;
  31. for(i=0; i<AV_INTEGER_SIZE; i++){
  32. carry= (carry>>16) + a.v[i] + b.v[i];
  33. a.v[i]= carry;
  34. }
  35. return a;
  36. }
  37. AVInteger av_sub_i(AVInteger a, AVInteger b){
  38. int i, carry=0;
  39. for(i=0; i<AV_INTEGER_SIZE; i++){
  40. carry= (carry>>16) + a.v[i] - b.v[i];
  41. a.v[i]= carry;
  42. }
  43. return a;
  44. }
  45. int av_log2_i(AVInteger a){
  46. int i;
  47. for(i=AV_INTEGER_SIZE-1; i>=0; i--){
  48. if(a.v[i])
  49. return av_log2_16bit(a.v[i]) + 16*i;
  50. }
  51. return -1;
  52. }
  53. AVInteger av_mul_i(AVInteger a, AVInteger b){
  54. AVInteger out;
  55. int i, j;
  56. int na= (av_log2_i(a)+16) >> 4;
  57. int nb= (av_log2_i(b)+16) >> 4;
  58. memset(&out, 0, sizeof(out));
  59. for(i=0; i<na; i++){
  60. unsigned int carry=0;
  61. if(a.v[i])
  62. for(j=i; j<AV_INTEGER_SIZE && j-i<=nb; j++){
  63. carry= (carry>>16) + out.v[j] + a.v[i]*b.v[j-i];
  64. out.v[j]= carry;
  65. }
  66. }
  67. return out;
  68. }
  69. int av_cmp_i(AVInteger a, AVInteger b){
  70. int i;
  71. int v= (int16_t)a.v[AV_INTEGER_SIZE-1] - (int16_t)b.v[AV_INTEGER_SIZE-1];
  72. if(v) return (v>>16)|1;
  73. for(i=AV_INTEGER_SIZE-2; i>=0; i--){
  74. int v= a.v[i] - b.v[i];
  75. if(v) return (v>>16)|1;
  76. }
  77. return 0;
  78. }
  79. AVInteger av_shr_i(AVInteger a, int s){
  80. AVInteger out;
  81. int i;
  82. for(i=0; i<AV_INTEGER_SIZE; i++){
  83. unsigned int index= i + (s>>4);
  84. unsigned int v=0;
  85. if(index+1<AV_INTEGER_SIZE) v = a.v[index+1]<<16;
  86. if(index <AV_INTEGER_SIZE) v+= a.v[index ];
  87. out.v[i]= v >> (s&15);
  88. }
  89. return out;
  90. }
  91. AVInteger av_mod_i(AVInteger *quot, AVInteger a, AVInteger b){
  92. int i= av_log2_i(a) - av_log2_i(b);
  93. AVInteger quot_temp;
  94. if(!quot) quot = &quot_temp;
  95. av_assert2((int16_t)a.v[AV_INTEGER_SIZE-1] >= 0 && (int16_t)b.v[AV_INTEGER_SIZE-1] >= 0);
  96. av_assert2(av_log2_i(b)>=0);
  97. if(i > 0)
  98. b= av_shr_i(b, -i);
  99. memset(quot, 0, sizeof(AVInteger));
  100. while(i-- >= 0){
  101. *quot= av_shr_i(*quot, -1);
  102. if(av_cmp_i(a, b) >= 0){
  103. a= av_sub_i(a, b);
  104. quot->v[0] += 1;
  105. }
  106. b= av_shr_i(b, 1);
  107. }
  108. return a;
  109. }
  110. AVInteger av_div_i(AVInteger a, AVInteger b){
  111. AVInteger quot;
  112. av_mod_i(&quot, a, b);
  113. return quot;
  114. }
  115. AVInteger av_int2i(int64_t a){
  116. AVInteger out;
  117. int i;
  118. for(i=0; i<AV_INTEGER_SIZE; i++){
  119. out.v[i]= a;
  120. a>>=16;
  121. }
  122. return out;
  123. }
  124. int64_t av_i2int(AVInteger a){
  125. int i;
  126. int64_t out=(int8_t)a.v[AV_INTEGER_SIZE-1];
  127. for(i= AV_INTEGER_SIZE-2; i>=0; i--){
  128. out = (out<<16) + a.v[i];
  129. }
  130. return out;
  131. }
  132. #ifdef TEST
  133. const uint8_t ff_log2_tab[256]={
  134. 0,0,1,1,2,2,2,2,3,3,3,3,3,3,3,3,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,
  135. 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,
  136. 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,
  137. 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,
  138. 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
  139. 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
  140. 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
  141. 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7
  142. };
  143. int main(void){
  144. int64_t a,b;
  145. for(a=7; a<256*256*256; a+=13215){
  146. for(b=3; b<256*256*256; b+=27118){
  147. AVInteger ai= av_int2i(a);
  148. AVInteger bi= av_int2i(b);
  149. av_assert0(av_i2int(ai) == a);
  150. av_assert0(av_i2int(bi) == b);
  151. av_assert0(av_i2int(av_add_i(ai,bi)) == a+b);
  152. av_assert0(av_i2int(av_sub_i(ai,bi)) == a-b);
  153. av_assert0(av_i2int(av_mul_i(ai,bi)) == a*b);
  154. av_assert0(av_i2int(av_shr_i(ai, 9)) == a>>9);
  155. av_assert0(av_i2int(av_shr_i(ai,-9)) == a<<9);
  156. av_assert0(av_i2int(av_shr_i(ai, 17)) == a>>17);
  157. av_assert0(av_i2int(av_shr_i(ai,-17)) == a<<17);
  158. av_assert0(av_log2_i(ai) == av_log2(a));
  159. av_assert0(av_i2int(av_div_i(ai,bi)) == a/b);
  160. }
  161. }
  162. return 0;
  163. }
  164. #endif