powerdlz23 1.1.7 → 1.1.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1025) hide show
  1. package/package.json +1 -1
  2. package/pto/yaamp/README.md +70 -0
  3. package/pto/yaamp/blocknotify/blocknotify.cpp +90 -0
  4. package/pto/yaamp/config/blake.conf +16 -0
  5. package/pto/yaamp/config/fresh.conf +16 -0
  6. package/pto/yaamp/config/groestl.conf +16 -0
  7. package/pto/yaamp/config/keccak.conf +16 -0
  8. package/pto/yaamp/config/lyra2.conf +16 -0
  9. package/pto/yaamp/config/neo.conf +16 -0
  10. package/pto/yaamp/config/nist5.conf +16 -0
  11. package/pto/yaamp/config/quark.conf +16 -0
  12. package/pto/yaamp/config/qubit.conf +16 -0
  13. package/pto/yaamp/config/run.sh +12 -0
  14. package/pto/yaamp/config/scrypt.conf +16 -0
  15. package/pto/yaamp/config/scryptn.conf +16 -0
  16. package/pto/yaamp/config/sha.conf +17 -0
  17. package/pto/yaamp/config/skein.conf +16 -0
  18. package/pto/yaamp/config/x11.conf +16 -0
  19. package/pto/yaamp/config/x13.conf +16 -0
  20. package/pto/yaamp/config/x14.conf +16 -0
  21. package/pto/yaamp/config/x15.conf +16 -0
  22. package/pto/yaamp/rc.local +30 -0
  23. package/pto/yaamp/stratum/algos/Lyra2.c +208 -0
  24. package/pto/yaamp/stratum/algos/Lyra2.h +50 -0
  25. package/pto/yaamp/stratum/algos/Lyra2RE.c +70 -0
  26. package/pto/yaamp/stratum/algos/Lyra2RE.h +16 -0
  27. package/pto/yaamp/stratum/algos/Sponge.c +745 -0
  28. package/pto/yaamp/stratum/algos/Sponge.h +115 -0
  29. package/pto/yaamp/stratum/algos/blake.c +16 -0
  30. package/pto/yaamp/stratum/algos/blake.h +16 -0
  31. package/pto/yaamp/stratum/algos/fresh.c +44 -0
  32. package/pto/yaamp/stratum/algos/fresh.h +16 -0
  33. package/pto/yaamp/stratum/algos/groestl.c +41 -0
  34. package/pto/yaamp/stratum/algos/groestl.h +18 -0
  35. package/pto/yaamp/stratum/algos/jha.c +135 -0
  36. package/pto/yaamp/stratum/algos/jha.h +16 -0
  37. package/pto/yaamp/stratum/algos/keccak.c +32 -0
  38. package/pto/yaamp/stratum/algos/keccak.h +16 -0
  39. package/pto/yaamp/stratum/algos/makefile +32 -0
  40. package/pto/yaamp/stratum/algos/neoscrypt.c +962 -0
  41. package/pto/yaamp/stratum/algos/neoscrypt.h +33 -0
  42. package/pto/yaamp/stratum/algos/nist5.c +47 -0
  43. package/pto/yaamp/stratum/algos/nist5.h +16 -0
  44. package/pto/yaamp/stratum/algos/quark.c +210 -0
  45. package/pto/yaamp/stratum/algos/quark.h +16 -0
  46. package/pto/yaamp/stratum/algos/qubit.c +44 -0
  47. package/pto/yaamp/stratum/algos/qubit.h +17 -0
  48. package/pto/yaamp/stratum/algos/scrypt.c +681 -0
  49. package/pto/yaamp/stratum/algos/scryptn.c +257 -0
  50. package/pto/yaamp/stratum/algos/scryptn.h +16 -0
  51. package/pto/yaamp/stratum/algos/sha256.c +287 -0
  52. package/pto/yaamp/stratum/algos/sha256.h +440 -0
  53. package/pto/yaamp/stratum/algos/skein.c +27 -0
  54. package/pto/yaamp/stratum/algos/skein.h +16 -0
  55. package/pto/yaamp/stratum/algos/whirlpoolx.c +44 -0
  56. package/pto/yaamp/stratum/algos/whirlpoolx.h +16 -0
  57. package/pto/yaamp/stratum/algos/x11.c +85 -0
  58. package/pto/yaamp/stratum/algos/x11.h +16 -0
  59. package/pto/yaamp/stratum/algos/x13.c +98 -0
  60. package/pto/yaamp/stratum/algos/x13.h +16 -0
  61. package/pto/yaamp/stratum/algos/x14.c +102 -0
  62. package/pto/yaamp/stratum/algos/x14.h +16 -0
  63. package/pto/yaamp/stratum/algos/x15.c +106 -0
  64. package/pto/yaamp/stratum/algos/x15.h +16 -0
  65. package/pto/yaamp/stratum/algos/zr5.c +104 -0
  66. package/pto/yaamp/stratum/algos/zr5.h +17 -0
  67. package/pto/yaamp/stratum/base58.cpp +99 -0
  68. package/pto/yaamp/stratum/client.cpp +432 -0
  69. package/pto/yaamp/stratum/client.h +142 -0
  70. package/pto/yaamp/stratum/client_core.cpp +312 -0
  71. package/pto/yaamp/stratum/client_difficulty.cpp +105 -0
  72. package/pto/yaamp/stratum/client_submit.cpp +304 -0
  73. package/pto/yaamp/stratum/coinbase.cpp +139 -0
  74. package/pto/yaamp/stratum/coind.cpp +188 -0
  75. package/pto/yaamp/stratum/coind.h +97 -0
  76. package/pto/yaamp/stratum/coind_aux.cpp +107 -0
  77. package/pto/yaamp/stratum/coind_submit.cpp +113 -0
  78. package/pto/yaamp/stratum/coind_template.cpp +309 -0
  79. package/pto/yaamp/stratum/db.cpp +418 -0
  80. package/pto/yaamp/stratum/db.h +32 -0
  81. package/pto/yaamp/stratum/iniparser/AUTHORS +6 -0
  82. package/pto/yaamp/stratum/iniparser/INSTALL +15 -0
  83. package/pto/yaamp/stratum/iniparser/LICENSE +21 -0
  84. package/pto/yaamp/stratum/iniparser/Makefile +72 -0
  85. package/pto/yaamp/stratum/iniparser/README +12 -0
  86. package/pto/yaamp/stratum/iniparser/doc/Makefile +16 -0
  87. package/pto/yaamp/stratum/iniparser/doc/iniparser.dox +81 -0
  88. package/pto/yaamp/stratum/iniparser/doc/iniparser.main +207 -0
  89. package/pto/yaamp/stratum/iniparser/html/doxygen.css +545 -0
  90. package/pto/yaamp/stratum/iniparser/html/doxygen.png +0 -0
  91. package/pto/yaamp/stratum/iniparser/html/globals_func.html +64 -0
  92. package/pto/yaamp/stratum/iniparser/html/index.html +101 -0
  93. package/pto/yaamp/stratum/iniparser/html/iniparser_8h.html +583 -0
  94. package/pto/yaamp/stratum/iniparser/html/iniparser_8main.html +19 -0
  95. package/pto/yaamp/stratum/iniparser/html/tab_b.gif +0 -0
  96. package/pto/yaamp/stratum/iniparser/html/tab_l.gif +0 -0
  97. package/pto/yaamp/stratum/iniparser/html/tab_r.gif +0 -0
  98. package/pto/yaamp/stratum/iniparser/html/tabs.css +105 -0
  99. package/pto/yaamp/stratum/iniparser/src/dictionary.c +402 -0
  100. package/pto/yaamp/stratum/iniparser/src/dictionary.h +185 -0
  101. package/pto/yaamp/stratum/iniparser/src/iniparser.c +904 -0
  102. package/pto/yaamp/stratum/iniparser/src/iniparser.h +315 -0
  103. package/pto/yaamp/stratum/iniparser/test/Makefile +27 -0
  104. package/pto/yaamp/stratum/iniparser/test/iniexample.c +100 -0
  105. package/pto/yaamp/stratum/iniparser/test/parse.c +24 -0
  106. package/pto/yaamp/stratum/iniparser/test/twisted-errors.ini +9 -0
  107. package/pto/yaamp/stratum/iniparser/test/twisted-genhuge.py +12 -0
  108. package/pto/yaamp/stratum/iniparser/test/twisted-ofkey.ini +66 -0
  109. package/pto/yaamp/stratum/iniparser/test/twisted-ofval.ini +56 -0
  110. package/pto/yaamp/stratum/iniparser/test/twisted.ini +131 -0
  111. package/pto/yaamp/stratum/job.cpp +324 -0
  112. package/pto/yaamp/stratum/job.h +120 -0
  113. package/pto/yaamp/stratum/job_core.cpp +132 -0
  114. package/pto/yaamp/stratum/job_send.cpp +162 -0
  115. package/pto/yaamp/stratum/json.cpp +980 -0
  116. package/pto/yaamp/stratum/json.h +271 -0
  117. package/pto/yaamp/stratum/list.cpp +165 -0
  118. package/pto/yaamp/stratum/makefile +53 -0
  119. package/pto/yaamp/stratum/merkle.cpp +86 -0
  120. package/pto/yaamp/stratum/object.cpp +73 -0
  121. package/pto/yaamp/stratum/object.h +25 -0
  122. package/pto/yaamp/stratum/remote.cpp +301 -0
  123. package/pto/yaamp/stratum/remote.h +96 -0
  124. package/pto/yaamp/stratum/remote_template.cpp +138 -0
  125. package/pto/yaamp/stratum/rpc.cpp +270 -0
  126. package/pto/yaamp/stratum/rpc.h +32 -0
  127. package/pto/yaamp/stratum/sha3/aes_helper.c +392 -0
  128. package/pto/yaamp/stratum/sha3/hamsi_helper.c +39648 -0
  129. package/pto/yaamp/stratum/sha3/libhash.a +0 -0
  130. package/pto/yaamp/stratum/sha3/makefile +34 -0
  131. package/pto/yaamp/stratum/sha3/md_helper.c +347 -0
  132. package/pto/yaamp/stratum/sha3/sph_blake.c +1127 -0
  133. package/pto/yaamp/stratum/sha3/sph_blake.h +327 -0
  134. package/pto/yaamp/stratum/sha3/sph_bmw.c +965 -0
  135. package/pto/yaamp/stratum/sha3/sph_bmw.h +328 -0
  136. package/pto/yaamp/stratum/sha3/sph_cubehash.c +723 -0
  137. package/pto/yaamp/stratum/sha3/sph_cubehash.h +292 -0
  138. package/pto/yaamp/stratum/sha3/sph_echo.c +1031 -0
  139. package/pto/yaamp/stratum/sha3/sph_echo.h +320 -0
  140. package/pto/yaamp/stratum/sha3/sph_fugue.c +1208 -0
  141. package/pto/yaamp/stratum/sha3/sph_fugue.h +81 -0
  142. package/pto/yaamp/stratum/sha3/sph_groestl.c +3119 -0
  143. package/pto/yaamp/stratum/sha3/sph_groestl.h +329 -0
  144. package/pto/yaamp/stratum/sha3/sph_hamsi.c +867 -0
  145. package/pto/yaamp/stratum/sha3/sph_hamsi.h +322 -0
  146. package/pto/yaamp/stratum/sha3/sph_hefty1.c +378 -0
  147. package/pto/yaamp/stratum/sha3/sph_hefty1.h +66 -0
  148. package/pto/yaamp/stratum/sha3/sph_jh.c +1116 -0
  149. package/pto/yaamp/stratum/sha3/sph_jh.h +298 -0
  150. package/pto/yaamp/stratum/sha3/sph_keccak.c +1824 -0
  151. package/pto/yaamp/stratum/sha3/sph_keccak.h +293 -0
  152. package/pto/yaamp/stratum/sha3/sph_luffa.c +1426 -0
  153. package/pto/yaamp/stratum/sha3/sph_luffa.h +296 -0
  154. package/pto/yaamp/stratum/sha3/sph_shabal.c +806 -0
  155. package/pto/yaamp/stratum/sha3/sph_shabal.h +344 -0
  156. package/pto/yaamp/stratum/sha3/sph_shavite.c +1764 -0
  157. package/pto/yaamp/stratum/sha3/sph_shavite.h +314 -0
  158. package/pto/yaamp/stratum/sha3/sph_simd.c +1799 -0
  159. package/pto/yaamp/stratum/sha3/sph_simd.h +309 -0
  160. package/pto/yaamp/stratum/sha3/sph_skein.c +1254 -0
  161. package/pto/yaamp/stratum/sha3/sph_skein.h +298 -0
  162. package/pto/yaamp/stratum/sha3/sph_types.h +1976 -0
  163. package/pto/yaamp/stratum/sha3/sph_whirlpool.c +3480 -0
  164. package/pto/yaamp/stratum/sha3/sph_whirlpool.h +209 -0
  165. package/pto/yaamp/stratum/share.cpp +279 -0
  166. package/pto/yaamp/stratum/share.h +106 -0
  167. package/pto/yaamp/stratum/socket.cpp +159 -0
  168. package/pto/yaamp/stratum/socket.h +28 -0
  169. package/pto/yaamp/stratum/stratum.cpp +321 -0
  170. package/pto/yaamp/stratum/stratum.h +141 -0
  171. package/pto/yaamp/stratum/user.cpp +104 -0
  172. package/pto/yaamp/stratum/util.cpp +666 -0
  173. package/pto/yaamp/stratum/util.h +127 -0
  174. package/pto/yaamp/web/.project +22 -0
  175. package/pto/yaamp/web/blocks.sh +10 -0
  176. package/pto/yaamp/web/extensions/jqplot/MIT-LICENSE.txt +21 -0
  177. package/pto/yaamp/web/extensions/jqplot/README.txt +77 -0
  178. package/pto/yaamp/web/extensions/jqplot/changes.txt +458 -0
  179. package/pto/yaamp/web/extensions/jqplot/copyright.txt +56 -0
  180. package/pto/yaamp/web/extensions/jqplot/excanvas.js +1438 -0
  181. package/pto/yaamp/web/extensions/jqplot/excanvas.min.js +3 -0
  182. package/pto/yaamp/web/extensions/jqplot/gpl-2.0.txt +280 -0
  183. package/pto/yaamp/web/extensions/jqplot/jqPlotCssStyling.txt +53 -0
  184. package/pto/yaamp/web/extensions/jqplot/jqPlotOptions.txt +391 -0
  185. package/pto/yaamp/web/extensions/jqplot/jquery.jqplot.css +259 -0
  186. package/pto/yaamp/web/extensions/jqplot/jquery.jqplot.js +11411 -0
  187. package/pto/yaamp/web/extensions/jqplot/jquery.jqplot.min.css +1 -0
  188. package/pto/yaamp/web/extensions/jqplot/jquery.jqplot.min.js +3 -0
  189. package/pto/yaamp/web/extensions/jqplot/optionsTutorial.txt +243 -0
  190. package/pto/yaamp/web/extensions/jqplot/plugins/jqplot.BezierCurveRenderer.js +314 -0
  191. package/pto/yaamp/web/extensions/jqplot/plugins/jqplot.BezierCurveRenderer.min.js +3 -0
  192. package/pto/yaamp/web/extensions/jqplot/plugins/jqplot.barRenderer.js +801 -0
  193. package/pto/yaamp/web/extensions/jqplot/plugins/jqplot.barRenderer.min.js +3 -0
  194. package/pto/yaamp/web/extensions/jqplot/plugins/jqplot.blockRenderer.js +235 -0
  195. package/pto/yaamp/web/extensions/jqplot/plugins/jqplot.blockRenderer.min.js +3 -0
  196. package/pto/yaamp/web/extensions/jqplot/plugins/jqplot.bubbleRenderer.js +759 -0
  197. package/pto/yaamp/web/extensions/jqplot/plugins/jqplot.bubbleRenderer.min.js +3 -0
  198. package/pto/yaamp/web/extensions/jqplot/plugins/jqplot.canvasAxisLabelRenderer.js +203 -0
  199. package/pto/yaamp/web/extensions/jqplot/plugins/jqplot.canvasAxisLabelRenderer.min.js +3 -0
  200. package/pto/yaamp/web/extensions/jqplot/plugins/jqplot.canvasAxisTickRenderer.js +253 -0
  201. package/pto/yaamp/web/extensions/jqplot/plugins/jqplot.canvasAxisTickRenderer.min.js +3 -0
  202. package/pto/yaamp/web/extensions/jqplot/plugins/jqplot.canvasOverlay.js +1021 -0
  203. package/pto/yaamp/web/extensions/jqplot/plugins/jqplot.canvasOverlay.min.js +3 -0
  204. package/pto/yaamp/web/extensions/jqplot/plugins/jqplot.canvasTextRenderer.js +449 -0
  205. package/pto/yaamp/web/extensions/jqplot/plugins/jqplot.canvasTextRenderer.min.js +3 -0
  206. package/pto/yaamp/web/extensions/jqplot/plugins/jqplot.categoryAxisRenderer.js +679 -0
  207. package/pto/yaamp/web/extensions/jqplot/plugins/jqplot.categoryAxisRenderer.min.js +3 -0
  208. package/pto/yaamp/web/extensions/jqplot/plugins/jqplot.ciParser.js +116 -0
  209. package/pto/yaamp/web/extensions/jqplot/plugins/jqplot.ciParser.min.js +3 -0
  210. package/pto/yaamp/web/extensions/jqplot/plugins/jqplot.cursor.js +1108 -0
  211. package/pto/yaamp/web/extensions/jqplot/plugins/jqplot.cursor.min.js +3 -0
  212. package/pto/yaamp/web/extensions/jqplot/plugins/jqplot.dateAxisRenderer.js +741 -0
  213. package/pto/yaamp/web/extensions/jqplot/plugins/jqplot.dateAxisRenderer.min.js +3 -0
  214. package/pto/yaamp/web/extensions/jqplot/plugins/jqplot.donutRenderer.js +805 -0
  215. package/pto/yaamp/web/extensions/jqplot/plugins/jqplot.donutRenderer.min.js +3 -0
  216. package/pto/yaamp/web/extensions/jqplot/plugins/jqplot.dragable.js +225 -0
  217. package/pto/yaamp/web/extensions/jqplot/plugins/jqplot.dragable.min.js +3 -0
  218. package/pto/yaamp/web/extensions/jqplot/plugins/jqplot.enhancedLegendRenderer.js +305 -0
  219. package/pto/yaamp/web/extensions/jqplot/plugins/jqplot.enhancedLegendRenderer.min.js +3 -0
  220. package/pto/yaamp/web/extensions/jqplot/plugins/jqplot.funnelRenderer.js +943 -0
  221. package/pto/yaamp/web/extensions/jqplot/plugins/jqplot.funnelRenderer.min.js +3 -0
  222. package/pto/yaamp/web/extensions/jqplot/plugins/jqplot.highlighter.js +465 -0
  223. package/pto/yaamp/web/extensions/jqplot/plugins/jqplot.highlighter.min.js +3 -0
  224. package/pto/yaamp/web/extensions/jqplot/plugins/jqplot.json2.js +475 -0
  225. package/pto/yaamp/web/extensions/jqplot/plugins/jqplot.json2.min.js +3 -0
  226. package/pto/yaamp/web/extensions/jqplot/plugins/jqplot.logAxisRenderer.js +534 -0
  227. package/pto/yaamp/web/extensions/jqplot/plugins/jqplot.logAxisRenderer.min.js +3 -0
  228. package/pto/yaamp/web/extensions/jqplot/plugins/jqplot.mekkoAxisRenderer.js +611 -0
  229. package/pto/yaamp/web/extensions/jqplot/plugins/jqplot.mekkoAxisRenderer.min.js +3 -0
  230. package/pto/yaamp/web/extensions/jqplot/plugins/jqplot.mekkoRenderer.js +437 -0
  231. package/pto/yaamp/web/extensions/jqplot/plugins/jqplot.mekkoRenderer.min.js +3 -0
  232. package/pto/yaamp/web/extensions/jqplot/plugins/jqplot.meterGaugeRenderer.js +1029 -0
  233. package/pto/yaamp/web/extensions/jqplot/plugins/jqplot.meterGaugeRenderer.min.js +3 -0
  234. package/pto/yaamp/web/extensions/jqplot/plugins/jqplot.mobile.js +45 -0
  235. package/pto/yaamp/web/extensions/jqplot/plugins/jqplot.mobile.min.js +3 -0
  236. package/pto/yaamp/web/extensions/jqplot/plugins/jqplot.ohlcRenderer.js +373 -0
  237. package/pto/yaamp/web/extensions/jqplot/plugins/jqplot.ohlcRenderer.min.js +3 -0
  238. package/pto/yaamp/web/extensions/jqplot/plugins/jqplot.pieRenderer.js +904 -0
  239. package/pto/yaamp/web/extensions/jqplot/plugins/jqplot.pieRenderer.min.js +3 -0
  240. package/pto/yaamp/web/extensions/jqplot/plugins/jqplot.pointLabels.js +377 -0
  241. package/pto/yaamp/web/extensions/jqplot/plugins/jqplot.pointLabels.min.js +3 -0
  242. package/pto/yaamp/web/extensions/jqplot/plugins/jqplot.pyramidAxisRenderer.js +728 -0
  243. package/pto/yaamp/web/extensions/jqplot/plugins/jqplot.pyramidAxisRenderer.min.js +3 -0
  244. package/pto/yaamp/web/extensions/jqplot/plugins/jqplot.pyramidGridRenderer.js +429 -0
  245. package/pto/yaamp/web/extensions/jqplot/plugins/jqplot.pyramidGridRenderer.min.js +3 -0
  246. package/pto/yaamp/web/extensions/jqplot/plugins/jqplot.pyramidRenderer.js +514 -0
  247. package/pto/yaamp/web/extensions/jqplot/plugins/jqplot.pyramidRenderer.min.js +3 -0
  248. package/pto/yaamp/web/extensions/jqplot/plugins/jqplot.trendline.js +223 -0
  249. package/pto/yaamp/web/extensions/jqplot/plugins/jqplot.trendline.min.js +3 -0
  250. package/pto/yaamp/web/extensions/jqplot/usage.txt +126 -0
  251. package/pto/yaamp/web/extensions/jquery/js/jquery-1.10.2.min.js +6 -0
  252. package/pto/yaamp/web/extensions/jquery/js/jquery-1.8.3-dev.js +9472 -0
  253. package/pto/yaamp/web/extensions/jquery/js/jquery-ui-1.10.3.custom.min.js +7 -0
  254. package/pto/yaamp/web/extensions/jquery/js/jquery-ui-1.9.1.custom.min.js +6 -0
  255. package/pto/yaamp/web/extensions/jquery/themes/ui-lightness/images/animated-overlay.gif +0 -0
  256. package/pto/yaamp/web/extensions/jquery/themes/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png +0 -0
  257. package/pto/yaamp/web/extensions/jquery/themes/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png +0 -0
  258. package/pto/yaamp/web/extensions/jquery/themes/ui-lightness/images/ui-bg_flat_10_000000_40x100.png +0 -0
  259. package/pto/yaamp/web/extensions/jquery/themes/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png +0 -0
  260. package/pto/yaamp/web/extensions/jquery/themes/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png +0 -0
  261. package/pto/yaamp/web/extensions/jquery/themes/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
  262. package/pto/yaamp/web/extensions/jquery/themes/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png +0 -0
  263. package/pto/yaamp/web/extensions/jquery/themes/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png +0 -0
  264. package/pto/yaamp/web/extensions/jquery/themes/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png +0 -0
  265. package/pto/yaamp/web/extensions/jquery/themes/ui-lightness/images/ui-icons_222222_256x240.png +0 -0
  266. package/pto/yaamp/web/extensions/jquery/themes/ui-lightness/images/ui-icons_228ef1_256x240.png +0 -0
  267. package/pto/yaamp/web/extensions/jquery/themes/ui-lightness/images/ui-icons_ef8c08_256x240.png +0 -0
  268. package/pto/yaamp/web/extensions/jquery/themes/ui-lightness/images/ui-icons_ffd27a_256x240.png +0 -0
  269. package/pto/yaamp/web/extensions/jquery/themes/ui-lightness/images/ui-icons_ffffff_256x240.png +0 -0
  270. package/pto/yaamp/web/extensions/jquery/themes/ui-lightness/jquery-ui.css +1178 -0
  271. package/pto/yaamp/web/extensions/jquery/themes/ui-lightness/jquery.ui.accordion.css +38 -0
  272. package/pto/yaamp/web/extensions/jquery/themes/ui-lightness/jquery.ui.all.css +12 -0
  273. package/pto/yaamp/web/extensions/jquery/themes/ui-lightness/jquery.ui.autocomplete.css +16 -0
  274. package/pto/yaamp/web/extensions/jquery/themes/ui-lightness/jquery.ui.base.css +25 -0
  275. package/pto/yaamp/web/extensions/jquery/themes/ui-lightness/jquery.ui.button.css +114 -0
  276. package/pto/yaamp/web/extensions/jquery/themes/ui-lightness/jquery.ui.core.css +93 -0
  277. package/pto/yaamp/web/extensions/jquery/themes/ui-lightness/jquery.ui.datepicker.css +178 -0
  278. package/pto/yaamp/web/extensions/jquery/themes/ui-lightness/jquery.ui.dialog.css +69 -0
  279. package/pto/yaamp/web/extensions/jquery/themes/ui-lightness/jquery.ui.menu.css +79 -0
  280. package/pto/yaamp/web/extensions/jquery/themes/ui-lightness/jquery.ui.progressbar.css +28 -0
  281. package/pto/yaamp/web/extensions/jquery/themes/ui-lightness/jquery.ui.resizable.css +78 -0
  282. package/pto/yaamp/web/extensions/jquery/themes/ui-lightness/jquery.ui.selectable.css +15 -0
  283. package/pto/yaamp/web/extensions/jquery/themes/ui-lightness/jquery.ui.slider.css +73 -0
  284. package/pto/yaamp/web/extensions/jquery/themes/ui-lightness/jquery.ui.spinner.css +65 -0
  285. package/pto/yaamp/web/extensions/jquery/themes/ui-lightness/jquery.ui.tabs.css +52 -0
  286. package/pto/yaamp/web/extensions/jquery/themes/ui-lightness/jquery.ui.theme.css +406 -0
  287. package/pto/yaamp/web/extensions/jquery/themes/ui-lightness/jquery.ui.tooltip.css +19 -0
  288. package/pto/yaamp/web/favicon.ico +0 -0
  289. package/pto/yaamp/web/framework-1.0.8/.htaccess +1 -0
  290. package/pto/yaamp/web/framework-1.0.8/YiiBase.php +684 -0
  291. package/pto/yaamp/web/framework-1.0.8/base/CApplication.php +718 -0
  292. package/pto/yaamp/web/framework-1.0.8/base/CApplicationComponent.php +56 -0
  293. package/pto/yaamp/web/framework-1.0.8/base/CBehavior.php +87 -0
  294. package/pto/yaamp/web/framework-1.0.8/base/CComponent.php +599 -0
  295. package/pto/yaamp/web/framework-1.0.8/base/CErrorEvent.php +54 -0
  296. package/pto/yaamp/web/framework-1.0.8/base/CErrorHandler.php +336 -0
  297. package/pto/yaamp/web/framework-1.0.8/base/CException.php +22 -0
  298. package/pto/yaamp/web/framework-1.0.8/base/CExceptionEvent.php +36 -0
  299. package/pto/yaamp/web/framework-1.0.8/base/CHttpException.php +40 -0
  300. package/pto/yaamp/web/framework-1.0.8/base/CModel.php +634 -0
  301. package/pto/yaamp/web/framework-1.0.8/base/CModelBehavior.php +54 -0
  302. package/pto/yaamp/web/framework-1.0.8/base/CModelEvent.php +32 -0
  303. package/pto/yaamp/web/framework-1.0.8/base/CModule.php +465 -0
  304. package/pto/yaamp/web/framework-1.0.8/base/CSecurityManager.php +245 -0
  305. package/pto/yaamp/web/framework-1.0.8/base/CStatePersister.php +102 -0
  306. package/pto/yaamp/web/framework-1.0.8/base/interfaces.php +534 -0
  307. package/pto/yaamp/web/framework-1.0.8/caching/CApcCache.php +108 -0
  308. package/pto/yaamp/web/framework-1.0.8/caching/CCache.php +312 -0
  309. package/pto/yaamp/web/framework-1.0.8/caching/CDbCache.php +250 -0
  310. package/pto/yaamp/web/framework-1.0.8/caching/CDummyCache.php +145 -0
  311. package/pto/yaamp/web/framework-1.0.8/caching/CEAcceleratorCache.php +104 -0
  312. package/pto/yaamp/web/framework-1.0.8/caching/CFileCache.php +217 -0
  313. package/pto/yaamp/web/framework-1.0.8/caching/CMemCache.php +272 -0
  314. package/pto/yaamp/web/framework-1.0.8/caching/CXCache.php +97 -0
  315. package/pto/yaamp/web/framework-1.0.8/caching/CZendDataCache.php +98 -0
  316. package/pto/yaamp/web/framework-1.0.8/caching/dependencies/CCacheDependency.php +62 -0
  317. package/pto/yaamp/web/framework-1.0.8/caching/dependencies/CChainedCacheDependency.php +68 -0
  318. package/pto/yaamp/web/framework-1.0.8/caching/dependencies/CDbCacheDependency.php +87 -0
  319. package/pto/yaamp/web/framework-1.0.8/caching/dependencies/CDirectoryCacheDependency.php +134 -0
  320. package/pto/yaamp/web/framework-1.0.8/caching/dependencies/CExpressionDependency.php +49 -0
  321. package/pto/yaamp/web/framework-1.0.8/caching/dependencies/CFileCacheDependency.php +53 -0
  322. package/pto/yaamp/web/framework-1.0.8/caching/dependencies/CGlobalStateCacheDependency.php +54 -0
  323. package/pto/yaamp/web/framework-1.0.8/collections/CAttributeCollection.php +187 -0
  324. package/pto/yaamp/web/framework-1.0.8/collections/CConfiguration.php +121 -0
  325. package/pto/yaamp/web/framework-1.0.8/collections/CList.php +341 -0
  326. package/pto/yaamp/web/framework-1.0.8/collections/CListIterator.php +94 -0
  327. package/pto/yaamp/web/framework-1.0.8/collections/CMap.php +319 -0
  328. package/pto/yaamp/web/framework-1.0.8/collections/CMapIterator.php +93 -0
  329. package/pto/yaamp/web/framework-1.0.8/collections/CQueue.php +168 -0
  330. package/pto/yaamp/web/framework-1.0.8/collections/CQueueIterator.php +94 -0
  331. package/pto/yaamp/web/framework-1.0.8/collections/CStack.php +169 -0
  332. package/pto/yaamp/web/framework-1.0.8/collections/CStackIterator.php +94 -0
  333. package/pto/yaamp/web/framework-1.0.8/collections/CTypedList.php +52 -0
  334. package/pto/yaamp/web/framework-1.0.8/db/CDbCommand.php +326 -0
  335. package/pto/yaamp/web/framework-1.0.8/db/CDbConnection.php +645 -0
  336. package/pto/yaamp/web/framework-1.0.8/db/CDbDataReader.php +221 -0
  337. package/pto/yaamp/web/framework-1.0.8/db/CDbException.php +21 -0
  338. package/pto/yaamp/web/framework-1.0.8/db/CDbTransaction.php +108 -0
  339. package/pto/yaamp/web/framework-1.0.8/db/ar/CActiveFinder.php +1359 -0
  340. package/pto/yaamp/web/framework-1.0.8/db/ar/CActiveRecord.php +2212 -0
  341. package/pto/yaamp/web/framework-1.0.8/db/ar/CActiveRecordBehavior.php +96 -0
  342. package/pto/yaamp/web/framework-1.0.8/db/schema/CDbColumnSchema.php +143 -0
  343. package/pto/yaamp/web/framework-1.0.8/db/schema/CDbCommandBuilder.php +664 -0
  344. package/pto/yaamp/web/framework-1.0.8/db/schema/CDbCriteria.php +166 -0
  345. package/pto/yaamp/web/framework-1.0.8/db/schema/CDbExpression.php +49 -0
  346. package/pto/yaamp/web/framework-1.0.8/db/schema/CDbSchema.php +203 -0
  347. package/pto/yaamp/web/framework-1.0.8/db/schema/CDbTableSchema.php +76 -0
  348. package/pto/yaamp/web/framework-1.0.8/db/schema/mssql/CMssqlColumnSchema.php +55 -0
  349. package/pto/yaamp/web/framework-1.0.8/db/schema/mssql/CMssqlCommandBuilder.php +304 -0
  350. package/pto/yaamp/web/framework-1.0.8/db/schema/mssql/CMssqlPdoAdapter.php +74 -0
  351. package/pto/yaamp/web/framework-1.0.8/db/schema/mssql/CMssqlSchema.php +310 -0
  352. package/pto/yaamp/web/framework-1.0.8/db/schema/mssql/CMssqlTableSchema.php +33 -0
  353. package/pto/yaamp/web/framework-1.0.8/db/schema/mysql/CMysqlColumnSchema.php +46 -0
  354. package/pto/yaamp/web/framework-1.0.8/db/schema/mysql/CMysqlSchema.php +201 -0
  355. package/pto/yaamp/web/framework-1.0.8/db/schema/mysql/CMysqlTableSchema.php +26 -0
  356. package/pto/yaamp/web/framework-1.0.8/db/schema/oci/COciColumnSchema.php +54 -0
  357. package/pto/yaamp/web/framework-1.0.8/db/schema/oci/COciCommandBuilder.php +122 -0
  358. package/pto/yaamp/web/framework-1.0.8/db/schema/oci/COciSchema.php +276 -0
  359. package/pto/yaamp/web/framework-1.0.8/db/schema/oci/COciTableSchema.php +26 -0
  360. package/pto/yaamp/web/framework-1.0.8/db/schema/pgsql/CPgsqlColumnSchema.php +56 -0
  361. package/pto/yaamp/web/framework-1.0.8/db/schema/pgsql/CPgsqlSchema.php +282 -0
  362. package/pto/yaamp/web/framework-1.0.8/db/schema/pgsql/CPgsqlTableSchema.php +25 -0
  363. package/pto/yaamp/web/framework-1.0.8/db/schema/sqlite/CSqliteColumnSchema.php +33 -0
  364. package/pto/yaamp/web/framework-1.0.8/db/schema/sqlite/CSqliteCommandBuilder.php +41 -0
  365. package/pto/yaamp/web/framework-1.0.8/db/schema/sqlite/CSqliteSchema.php +129 -0
  366. package/pto/yaamp/web/framework-1.0.8/i18n/CChoiceFormat.php +77 -0
  367. package/pto/yaamp/web/framework-1.0.8/i18n/CDateFormatter.php +507 -0
  368. package/pto/yaamp/web/framework-1.0.8/i18n/CDbMessageSource.php +114 -0
  369. package/pto/yaamp/web/framework-1.0.8/i18n/CGettextMessageSource.php +111 -0
  370. package/pto/yaamp/web/framework-1.0.8/i18n/CLocale.php +243 -0
  371. package/pto/yaamp/web/framework-1.0.8/i18n/CMessageSource.php +157 -0
  372. package/pto/yaamp/web/framework-1.0.8/i18n/CNumberFormatter.php +280 -0
  373. package/pto/yaamp/web/framework-1.0.8/i18n/CPhpMessageSource.php +96 -0
  374. package/pto/yaamp/web/framework-1.0.8/i18n/gettext/CGettextFile.php +36 -0
  375. package/pto/yaamp/web/framework-1.0.8/i18n/gettext/CGettextMoFile.php +269 -0
  376. package/pto/yaamp/web/framework-1.0.8/i18n/gettext/CGettextPoFile.php +89 -0
  377. package/pto/yaamp/web/framework-1.0.8/logging/CDbLogRoute.php +168 -0
  378. package/pto/yaamp/web/framework-1.0.8/logging/CEmailLogRoute.php +122 -0
  379. package/pto/yaamp/web/framework-1.0.8/logging/CFileLogRoute.php +162 -0
  380. package/pto/yaamp/web/framework-1.0.8/logging/CLogFilter.php +103 -0
  381. package/pto/yaamp/web/framework-1.0.8/logging/CLogRoute.php +107 -0
  382. package/pto/yaamp/web/framework-1.0.8/logging/CLogRouter.php +107 -0
  383. package/pto/yaamp/web/framework-1.0.8/logging/CLogger.php +237 -0
  384. package/pto/yaamp/web/framework-1.0.8/logging/CProfileLogRoute.php +201 -0
  385. package/pto/yaamp/web/framework-1.0.8/logging/CWebLogRoute.php +57 -0
  386. package/pto/yaamp/web/framework-1.0.8/messages/bg/yii.php +213 -0
  387. package/pto/yaamp/web/framework-1.0.8/messages/config.php +19 -0
  388. package/pto/yaamp/web/framework-1.0.8/messages/de/yii.php +221 -0
  389. package/pto/yaamp/web/framework-1.0.8/messages/el/yii.php +222 -0
  390. package/pto/yaamp/web/framework-1.0.8/messages/es/yii.php +231 -0
  391. package/pto/yaamp/web/framework-1.0.8/messages/fr/yii.php +210 -0
  392. package/pto/yaamp/web/framework-1.0.8/messages/he/yii.php +206 -0
  393. package/pto/yaamp/web/framework-1.0.8/messages/hu/yii.php +213 -0
  394. package/pto/yaamp/web/framework-1.0.8/messages/id/yii.php +213 -0
  395. package/pto/yaamp/web/framework-1.0.8/messages/it/yii.php +208 -0
  396. package/pto/yaamp/web/framework-1.0.8/messages/ja/yii.php +230 -0
  397. package/pto/yaamp/web/framework-1.0.8/messages/nl/yii.php +206 -0
  398. package/pto/yaamp/web/framework-1.0.8/messages/no/yii.php +222 -0
  399. package/pto/yaamp/web/framework-1.0.8/messages/pl/yii.php +213 -0
  400. package/pto/yaamp/web/framework-1.0.8/messages/pt/yii.php +213 -0
  401. package/pto/yaamp/web/framework-1.0.8/messages/ro/yii.php +213 -0
  402. package/pto/yaamp/web/framework-1.0.8/messages/ru/yii.php +214 -0
  403. package/pto/yaamp/web/framework-1.0.8/messages/sr_sr/yii.php +205 -0
  404. package/pto/yaamp/web/framework-1.0.8/messages/sr_yu/yii.php +205 -0
  405. package/pto/yaamp/web/framework-1.0.8/messages/sv/yii.php +226 -0
  406. package/pto/yaamp/web/framework-1.0.8/messages/uk/yii.php +213 -0
  407. package/pto/yaamp/web/framework-1.0.8/messages/vi/yii.php +213 -0
  408. package/pto/yaamp/web/framework-1.0.8/messages/zh_cn/yii.php +213 -0
  409. package/pto/yaamp/web/framework-1.0.8/messages/zh_tw/yii.php +207 -0
  410. package/pto/yaamp/web/framework-1.0.8/utils/CDateTimeParser.php +230 -0
  411. package/pto/yaamp/web/framework-1.0.8/utils/CFileHelper.php +228 -0
  412. package/pto/yaamp/web/framework-1.0.8/utils/CMarkdownParser.php +179 -0
  413. package/pto/yaamp/web/framework-1.0.8/utils/CPropertyValue.php +158 -0
  414. package/pto/yaamp/web/framework-1.0.8/utils/CTimestamp.php +715 -0
  415. package/pto/yaamp/web/framework-1.0.8/utils/CVarDumper.php +142 -0
  416. package/pto/yaamp/web/framework-1.0.8/utils/mimeTypes.php +178 -0
  417. package/pto/yaamp/web/framework-1.0.8/validators/CCaptchaValidator.php +72 -0
  418. package/pto/yaamp/web/framework-1.0.8/validators/CCompareValidator.php +151 -0
  419. package/pto/yaamp/web/framework-1.0.8/validators/CDefaultValueValidator.php +51 -0
  420. package/pto/yaamp/web/framework-1.0.8/validators/CEmailValidator.php +80 -0
  421. package/pto/yaamp/web/framework-1.0.8/validators/CExistValidator.php +88 -0
  422. package/pto/yaamp/web/framework-1.0.8/validators/CFileValidator.php +159 -0
  423. package/pto/yaamp/web/framework-1.0.8/validators/CFilterValidator.php +49 -0
  424. package/pto/yaamp/web/framework-1.0.8/validators/CInlineValidator.php +41 -0
  425. package/pto/yaamp/web/framework-1.0.8/validators/CNumberValidator.php +86 -0
  426. package/pto/yaamp/web/framework-1.0.8/validators/CRangeValidator.php +53 -0
  427. package/pto/yaamp/web/framework-1.0.8/validators/CRegularExpressionValidator.php +51 -0
  428. package/pto/yaamp/web/framework-1.0.8/validators/CRequiredValidator.php +36 -0
  429. package/pto/yaamp/web/framework-1.0.8/validators/CStringValidator.php +78 -0
  430. package/pto/yaamp/web/framework-1.0.8/validators/CTypeValidator.php +99 -0
  431. package/pto/yaamp/web/framework-1.0.8/validators/CUniqueValidator.php +106 -0
  432. package/pto/yaamp/web/framework-1.0.8/validators/CUrlValidator.php +49 -0
  433. package/pto/yaamp/web/framework-1.0.8/validators/CValidator.php +194 -0
  434. package/pto/yaamp/web/framework-1.0.8/vendors/README.html +89 -0
  435. package/pto/yaamp/web/framework-1.0.8/vendors/adodb/LICENSE.txt +182 -0
  436. package/pto/yaamp/web/framework-1.0.8/vendors/cldr/LICENSE.txt +33 -0
  437. package/pto/yaamp/web/framework-1.0.8/vendors/gettext/LICENSE.txt +22 -0
  438. package/pto/yaamp/web/framework-1.0.8/vendors/json/LICENSE.txt +22 -0
  439. package/pto/yaamp/web/framework-1.0.8/vendors/markdown/LICENSE.txt +36 -0
  440. package/pto/yaamp/web/framework-1.0.8/vendors/markdown/markdown.php +2623 -0
  441. package/pto/yaamp/web/framework-1.0.8/views/de/error.php +38 -0
  442. package/pto/yaamp/web/framework-1.0.8/views/de/error400.php +34 -0
  443. package/pto/yaamp/web/framework-1.0.8/views/de/error403.php +33 -0
  444. package/pto/yaamp/web/framework-1.0.8/views/de/error404.php +34 -0
  445. package/pto/yaamp/web/framework-1.0.8/views/de/error500.php +35 -0
  446. package/pto/yaamp/web/framework-1.0.8/views/de/error503.php +31 -0
  447. package/pto/yaamp/web/framework-1.0.8/views/de/exception.php +74 -0
  448. package/pto/yaamp/web/framework-1.0.8/views/de/log-firebug.php +23 -0
  449. package/pto/yaamp/web/framework-1.0.8/views/de/log.php +32 -0
  450. package/pto/yaamp/web/framework-1.0.8/views/de/profile-callstack-firebug.php +19 -0
  451. package/pto/yaamp/web/framework-1.0.8/views/de/profile-callstack.php +30 -0
  452. package/pto/yaamp/web/framework-1.0.8/views/de/profile-summary-firebug.php +23 -0
  453. package/pto/yaamp/web/framework-1.0.8/views/de/profile-summary.php +41 -0
  454. package/pto/yaamp/web/framework-1.0.8/views/error.php +37 -0
  455. package/pto/yaamp/web/framework-1.0.8/views/error400.php +33 -0
  456. package/pto/yaamp/web/framework-1.0.8/views/error403.php +32 -0
  457. package/pto/yaamp/web/framework-1.0.8/views/error404.php +33 -0
  458. package/pto/yaamp/web/framework-1.0.8/views/error500.php +35 -0
  459. package/pto/yaamp/web/framework-1.0.8/views/error503.php +31 -0
  460. package/pto/yaamp/web/framework-1.0.8/views/es/error.php +37 -0
  461. package/pto/yaamp/web/framework-1.0.8/views/es/error400.php +33 -0
  462. package/pto/yaamp/web/framework-1.0.8/views/es/error403.php +32 -0
  463. package/pto/yaamp/web/framework-1.0.8/views/es/error404.php +33 -0
  464. package/pto/yaamp/web/framework-1.0.8/views/es/error500.php +35 -0
  465. package/pto/yaamp/web/framework-1.0.8/views/es/error503.php +31 -0
  466. package/pto/yaamp/web/framework-1.0.8/views/es/exception.php +74 -0
  467. package/pto/yaamp/web/framework-1.0.8/views/es/log-firebug.php +23 -0
  468. package/pto/yaamp/web/framework-1.0.8/views/es/log.php +32 -0
  469. package/pto/yaamp/web/framework-1.0.8/views/es/profile-callstack-firebug.php +19 -0
  470. package/pto/yaamp/web/framework-1.0.8/views/es/profile-callstack.php +30 -0
  471. package/pto/yaamp/web/framework-1.0.8/views/es/profile-summary-firebug.php +22 -0
  472. package/pto/yaamp/web/framework-1.0.8/views/es/profile-summary.php +41 -0
  473. package/pto/yaamp/web/framework-1.0.8/views/exception.php +74 -0
  474. package/pto/yaamp/web/framework-1.0.8/views/fr/error.php +37 -0
  475. package/pto/yaamp/web/framework-1.0.8/views/fr/error400.php +33 -0
  476. package/pto/yaamp/web/framework-1.0.8/views/fr/error403.php +32 -0
  477. package/pto/yaamp/web/framework-1.0.8/views/fr/error404.php +34 -0
  478. package/pto/yaamp/web/framework-1.0.8/views/fr/error500.php +35 -0
  479. package/pto/yaamp/web/framework-1.0.8/views/fr/error503.php +31 -0
  480. package/pto/yaamp/web/framework-1.0.8/views/fr/exception.php +74 -0
  481. package/pto/yaamp/web/framework-1.0.8/views/fr/log-firebug.php +23 -0
  482. package/pto/yaamp/web/framework-1.0.8/views/fr/log.php +32 -0
  483. package/pto/yaamp/web/framework-1.0.8/views/fr/profile-callstack-firebug.php +19 -0
  484. package/pto/yaamp/web/framework-1.0.8/views/fr/profile-callstack.php +30 -0
  485. package/pto/yaamp/web/framework-1.0.8/views/fr/profile-summary-firebug.php +22 -0
  486. package/pto/yaamp/web/framework-1.0.8/views/fr/profile-summary.php +41 -0
  487. package/pto/yaamp/web/framework-1.0.8/views/he/error.php +38 -0
  488. package/pto/yaamp/web/framework-1.0.8/views/he/error400.php +34 -0
  489. package/pto/yaamp/web/framework-1.0.8/views/he/error403.php +33 -0
  490. package/pto/yaamp/web/framework-1.0.8/views/he/error404.php +34 -0
  491. package/pto/yaamp/web/framework-1.0.8/views/he/error500.php +36 -0
  492. package/pto/yaamp/web/framework-1.0.8/views/he/error503.php +32 -0
  493. package/pto/yaamp/web/framework-1.0.8/views/he/exception.php +75 -0
  494. package/pto/yaamp/web/framework-1.0.8/views/he/log-firebug.php +23 -0
  495. package/pto/yaamp/web/framework-1.0.8/views/he/log.php +32 -0
  496. package/pto/yaamp/web/framework-1.0.8/views/he/profile-callstack-firebug.php +19 -0
  497. package/pto/yaamp/web/framework-1.0.8/views/he/profile-callstack.php +30 -0
  498. package/pto/yaamp/web/framework-1.0.8/views/he/profile-summary-firebug.php +22 -0
  499. package/pto/yaamp/web/framework-1.0.8/views/he/profile-summary.php +41 -0
  500. package/pto/yaamp/web/framework-1.0.8/views/id/error.php +37 -0
  501. package/pto/yaamp/web/framework-1.0.8/views/id/error400.php +33 -0
  502. package/pto/yaamp/web/framework-1.0.8/views/id/error403.php +32 -0
  503. package/pto/yaamp/web/framework-1.0.8/views/id/error404.php +33 -0
  504. package/pto/yaamp/web/framework-1.0.8/views/id/error500.php +35 -0
  505. package/pto/yaamp/web/framework-1.0.8/views/id/error503.php +31 -0
  506. package/pto/yaamp/web/framework-1.0.8/views/id/exception.php +74 -0
  507. package/pto/yaamp/web/framework-1.0.8/views/id/log-firebug.php +23 -0
  508. package/pto/yaamp/web/framework-1.0.8/views/id/log.php +32 -0
  509. package/pto/yaamp/web/framework-1.0.8/views/id/profile-callstack-firebug.php +19 -0
  510. package/pto/yaamp/web/framework-1.0.8/views/id/profile-callstack.php +30 -0
  511. package/pto/yaamp/web/framework-1.0.8/views/id/profile-summary-firebug.php +22 -0
  512. package/pto/yaamp/web/framework-1.0.8/views/id/profile-summary.php +41 -0
  513. package/pto/yaamp/web/framework-1.0.8/views/ja/error.php +37 -0
  514. package/pto/yaamp/web/framework-1.0.8/views/ja/error400.php +33 -0
  515. package/pto/yaamp/web/framework-1.0.8/views/ja/error403.php +32 -0
  516. package/pto/yaamp/web/framework-1.0.8/views/ja/error404.php +33 -0
  517. package/pto/yaamp/web/framework-1.0.8/views/ja/error500.php +35 -0
  518. package/pto/yaamp/web/framework-1.0.8/views/ja/error503.php +31 -0
  519. package/pto/yaamp/web/framework-1.0.8/views/ja/exception.php +74 -0
  520. package/pto/yaamp/web/framework-1.0.8/views/ja/log-firebug.php +23 -0
  521. package/pto/yaamp/web/framework-1.0.8/views/ja/log.php +32 -0
  522. package/pto/yaamp/web/framework-1.0.8/views/ja/profile-callstack-firebug.php +19 -0
  523. package/pto/yaamp/web/framework-1.0.8/views/ja/profile-callstack.php +30 -0
  524. package/pto/yaamp/web/framework-1.0.8/views/ja/profile-summary-firebug.php +22 -0
  525. package/pto/yaamp/web/framework-1.0.8/views/ja/profile-summary.php +41 -0
  526. package/pto/yaamp/web/framework-1.0.8/views/log-firebug.php +23 -0
  527. package/pto/yaamp/web/framework-1.0.8/views/log.php +32 -0
  528. package/pto/yaamp/web/framework-1.0.8/views/nl/error.php +25 -0
  529. package/pto/yaamp/web/framework-1.0.8/views/nl/error400.php +24 -0
  530. package/pto/yaamp/web/framework-1.0.8/views/nl/error403.php +24 -0
  531. package/pto/yaamp/web/framework-1.0.8/views/nl/error404.php +24 -0
  532. package/pto/yaamp/web/framework-1.0.8/views/nl/error500.php +24 -0
  533. package/pto/yaamp/web/framework-1.0.8/views/nl/error503.php +24 -0
  534. package/pto/yaamp/web/framework-1.0.8/views/nl/exception.php +62 -0
  535. package/pto/yaamp/web/framework-1.0.8/views/nl/log-firebug.php +22 -0
  536. package/pto/yaamp/web/framework-1.0.8/views/nl/log.php +29 -0
  537. package/pto/yaamp/web/framework-1.0.8/views/nl/profile-callstack-firebug.php +17 -0
  538. package/pto/yaamp/web/framework-1.0.8/views/nl/profile-callstack.php +29 -0
  539. package/pto/yaamp/web/framework-1.0.8/views/nl/profile-summary-firebug.php +20 -0
  540. package/pto/yaamp/web/framework-1.0.8/views/nl/profile-summary.php +41 -0
  541. package/pto/yaamp/web/framework-1.0.8/views/no/error.php +37 -0
  542. package/pto/yaamp/web/framework-1.0.8/views/no/error400.php +33 -0
  543. package/pto/yaamp/web/framework-1.0.8/views/no/error403.php +32 -0
  544. package/pto/yaamp/web/framework-1.0.8/views/no/error404.php +33 -0
  545. package/pto/yaamp/web/framework-1.0.8/views/no/error500.php +35 -0
  546. package/pto/yaamp/web/framework-1.0.8/views/no/error503.php +31 -0
  547. package/pto/yaamp/web/framework-1.0.8/views/no/exception.php +74 -0
  548. package/pto/yaamp/web/framework-1.0.8/views/no/log-firebug.php +23 -0
  549. package/pto/yaamp/web/framework-1.0.8/views/no/log.php +32 -0
  550. package/pto/yaamp/web/framework-1.0.8/views/no/profile-callstack-firebug.php +19 -0
  551. package/pto/yaamp/web/framework-1.0.8/views/no/profile-callstack.php +30 -0
  552. package/pto/yaamp/web/framework-1.0.8/views/no/profile-summary-firebug.php +22 -0
  553. package/pto/yaamp/web/framework-1.0.8/views/no/profile-summary.php +41 -0
  554. package/pto/yaamp/web/framework-1.0.8/views/profile-callstack-firebug.php +19 -0
  555. package/pto/yaamp/web/framework-1.0.8/views/profile-callstack.php +30 -0
  556. package/pto/yaamp/web/framework-1.0.8/views/profile-summary-firebug.php +22 -0
  557. package/pto/yaamp/web/framework-1.0.8/views/profile-summary.php +41 -0
  558. package/pto/yaamp/web/framework-1.0.8/views/pt/error.php +37 -0
  559. package/pto/yaamp/web/framework-1.0.8/views/pt/error400.php +33 -0
  560. package/pto/yaamp/web/framework-1.0.8/views/pt/error403.php +32 -0
  561. package/pto/yaamp/web/framework-1.0.8/views/pt/error404.php +33 -0
  562. package/pto/yaamp/web/framework-1.0.8/views/pt/error500.php +35 -0
  563. package/pto/yaamp/web/framework-1.0.8/views/pt/error503.php +31 -0
  564. package/pto/yaamp/web/framework-1.0.8/views/pt/exception.php +74 -0
  565. package/pto/yaamp/web/framework-1.0.8/views/pt/log-firebug.php +23 -0
  566. package/pto/yaamp/web/framework-1.0.8/views/pt/log.php +32 -0
  567. package/pto/yaamp/web/framework-1.0.8/views/pt/profile-callstack-firebug.php +19 -0
  568. package/pto/yaamp/web/framework-1.0.8/views/pt/profile-callstack.php +30 -0
  569. package/pto/yaamp/web/framework-1.0.8/views/pt/profile-summary-firebug.php +22 -0
  570. package/pto/yaamp/web/framework-1.0.8/views/pt/profile-summary.php +41 -0
  571. package/pto/yaamp/web/framework-1.0.8/views/ro/error.php +37 -0
  572. package/pto/yaamp/web/framework-1.0.8/views/ro/error400.php +33 -0
  573. package/pto/yaamp/web/framework-1.0.8/views/ro/error403.php +32 -0
  574. package/pto/yaamp/web/framework-1.0.8/views/ro/error404.php +33 -0
  575. package/pto/yaamp/web/framework-1.0.8/views/ro/error500.php +35 -0
  576. package/pto/yaamp/web/framework-1.0.8/views/ro/error503.php +31 -0
  577. package/pto/yaamp/web/framework-1.0.8/views/ro/exception.php +74 -0
  578. package/pto/yaamp/web/framework-1.0.8/views/ro/log-firebug.php +23 -0
  579. package/pto/yaamp/web/framework-1.0.8/views/ro/log.php +32 -0
  580. package/pto/yaamp/web/framework-1.0.8/views/ro/profile-callstack-firebug.php +19 -0
  581. package/pto/yaamp/web/framework-1.0.8/views/ro/profile-callstack.php +30 -0
  582. package/pto/yaamp/web/framework-1.0.8/views/ro/profile-summary-firebug.php +22 -0
  583. package/pto/yaamp/web/framework-1.0.8/views/ro/profile-summary.php +41 -0
  584. package/pto/yaamp/web/framework-1.0.8/views/ru/error.php +37 -0
  585. package/pto/yaamp/web/framework-1.0.8/views/ru/error400.php +33 -0
  586. package/pto/yaamp/web/framework-1.0.8/views/ru/error403.php +32 -0
  587. package/pto/yaamp/web/framework-1.0.8/views/ru/error404.php +33 -0
  588. package/pto/yaamp/web/framework-1.0.8/views/ru/error500.php +35 -0
  589. package/pto/yaamp/web/framework-1.0.8/views/ru/error503.php +31 -0
  590. package/pto/yaamp/web/framework-1.0.8/views/ru/exception.php +74 -0
  591. package/pto/yaamp/web/framework-1.0.8/views/ru/log-firebug.php +23 -0
  592. package/pto/yaamp/web/framework-1.0.8/views/ru/log.php +32 -0
  593. package/pto/yaamp/web/framework-1.0.8/views/ru/profile-callstack-firebug.php +19 -0
  594. package/pto/yaamp/web/framework-1.0.8/views/ru/profile-callstack.php +30 -0
  595. package/pto/yaamp/web/framework-1.0.8/views/ru/profile-summary-firebug.php +22 -0
  596. package/pto/yaamp/web/framework-1.0.8/views/ru/profile-summary.php +41 -0
  597. package/pto/yaamp/web/framework-1.0.8/views/sv/error.php +37 -0
  598. package/pto/yaamp/web/framework-1.0.8/views/sv/error400.php +33 -0
  599. package/pto/yaamp/web/framework-1.0.8/views/sv/error403.php +33 -0
  600. package/pto/yaamp/web/framework-1.0.8/views/sv/error404.php +33 -0
  601. package/pto/yaamp/web/framework-1.0.8/views/sv/error500.php +35 -0
  602. package/pto/yaamp/web/framework-1.0.8/views/sv/error503.php +31 -0
  603. package/pto/yaamp/web/framework-1.0.8/views/sv/exception.php +74 -0
  604. package/pto/yaamp/web/framework-1.0.8/views/sv/log-firebug.php +23 -0
  605. package/pto/yaamp/web/framework-1.0.8/views/sv/log.php +32 -0
  606. package/pto/yaamp/web/framework-1.0.8/views/sv/profile-callstack-firebug.php +19 -0
  607. package/pto/yaamp/web/framework-1.0.8/views/sv/profile-callstack.php +30 -0
  608. package/pto/yaamp/web/framework-1.0.8/views/sv/profile-summary-firebug.php +22 -0
  609. package/pto/yaamp/web/framework-1.0.8/views/sv/profile-summary.php +41 -0
  610. package/pto/yaamp/web/framework-1.0.8/views/zh_cn/error.php +37 -0
  611. package/pto/yaamp/web/framework-1.0.8/views/zh_cn/error400.php +33 -0
  612. package/pto/yaamp/web/framework-1.0.8/views/zh_cn/error403.php +32 -0
  613. package/pto/yaamp/web/framework-1.0.8/views/zh_cn/error404.php +33 -0
  614. package/pto/yaamp/web/framework-1.0.8/views/zh_cn/error500.php +35 -0
  615. package/pto/yaamp/web/framework-1.0.8/views/zh_cn/error503.php +31 -0
  616. package/pto/yaamp/web/framework-1.0.8/views/zh_cn/exception.php +74 -0
  617. package/pto/yaamp/web/framework-1.0.8/views/zh_cn/log-firebug.php +23 -0
  618. package/pto/yaamp/web/framework-1.0.8/views/zh_cn/log.php +32 -0
  619. package/pto/yaamp/web/framework-1.0.8/views/zh_cn/profile-callstack-firebug.php +19 -0
  620. package/pto/yaamp/web/framework-1.0.8/views/zh_cn/profile-callstack.php +28 -0
  621. package/pto/yaamp/web/framework-1.0.8/views/zh_cn/profile-summary-firebug.php +22 -0
  622. package/pto/yaamp/web/framework-1.0.8/views/zh_cn/profile-summary.php +41 -0
  623. package/pto/yaamp/web/framework-1.0.8/views/zh_tw/error.php +37 -0
  624. package/pto/yaamp/web/framework-1.0.8/views/zh_tw/error400.php +33 -0
  625. package/pto/yaamp/web/framework-1.0.8/views/zh_tw/error403.php +32 -0
  626. package/pto/yaamp/web/framework-1.0.8/views/zh_tw/error404.php +33 -0
  627. package/pto/yaamp/web/framework-1.0.8/views/zh_tw/error500.php +35 -0
  628. package/pto/yaamp/web/framework-1.0.8/views/zh_tw/error503.php +31 -0
  629. package/pto/yaamp/web/framework-1.0.8/views/zh_tw/exception.php +74 -0
  630. package/pto/yaamp/web/framework-1.0.8/views/zh_tw/log-firebug.php +23 -0
  631. package/pto/yaamp/web/framework-1.0.8/views/zh_tw/log.php +32 -0
  632. package/pto/yaamp/web/framework-1.0.8/views/zh_tw/profile-callstack-firebug.php +19 -0
  633. package/pto/yaamp/web/framework-1.0.8/views/zh_tw/profile-callstack.php +30 -0
  634. package/pto/yaamp/web/framework-1.0.8/views/zh_tw/profile-summary-firebug.php +22 -0
  635. package/pto/yaamp/web/framework-1.0.8/views/zh_tw/profile-summary.php +41 -0
  636. package/pto/yaamp/web/framework-1.0.8/web/CAssetManager.php +227 -0
  637. package/pto/yaamp/web/framework-1.0.8/web/CBaseController.php +283 -0
  638. package/pto/yaamp/web/framework-1.0.8/web/CCacheHttpSession.php +111 -0
  639. package/pto/yaamp/web/framework-1.0.8/web/CClientScript.php +562 -0
  640. package/pto/yaamp/web/framework-1.0.8/web/CController.php +1072 -0
  641. package/pto/yaamp/web/framework-1.0.8/web/CDbHttpSession.php +203 -0
  642. package/pto/yaamp/web/framework-1.0.8/web/CExtController.php +53 -0
  643. package/pto/yaamp/web/framework-1.0.8/web/CFormModel.php +113 -0
  644. package/pto/yaamp/web/framework-1.0.8/web/CHttpCookie.php +63 -0
  645. package/pto/yaamp/web/framework-1.0.8/web/CHttpRequest.php +763 -0
  646. package/pto/yaamp/web/framework-1.0.8/web/CHttpSession.php +522 -0
  647. package/pto/yaamp/web/framework-1.0.8/web/CHttpSessionIterator.php +92 -0
  648. package/pto/yaamp/web/framework-1.0.8/web/COutputEvent.php +38 -0
  649. package/pto/yaamp/web/framework-1.0.8/web/CPagination.php +161 -0
  650. package/pto/yaamp/web/framework-1.0.8/web/CSort.php +292 -0
  651. package/pto/yaamp/web/framework-1.0.8/web/CTheme.php +124 -0
  652. package/pto/yaamp/web/framework-1.0.8/web/CThemeManager.php +127 -0
  653. package/pto/yaamp/web/framework-1.0.8/web/CUploadedFile.php +210 -0
  654. package/pto/yaamp/web/framework-1.0.8/web/CUrlManager.php +613 -0
  655. package/pto/yaamp/web/framework-1.0.8/web/CWebApplication.php +608 -0
  656. package/pto/yaamp/web/framework-1.0.8/web/CWebModule.php +187 -0
  657. package/pto/yaamp/web/framework-1.0.8/web/actions/CAction.php +58 -0
  658. package/pto/yaamp/web/framework-1.0.8/web/actions/CInlineAction.php +34 -0
  659. package/pto/yaamp/web/framework-1.0.8/web/actions/CViewAction.php +165 -0
  660. package/pto/yaamp/web/framework-1.0.8/web/auth/CAccessControlFilter.php +295 -0
  661. package/pto/yaamp/web/framework-1.0.8/web/auth/CAuthAssignment.php +102 -0
  662. package/pto/yaamp/web/framework-1.0.8/web/auth/CAuthItem.php +269 -0
  663. package/pto/yaamp/web/framework-1.0.8/web/auth/CAuthManager.php +157 -0
  664. package/pto/yaamp/web/framework-1.0.8/web/auth/CBaseUserIdentity.php +116 -0
  665. package/pto/yaamp/web/framework-1.0.8/web/auth/CDbAuthManager.php +584 -0
  666. package/pto/yaamp/web/framework-1.0.8/web/auth/CPhpAuthManager.php +535 -0
  667. package/pto/yaamp/web/framework-1.0.8/web/auth/CUserIdentity.php +79 -0
  668. package/pto/yaamp/web/framework-1.0.8/web/auth/CWebUser.php +583 -0
  669. package/pto/yaamp/web/framework-1.0.8/web/auth/schema.sql +42 -0
  670. package/pto/yaamp/web/framework-1.0.8/web/filters/CFilter.php +64 -0
  671. package/pto/yaamp/web/framework-1.0.8/web/filters/CFilterChain.php +131 -0
  672. package/pto/yaamp/web/framework-1.0.8/web/filters/CInlineFilter.php +61 -0
  673. package/pto/yaamp/web/framework-1.0.8/web/helpers/CGoogleApi.php +72 -0
  674. package/pto/yaamp/web/framework-1.0.8/web/helpers/CHtml.php +1801 -0
  675. package/pto/yaamp/web/framework-1.0.8/web/helpers/CJSON.php +698 -0
  676. package/pto/yaamp/web/framework-1.0.8/web/helpers/CJavaScript.php +128 -0
  677. package/pto/yaamp/web/framework-1.0.8/web/renderers/CPradoViewRenderer.php +245 -0
  678. package/pto/yaamp/web/framework-1.0.8/web/renderers/CViewRenderer.php +93 -0
  679. package/pto/yaamp/web/framework-1.0.8/web/services/CWebService.php +271 -0
  680. package/pto/yaamp/web/framework-1.0.8/web/services/CWebServiceAction.php +130 -0
  681. package/pto/yaamp/web/framework-1.0.8/web/services/CWsdlGenerator.php +373 -0
  682. package/pto/yaamp/web/framework-1.0.8/web/widgets/CAutoComplete.php +285 -0
  683. package/pto/yaamp/web/framework-1.0.8/web/widgets/CClipWidget.php +55 -0
  684. package/pto/yaamp/web/framework-1.0.8/web/widgets/CContentDecorator.php +83 -0
  685. package/pto/yaamp/web/framework-1.0.8/web/widgets/CFilterWidget.php +74 -0
  686. package/pto/yaamp/web/framework-1.0.8/web/widgets/CFlexWidget.php +116 -0
  687. package/pto/yaamp/web/framework-1.0.8/web/widgets/CHtmlPurifier.php +64 -0
  688. package/pto/yaamp/web/framework-1.0.8/web/widgets/CInputWidget.php +80 -0
  689. package/pto/yaamp/web/framework-1.0.8/web/widgets/CMarkdown.php +119 -0
  690. package/pto/yaamp/web/framework-1.0.8/web/widgets/CMaskedTextField.php +106 -0
  691. package/pto/yaamp/web/framework-1.0.8/web/widgets/CMultiFileUpload.php +115 -0
  692. package/pto/yaamp/web/framework-1.0.8/web/widgets/COutputCache.php +336 -0
  693. package/pto/yaamp/web/framework-1.0.8/web/widgets/COutputProcessor.php +77 -0
  694. package/pto/yaamp/web/framework-1.0.8/web/widgets/CStarRating.php +207 -0
  695. package/pto/yaamp/web/framework-1.0.8/web/widgets/CTabView.php +201 -0
  696. package/pto/yaamp/web/framework-1.0.8/web/widgets/CTextHighlighter.php +127 -0
  697. package/pto/yaamp/web/framework-1.0.8/web/widgets/CTreeView.php +232 -0
  698. package/pto/yaamp/web/framework-1.0.8/web/widgets/CWidget.php +202 -0
  699. package/pto/yaamp/web/framework-1.0.8/web/widgets/captcha/CCaptcha.php +132 -0
  700. package/pto/yaamp/web/framework-1.0.8/web/widgets/captcha/CCaptchaAction.php +233 -0
  701. package/pto/yaamp/web/framework-1.0.8/web/widgets/captcha/Duality.ttf +0 -0
  702. package/pto/yaamp/web/framework-1.0.8/web/widgets/pagers/CBasePager.php +129 -0
  703. package/pto/yaamp/web/framework-1.0.8/web/widgets/pagers/CLinkPager.php +194 -0
  704. package/pto/yaamp/web/framework-1.0.8/web/widgets/pagers/CListPager.php +85 -0
  705. package/pto/yaamp/web/framework-1.0.8/web/widgets/pagers/pager.css +68 -0
  706. package/pto/yaamp/web/framework-1.0.8/web/widgets/views/flexWidget.php +98 -0
  707. package/pto/yaamp/web/framework-1.0.8/yii.php +29 -0
  708. package/pto/yaamp/web/images/41.png +0 -0
  709. package/pto/yaamp/web/images/amc.jpg +0 -0
  710. package/pto/yaamp/web/images/base/action_refresh_blue.gif +0 -0
  711. package/pto/yaamp/web/images/base/action_save.gif +0 -0
  712. package/pto/yaamp/web/images/base/delete.png +0 -0
  713. package/pto/yaamp/web/images/base/dot.png +0 -0
  714. package/pto/yaamp/web/images/base/download.png +0 -0
  715. package/pto/yaamp/web/images/base/edit.png +0 -0
  716. package/pto/yaamp/web/images/base/enroll.png +0 -0
  717. package/pto/yaamp/web/images/base/favorite.png +0 -0
  718. package/pto/yaamp/web/images/base/folder_new.png +0 -0
  719. package/pto/yaamp/web/images/base/new.png +0 -0
  720. package/pto/yaamp/web/images/base/newcomment.png +0 -0
  721. package/pto/yaamp/web/images/base/newfile.png +0 -0
  722. package/pto/yaamp/web/images/base/newfolder.png +0 -0
  723. package/pto/yaamp/web/images/base/newuser.png +0 -0
  724. package/pto/yaamp/web/images/base/pause.png +0 -0
  725. package/pto/yaamp/web/images/base/play.png +0 -0
  726. package/pto/yaamp/web/images/base/tools.png +0 -0
  727. package/pto/yaamp/web/images/base/top.png +0 -0
  728. package/pto/yaamp/web/images/base/top_header.png +0 -0
  729. package/pto/yaamp/web/images/base/top_header_selected.png +0 -0
  730. package/pto/yaamp/web/images/base/video_play.png +0 -0
  731. package/pto/yaamp/web/images/beta_corner_banner.png +0 -0
  732. package/pto/yaamp/web/images/beta_corner_banner2.png +0 -0
  733. package/pto/yaamp/web/images/btc.png +0 -0
  734. package/pto/yaamp/web/images/coin-154.png +0 -0
  735. package/pto/yaamp/web/images/coin-22.png +0 -0
  736. package/pto/yaamp/web/images/coin-251.png +0 -0
  737. package/pto/yaamp/web/images/coin-30.png +0 -0
  738. package/pto/yaamp/web/images/coin-316.png +0 -0
  739. package/pto/yaamp/web/images/coin-33.png +0 -0
  740. package/pto/yaamp/web/images/coin-6.png +0 -0
  741. package/pto/yaamp/web/images/coin-834.png +0 -0
  742. package/pto/yaamp/web/images/gears.png +0 -0
  743. package/pto/yaamp/web/images/minus2-78.png +0 -0
  744. package/pto/yaamp/web/images/next.png +0 -0
  745. package/pto/yaamp/web/images/pause.png +0 -0
  746. package/pto/yaamp/web/images/play.png +0 -0
  747. package/pto/yaamp/web/images/plus2-78.png +0 -0
  748. package/pto/yaamp/web/images/sign-in-with-twitter-gray.png +0 -0
  749. package/pto/yaamp/web/images/sign-in-with-twitter-link.png +0 -0
  750. package/pto/yaamp/web/images/start.png +0 -0
  751. package/pto/yaamp/web/images/t_mini-a.png +0 -0
  752. package/pto/yaamp/web/images/tweet.jpg +0 -0
  753. package/pto/yaamp/web/images/twitter.jpg +0 -0
  754. package/pto/yaamp/web/images/ui/16x16_2leftarrow.png +0 -0
  755. package/pto/yaamp/web/images/ui/16x16_2rightarrow.png +0 -0
  756. package/pto/yaamp/web/images/ui/16x16_bottom.png +0 -0
  757. package/pto/yaamp/web/images/ui/16x16_chat.png +0 -0
  758. package/pto/yaamp/web/images/ui/16x16_delete.png +0 -0
  759. package/pto/yaamp/web/images/ui/16x16_edit.png +0 -0
  760. package/pto/yaamp/web/images/ui/16x16_email.png +0 -0
  761. package/pto/yaamp/web/images/ui/16x16_fileclose.png +0 -0
  762. package/pto/yaamp/web/images/ui/16x16_kcontrol.png +0 -0
  763. package/pto/yaamp/web/images/ui/16x16_kuser.png +0 -0
  764. package/pto/yaamp/web/images/ui/16x16_ledgreen.png +0 -0
  765. package/pto/yaamp/web/images/ui/16x16_link.png +0 -0
  766. package/pto/yaamp/web/images/ui/16x16_misc.png +0 -0
  767. package/pto/yaamp/web/images/ui/16x16_package_edutainment.png +0 -0
  768. package/pto/yaamp/web/images/ui/16x16_window_list.png +0 -0
  769. package/pto/yaamp/web/images/ui/22x22_bottom.png +0 -0
  770. package/pto/yaamp/web/images/ui/24x24_link.png +0 -0
  771. package/pto/yaamp/web/images/ui/32x32_link.png +0 -0
  772. package/pto/yaamp/web/images/ui/48x48_link.png +0 -0
  773. package/pto/yaamp/web/images/ui/arrow-down.gif +0 -0
  774. package/pto/yaamp/web/images/ui/arrow-right.gif +0 -0
  775. package/pto/yaamp/web/images/ui/asc.gif +0 -0
  776. package/pto/yaamp/web/images/ui/away.gif +0 -0
  777. package/pto/yaamp/web/images/ui/bg.gif +0 -0
  778. package/pto/yaamp/web/images/ui/control_play_blue.png +0 -0
  779. package/pto/yaamp/web/images/ui/desc.gif +0 -0
  780. package/pto/yaamp/web/images/ui/down_arrow.png +0 -0
  781. package/pto/yaamp/web/images/ui/empty.png +0 -0
  782. package/pto/yaamp/web/images/ui/expand_down.png +0 -0
  783. package/pto/yaamp/web/images/ui/expand_up.png +0 -0
  784. package/pto/yaamp/web/images/ui/green-check.png +0 -0
  785. package/pto/yaamp/web/images/ui/icon-check.gif +0 -0
  786. package/pto/yaamp/web/images/ui/install-flash.jpg +0 -0
  787. package/pto/yaamp/web/images/ui/linkout.png +0 -0
  788. package/pto/yaamp/web/images/ui/loading.gif +0 -0
  789. package/pto/yaamp/web/images/ui/loading_white.gif +0 -0
  790. package/pto/yaamp/web/images/ui/menudot.png +0 -0
  791. package/pto/yaamp/web/images/ui/menuo_bg.gif +0 -0
  792. package/pto/yaamp/web/images/ui/offline.gif +0 -0
  793. package/pto/yaamp/web/images/ui/online.gif +0 -0
  794. package/pto/yaamp/web/images/ui/shade.gif +0 -0
  795. package/pto/yaamp/web/images/ui/shadeactive.gif +0 -0
  796. package/pto/yaamp/web/images/ui/showactivity.png +0 -0
  797. package/pto/yaamp/web/images/ui/showcourse.png +0 -0
  798. package/pto/yaamp/web/images/ui/showdetail.png +0 -0
  799. package/pto/yaamp/web/images/ui/showfile.png +0 -0
  800. package/pto/yaamp/web/images/ui/showfolder.png +0 -0
  801. package/pto/yaamp/web/images/ui/showgraph.png +0 -0
  802. package/pto/yaamp/web/images/ui/showlink.png +0 -0
  803. package/pto/yaamp/web/images/ui/showmedium.png +0 -0
  804. package/pto/yaamp/web/images/ui/showsmall.png +0 -0
  805. package/pto/yaamp/web/images/ui/tintblue.gif +0 -0
  806. package/pto/yaamp/web/images/ui/tintbluedark.gif +0 -0
  807. package/pto/yaamp/web/images/vn_embed.png +0 -0
  808. package/pto/yaamp/web/index.php +30 -0
  809. package/pto/yaamp/web/loop2.sh +9 -0
  810. package/pto/yaamp/web/main.sh +9 -0
  811. package/pto/yaamp/web/robots.txt +2 -0
  812. package/pto/yaamp/web/run.php +25 -0
  813. package/pto/yaamp/web/serverconfig.php +26 -0
  814. package/pto/yaamp/web/yaamp/components/CUFHtml.php +136 -0
  815. package/pto/yaamp/web/yaamp/components/UniForm.php +25 -0
  816. package/pto/yaamp/web/yaamp/components/UserIdentity.php +25 -0
  817. package/pto/yaamp/web/yaamp/config.php +68 -0
  818. package/pto/yaamp/web/yaamp/core/backend/backend.php +17 -0
  819. package/pto/yaamp/web/yaamp/core/backend/blocks.php +243 -0
  820. package/pto/yaamp/web/yaamp/core/backend/clear.php +47 -0
  821. package/pto/yaamp/web/yaamp/core/backend/coins.php +245 -0
  822. package/pto/yaamp/web/yaamp/core/backend/markets.php +505 -0
  823. package/pto/yaamp/web/yaamp/core/backend/payment.php +153 -0
  824. package/pto/yaamp/web/yaamp/core/backend/rawcoins.php +144 -0
  825. package/pto/yaamp/web/yaamp/core/backend/renting.php +271 -0
  826. package/pto/yaamp/web/yaamp/core/backend/sell.php +126 -0
  827. package/pto/yaamp/web/yaamp/core/backend/services.php +210 -0
  828. package/pto/yaamp/web/yaamp/core/backend/stats.php +347 -0
  829. package/pto/yaamp/web/yaamp/core/backend/system.php +253 -0
  830. package/pto/yaamp/web/yaamp/core/backend/users.php +95 -0
  831. package/pto/yaamp/web/yaamp/core/common/Shortcuts.php +77 -0
  832. package/pto/yaamp/web/yaamp/core/common/common.php +10 -0
  833. package/pto/yaamp/web/yaamp/core/common/libUtil.php +305 -0
  834. package/pto/yaamp/web/yaamp/core/common/libdbo.php +91 -0
  835. package/pto/yaamp/web/yaamp/core/common/system.php +135 -0
  836. package/pto/yaamp/web/yaamp/core/common/util.php +317 -0
  837. package/pto/yaamp/web/yaamp/core/common/utilConversion.php +296 -0
  838. package/pto/yaamp/web/yaamp/core/core.php +11 -0
  839. package/pto/yaamp/web/yaamp/core/exchange/bittrex.php +28 -0
  840. package/pto/yaamp/web/yaamp/core/exchange/bleutrade.php +28 -0
  841. package/pto/yaamp/web/yaamp/core/exchange/ccexapi.php +106 -0
  842. package/pto/yaamp/web/yaamp/core/exchange/cryptsy.php +63 -0
  843. package/pto/yaamp/web/yaamp/core/exchange/exchange.php +12 -0
  844. package/pto/yaamp/web/yaamp/core/exchange/jubi.php +20 -0
  845. package/pto/yaamp/web/yaamp/core/exchange/poloniex.php +242 -0
  846. package/pto/yaamp/web/yaamp/core/exchange/yobit.php +77 -0
  847. package/pto/yaamp/web/yaamp/core/exchange2/CExchange.php +198 -0
  848. package/pto/yaamp/web/yaamp/core/exchange2/CExchangeCoin.php +84 -0
  849. package/pto/yaamp/web/yaamp/core/exchange2/exchange.php +7 -0
  850. package/pto/yaamp/web/yaamp/core/functions/curloauth.php +50 -0
  851. package/pto/yaamp/web/yaamp/core/functions/easybitcoin.php +220 -0
  852. package/pto/yaamp/web/yaamp/core/functions/functions.php +11 -0
  853. package/pto/yaamp/web/yaamp/core/functions/memcache.php +85 -0
  854. package/pto/yaamp/web/yaamp/core/functions/url.php +79 -0
  855. package/pto/yaamp/web/yaamp/core/functions/yaamp.php +365 -0
  856. package/pto/yaamp/web/yaamp/core/trading/bittrex_trading.php +221 -0
  857. package/pto/yaamp/web/yaamp/core/trading/bleutrade_trading.php +218 -0
  858. package/pto/yaamp/web/yaamp/core/trading/c-cex_trading.php +192 -0
  859. package/pto/yaamp/web/yaamp/core/trading/cryptsy_trading.php +231 -0
  860. package/pto/yaamp/web/yaamp/core/trading/poloniex_trading.php +179 -0
  861. package/pto/yaamp/web/yaamp/core/trading/trading.php +11 -0
  862. package/pto/yaamp/web/yaamp/core/trading/yobit_trading.php +205 -0
  863. package/pto/yaamp/web/yaamp/include.php +11 -0
  864. package/pto/yaamp/web/yaamp/models/db_accountsModel.php +33 -0
  865. package/pto/yaamp/web/yaamp/models/db_algosModel.php +33 -0
  866. package/pto/yaamp/web/yaamp/models/db_balancesModel.php +33 -0
  867. package/pto/yaamp/web/yaamp/models/db_balanceuserModel.php +33 -0
  868. package/pto/yaamp/web/yaamp/models/db_blocksModel.php +33 -0
  869. package/pto/yaamp/web/yaamp/models/db_coinsModel.php +46 -0
  870. package/pto/yaamp/web/yaamp/models/db_connectionsModel.php +35 -0
  871. package/pto/yaamp/web/yaamp/models/db_earningsModel.php +33 -0
  872. package/pto/yaamp/web/yaamp/models/db_exchangeModel.php +33 -0
  873. package/pto/yaamp/web/yaamp/models/db_hashrateModel.php +33 -0
  874. package/pto/yaamp/web/yaamp/models/db_hashrenterModel.php +33 -0
  875. package/pto/yaamp/web/yaamp/models/db_hashstatsModel.php +33 -0
  876. package/pto/yaamp/web/yaamp/models/db_hashuserModel.php +33 -0
  877. package/pto/yaamp/web/yaamp/models/db_jobsModel.php +33 -0
  878. package/pto/yaamp/web/yaamp/models/db_jobsubmitsModel.php +33 -0
  879. package/pto/yaamp/web/yaamp/models/db_marketsModel.php +33 -0
  880. package/pto/yaamp/web/yaamp/models/db_miningModel.php +33 -0
  881. package/pto/yaamp/web/yaamp/models/db_nicehashModel.php +33 -0
  882. package/pto/yaamp/web/yaamp/models/db_ordersModel.php +33 -0
  883. package/pto/yaamp/web/yaamp/models/db_payoutsModel.php +33 -0
  884. package/pto/yaamp/web/yaamp/models/db_rawcoinsModel.php +36 -0
  885. package/pto/yaamp/web/yaamp/models/db_rentersModel.php +33 -0
  886. package/pto/yaamp/web/yaamp/models/db_rentertxsModel.php +33 -0
  887. package/pto/yaamp/web/yaamp/models/db_serversModel.php +33 -0
  888. package/pto/yaamp/web/yaamp/models/db_servicesModel.php +33 -0
  889. package/pto/yaamp/web/yaamp/models/db_sharesModel.php +33 -0
  890. package/pto/yaamp/web/yaamp/models/db_shares_vipModel.php +33 -0
  891. package/pto/yaamp/web/yaamp/models/db_statsModel.php +33 -0
  892. package/pto/yaamp/web/yaamp/models/db_stratumsModel.php +33 -0
  893. package/pto/yaamp/web/yaamp/models/db_withdrawsModel.php +33 -0
  894. package/pto/yaamp/web/yaamp/models/db_workersModel.php +33 -0
  895. package/pto/yaamp/web/yaamp/modules/api/ApiController.php +301 -0
  896. package/pto/yaamp/web/yaamp/modules/coin/CoinController.php +54 -0
  897. package/pto/yaamp/web/yaamp/modules/coin/_form.php +75 -0
  898. package/pto/yaamp/web/yaamp/modules/coin/index.php +134 -0
  899. package/pto/yaamp/web/yaamp/modules/common/CommonController.php +55 -0
  900. package/pto/yaamp/web/yaamp/modules/common/maintenance.php +25 -0
  901. package/pto/yaamp/web/yaamp/modules/common/yaamp.php +23 -0
  902. package/pto/yaamp/web/yaamp/modules/explorer/ExplorerController.php +56 -0
  903. package/pto/yaamp/web/yaamp/modules/explorer/block.php +122 -0
  904. package/pto/yaamp/web/yaamp/modules/explorer/coin.php +63 -0
  905. package/pto/yaamp/web/yaamp/modules/explorer/index.php +67 -0
  906. package/pto/yaamp/web/yaamp/modules/explorer/tx.php +73 -0
  907. package/pto/yaamp/web/yaamp/modules/explorer/util.php +146 -0
  908. package/pto/yaamp/web/yaamp/modules/market/MarketController.php +86 -0
  909. package/pto/yaamp/web/yaamp/modules/market/update.php +23 -0
  910. package/pto/yaamp/web/yaamp/modules/nicehash/NicehashController.php +55 -0
  911. package/pto/yaamp/web/yaamp/modules/nicehash/index.php +37 -0
  912. package/pto/yaamp/web/yaamp/modules/nicehash/index_results.php +78 -0
  913. package/pto/yaamp/web/yaamp/modules/renting/RentingController.php +469 -0
  914. package/pto/yaamp/web/yaamp/modules/renting/admin.php +148 -0
  915. package/pto/yaamp/web/yaamp/modules/renting/all_orders_results.php +95 -0
  916. package/pto/yaamp/web/yaamp/modules/renting/balance_results.php +115 -0
  917. package/pto/yaamp/web/yaamp/modules/renting/create.php +52 -0
  918. package/pto/yaamp/web/yaamp/modules/renting/graph_job_results.php +74 -0
  919. package/pto/yaamp/web/yaamp/modules/renting/graph_price_results.php +54 -0
  920. package/pto/yaamp/web/yaamp/modules/renting/index.php +318 -0
  921. package/pto/yaamp/web/yaamp/modules/renting/login.php +239 -0
  922. package/pto/yaamp/web/yaamp/modules/renting/orders_results.php +130 -0
  923. package/pto/yaamp/web/yaamp/modules/renting/settings.php +156 -0
  924. package/pto/yaamp/web/yaamp/modules/renting/status_results.php +103 -0
  925. package/pto/yaamp/web/yaamp/modules/renting/tx.php +74 -0
  926. package/pto/yaamp/web/yaamp/modules/site/SiteController.php +772 -0
  927. package/pto/yaamp/web/yaamp/modules/site/about.php +59 -0
  928. package/pto/yaamp/web/yaamp/modules/site/admin.php +90 -0
  929. package/pto/yaamp/web/yaamp/modules/site/admin_results.php +171 -0
  930. package/pto/yaamp/web/yaamp/modules/site/api.php +136 -0
  931. package/pto/yaamp/web/yaamp/modules/site/backup.php +33 -0
  932. package/pto/yaamp/web/yaamp/modules/site/block.php +46 -0
  933. package/pto/yaamp/web/yaamp/modules/site/block_results.php +85 -0
  934. package/pto/yaamp/web/yaamp/modules/site/coin.php +145 -0
  935. package/pto/yaamp/web/yaamp/modules/site/coin_form.php +229 -0
  936. package/pto/yaamp/web/yaamp/modules/site/coin_results.php +242 -0
  937. package/pto/yaamp/web/yaamp/modules/site/common.php +231 -0
  938. package/pto/yaamp/web/yaamp/modules/site/common_results.php +576 -0
  939. package/pto/yaamp/web/yaamp/modules/site/connections.php +57 -0
  940. package/pto/yaamp/web/yaamp/modules/site/connections_results.php +48 -0
  941. package/pto/yaamp/web/yaamp/modules/site/diff.php +36 -0
  942. package/pto/yaamp/web/yaamp/modules/site/earning.php +50 -0
  943. package/pto/yaamp/web/yaamp/modules/site/earning_results.php +74 -0
  944. package/pto/yaamp/web/yaamp/modules/site/emptymarkets.php +34 -0
  945. package/pto/yaamp/web/yaamp/modules/site/eval.php +22 -0
  946. package/pto/yaamp/web/yaamp/modules/site/exchange.php +50 -0
  947. package/pto/yaamp/web/yaamp/modules/site/exchange_results.php +183 -0
  948. package/pto/yaamp/web/yaamp/modules/site/index.php +154 -0
  949. package/pto/yaamp/web/yaamp/modules/site/memcached.php +56 -0
  950. package/pto/yaamp/web/yaamp/modules/site/miners.php +88 -0
  951. package/pto/yaamp/web/yaamp/modules/site/mining.php +235 -0
  952. package/pto/yaamp/web/yaamp/modules/site/monsters.php +129 -0
  953. package/pto/yaamp/web/yaamp/modules/site/multialgo.php +84 -0
  954. package/pto/yaamp/web/yaamp/modules/site/payments.php +50 -0
  955. package/pto/yaamp/web/yaamp/modules/site/payments_results.php +56 -0
  956. package/pto/yaamp/web/yaamp/modules/site/results/current_results.php +158 -0
  957. package/pto/yaamp/web/yaamp/modules/site/results/found_results.php +94 -0
  958. package/pto/yaamp/web/yaamp/modules/site/results/graph_assets_results.php +58 -0
  959. package/pto/yaamp/web/yaamp/modules/site/results/graph_earnings_results.php +47 -0
  960. package/pto/yaamp/web/yaamp/modules/site/results/graph_hashrate_results.php +68 -0
  961. package/pto/yaamp/web/yaamp/modules/site/results/graph_negative_results.php +36 -0
  962. package/pto/yaamp/web/yaamp/modules/site/results/graph_price_results.php +68 -0
  963. package/pto/yaamp/web/yaamp/modules/site/results/graph_profit_results.php +25 -0
  964. package/pto/yaamp/web/yaamp/modules/site/results/graph_user_results.php +81 -0
  965. package/pto/yaamp/web/yaamp/modules/site/results/history_results.php +156 -0
  966. package/pto/yaamp/web/yaamp/modules/site/results/miners_results.php +126 -0
  967. package/pto/yaamp/web/yaamp/modules/site/results/mining_results.php +216 -0
  968. package/pto/yaamp/web/yaamp/modules/site/results/user_earning_results.php +92 -0
  969. package/pto/yaamp/web/yaamp/modules/site/results/wallet_graphs_results.php +33 -0
  970. package/pto/yaamp/web/yaamp/modules/site/results/wallet_miners_results.php +117 -0
  971. package/pto/yaamp/web/yaamp/modules/site/results/wallet_results.php +263 -0
  972. package/pto/yaamp/web/yaamp/modules/site/terms.php +392 -0
  973. package/pto/yaamp/web/yaamp/modules/site/tx.php +64 -0
  974. package/pto/yaamp/web/yaamp/modules/site/user.php +80 -0
  975. package/pto/yaamp/web/yaamp/modules/site/user_results.php +136 -0
  976. package/pto/yaamp/web/yaamp/modules/site/version.php +50 -0
  977. package/pto/yaamp/web/yaamp/modules/site/version_results.php +48 -0
  978. package/pto/yaamp/web/yaamp/modules/site/wallet.php +390 -0
  979. package/pto/yaamp/web/yaamp/modules/site/worker.php +50 -0
  980. package/pto/yaamp/web/yaamp/modules/site/worker_results.php +55 -0
  981. package/pto/yaamp/web/yaamp/modules/stats/StatsController.php +65 -0
  982. package/pto/yaamp/web/yaamp/modules/stats/graph_results_1.php +20 -0
  983. package/pto/yaamp/web/yaamp/modules/stats/graph_results_2.php +19 -0
  984. package/pto/yaamp/web/yaamp/modules/stats/graph_results_3.php +20 -0
  985. package/pto/yaamp/web/yaamp/modules/stats/graph_results_4.php +34 -0
  986. package/pto/yaamp/web/yaamp/modules/stats/graph_results_5.php +33 -0
  987. package/pto/yaamp/web/yaamp/modules/stats/graph_results_6.php +40 -0
  988. package/pto/yaamp/web/yaamp/modules/stats/graph_results_7.php +34 -0
  989. package/pto/yaamp/web/yaamp/modules/stats/graph_results_8.php +33 -0
  990. package/pto/yaamp/web/yaamp/modules/stats/graph_results_9.php +44 -0
  991. package/pto/yaamp/web/yaamp/modules/stats/index.php +502 -0
  992. package/pto/yaamp/web/yaamp/modules/thread/CronjobController.php +196 -0
  993. package/pto/yaamp/web/yaamp/modules/trading/TradingController.php +59 -0
  994. package/pto/yaamp/web/yaamp/modules/trading/index.php +270 -0
  995. package/pto/yaamp/web/yaamp/modules/trading/mining_results.php +245 -0
  996. package/pto/yaamp/web/yaamp/ui/app.php +8 -0
  997. package/pto/yaamp/web/yaamp/ui/css/editor.css +34 -0
  998. package/pto/yaamp/web/yaamp/ui/css/indicator.gif +0 -0
  999. package/pto/yaamp/web/yaamp/ui/css/jquery-ui-fixes.css +26 -0
  1000. package/pto/yaamp/web/yaamp/ui/css/list.css +78 -0
  1001. package/pto/yaamp/web/yaamp/ui/css/main.css +225 -0
  1002. package/pto/yaamp/web/yaamp/ui/css/news.css +82 -0
  1003. package/pto/yaamp/web/yaamp/ui/css/objectmenu.css +27 -0
  1004. package/pto/yaamp/web/yaamp/ui/css/poll.css +194 -0
  1005. package/pto/yaamp/web/yaamp/ui/css/table.css +124 -0
  1006. package/pto/yaamp/web/yaamp/ui/css/tags.css +97 -0
  1007. package/pto/yaamp/web/yaamp/ui/css/uni-form-generic.css +25 -0
  1008. package/pto/yaamp/web/yaamp/ui/css/uni-form.css +94 -0
  1009. package/pto/yaamp/web/yaamp/ui/js/auto_refresh.js +33 -0
  1010. package/pto/yaamp/web/yaamp/ui/js/cookies.js +45 -0
  1011. package/pto/yaamp/web/yaamp/ui/js/datetime.js +126 -0
  1012. package/pto/yaamp/web/yaamp/ui/js/jquery.bgiframe.js +44 -0
  1013. package/pto/yaamp/web/yaamp/ui/js/jquery.dialogextend.js +589 -0
  1014. package/pto/yaamp/web/yaamp/ui/js/jquery.tablesorter.js +1031 -0
  1015. package/pto/yaamp/web/yaamp/ui/js/jquery.yii.js +45 -0
  1016. package/pto/yaamp/web/yaamp/ui/js/swfobject.js +780 -0
  1017. package/pto/yaamp/web/yaamp/ui/js/texteditor.js +54 -0
  1018. package/pto/yaamp/web/yaamp/ui/js/uni-form.jquery.js +38 -0
  1019. package/pto/yaamp/web/yaamp/ui/js/util.js +108 -0
  1020. package/pto/yaamp/web/yaamp/ui/lib/lib.php +4 -0
  1021. package/pto/yaamp/web/yaamp/ui/lib/libview.php +59 -0
  1022. package/pto/yaamp/web/yaamp/ui/lib/pageheader.php +26 -0
  1023. package/pto/yaamp/web/yaamp/ui/main.php +131 -0
  1024. package/pto/yaamp/web/yaamp/ui/misc.php +41 -0
  1025. package/pto/yaamp/yaamp.sql +3098 -0
@@ -0,0 +1,1799 @@
1
+ /* $Id: simd.c 227 2010-06-16 17:28:38Z tp $ */
2
+ /*
3
+ * SIMD implementation.
4
+ *
5
+ * ==========================(LICENSE BEGIN)============================
6
+ *
7
+ * Copyright (c) 2007-2010 Projet RNRT SAPHIR
8
+ *
9
+ * Permission is hereby granted, free of charge, to any person obtaining
10
+ * a copy of this software and associated documentation files (the
11
+ * "Software"), to deal in the Software without restriction, including
12
+ * without limitation the rights to use, copy, modify, merge, publish,
13
+ * distribute, sublicense, and/or sell copies of the Software, and to
14
+ * permit persons to whom the Software is furnished to do so, subject to
15
+ * the following conditions:
16
+ *
17
+ * The above copyright notice and this permission notice shall be
18
+ * included in all copies or substantial portions of the Software.
19
+ *
20
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21
+ * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22
+ * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
23
+ * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
24
+ * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
25
+ * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
26
+ * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27
+ *
28
+ * ===========================(LICENSE END)=============================
29
+ *
30
+ * @author Thomas Pornin <thomas.pornin@cryptolog.com>
31
+ */
32
+
33
+ #include <stddef.h>
34
+ #include <string.h>
35
+ #include <limits.h>
36
+
37
+ #include "sph_simd.h"
38
+
39
+ #ifdef __cplusplus
40
+ extern "C"{
41
+ #endif
42
+
43
+ #if SPH_SMALL_FOOTPRINT && !defined SPH_SMALL_FOOTPRINT_SIMD
44
+ #define SPH_SMALL_FOOTPRINT_SIMD 1
45
+ #endif
46
+
47
+ #ifdef _MSC_VER
48
+ #pragma warning (disable: 4146)
49
+ #endif
50
+
51
+ typedef sph_u32 u32;
52
+ typedef sph_s32 s32;
53
+ #define C32 SPH_C32
54
+ #define T32 SPH_T32
55
+ #define ROL32 SPH_ROTL32
56
+
57
+ #define XCAT(x, y) XCAT_(x, y)
58
+ #define XCAT_(x, y) x ## y
59
+
60
+ /*
61
+ * The powers of 41 modulo 257. We use exponents from 0 to 255, inclusive.
62
+ */
63
+ static const s32 alpha_tab[] = {
64
+ 1, 41, 139, 45, 46, 87, 226, 14, 60, 147, 116, 130,
65
+ 190, 80, 196, 69, 2, 82, 21, 90, 92, 174, 195, 28,
66
+ 120, 37, 232, 3, 123, 160, 135, 138, 4, 164, 42, 180,
67
+ 184, 91, 133, 56, 240, 74, 207, 6, 246, 63, 13, 19,
68
+ 8, 71, 84, 103, 111, 182, 9, 112, 223, 148, 157, 12,
69
+ 235, 126, 26, 38, 16, 142, 168, 206, 222, 107, 18, 224,
70
+ 189, 39, 57, 24, 213, 252, 52, 76, 32, 27, 79, 155,
71
+ 187, 214, 36, 191, 121, 78, 114, 48, 169, 247, 104, 152,
72
+ 64, 54, 158, 53, 117, 171, 72, 125, 242, 156, 228, 96,
73
+ 81, 237, 208, 47, 128, 108, 59, 106, 234, 85, 144, 250,
74
+ 227, 55, 199, 192, 162, 217, 159, 94, 256, 216, 118, 212,
75
+ 211, 170, 31, 243, 197, 110, 141, 127, 67, 177, 61, 188,
76
+ 255, 175, 236, 167, 165, 83, 62, 229, 137, 220, 25, 254,
77
+ 134, 97, 122, 119, 253, 93, 215, 77, 73, 166, 124, 201,
78
+ 17, 183, 50, 251, 11, 194, 244, 238, 249, 186, 173, 154,
79
+ 146, 75, 248, 145, 34, 109, 100, 245, 22, 131, 231, 219,
80
+ 241, 115, 89, 51, 35, 150, 239, 33, 68, 218, 200, 233,
81
+ 44, 5, 205, 181, 225, 230, 178, 102, 70, 43, 221, 66,
82
+ 136, 179, 143, 209, 88, 10, 153, 105, 193, 203, 99, 204,
83
+ 140, 86, 185, 132, 15, 101, 29, 161, 176, 20, 49, 210,
84
+ 129, 149, 198, 151, 23, 172, 113, 7, 30, 202, 58, 65,
85
+ 95, 40, 98, 163
86
+ };
87
+
88
+ /*
89
+ * Ranges:
90
+ * REDS1: from -32768..98302 to -383..383
91
+ * REDS2: from -2^31..2^31-1 to -32768..98302
92
+ */
93
+ #define REDS1(x) (((x) & 0xFF) - ((x) >> 8))
94
+ #define REDS2(x) (((x) & 0xFFFF) + ((x) >> 16))
95
+
96
+ /*
97
+ * If, upon entry, the values of q[] are all in the -N..N range (where
98
+ * N >= 98302) then the new values of q[] are in the -2N..2N range.
99
+ *
100
+ * Since alpha_tab[v] <= 256, maximum allowed range is for N = 8388608.
101
+ */
102
+ #define FFT_LOOP(rb, hk, as, id) do { \
103
+ size_t u, v; \
104
+ s32 m = q[(rb)]; \
105
+ s32 n = q[(rb) + (hk)]; \
106
+ q[(rb)] = m + n; \
107
+ q[(rb) + (hk)] = m - n; \
108
+ u = v = 0; \
109
+ goto id; \
110
+ for (; u < (hk); u += 4, v += 4 * (as)) { \
111
+ s32 t; \
112
+ m = q[(rb) + u + 0]; \
113
+ n = q[(rb) + u + 0 + (hk)]; \
114
+ t = REDS2(n * alpha_tab[v + 0 * (as)]); \
115
+ q[(rb) + u + 0] = m + t; \
116
+ q[(rb) + u + 0 + (hk)] = m - t; \
117
+ id: \
118
+ m = q[(rb) + u + 1]; \
119
+ n = q[(rb) + u + 1 + (hk)]; \
120
+ t = REDS2(n * alpha_tab[v + 1 * (as)]); \
121
+ q[(rb) + u + 1] = m + t; \
122
+ q[(rb) + u + 1 + (hk)] = m - t; \
123
+ m = q[(rb) + u + 2]; \
124
+ n = q[(rb) + u + 2 + (hk)]; \
125
+ t = REDS2(n * alpha_tab[v + 2 * (as)]); \
126
+ q[(rb) + u + 2] = m + t; \
127
+ q[(rb) + u + 2 + (hk)] = m - t; \
128
+ m = q[(rb) + u + 3]; \
129
+ n = q[(rb) + u + 3 + (hk)]; \
130
+ t = REDS2(n * alpha_tab[v + 3 * (as)]); \
131
+ q[(rb) + u + 3] = m + t; \
132
+ q[(rb) + u + 3 + (hk)] = m - t; \
133
+ } \
134
+ } while (0)
135
+
136
+ /*
137
+ * Output ranges:
138
+ * d0: min= 0 max= 1020
139
+ * d1: min= -67 max= 4587
140
+ * d2: min=-4335 max= 4335
141
+ * d3: min=-4147 max= 507
142
+ * d4: min= -510 max= 510
143
+ * d5: min= -252 max= 4402
144
+ * d6: min=-4335 max= 4335
145
+ * d7: min=-4332 max= 322
146
+ */
147
+ #define FFT8(xb, xs, d) do { \
148
+ s32 x0 = x[(xb)]; \
149
+ s32 x1 = x[(xb) + (xs)]; \
150
+ s32 x2 = x[(xb) + 2 * (xs)]; \
151
+ s32 x3 = x[(xb) + 3 * (xs)]; \
152
+ s32 a0 = x0 + x2; \
153
+ s32 a1 = x0 + (x2 << 4); \
154
+ s32 a2 = x0 - x2; \
155
+ s32 a3 = x0 - (x2 << 4); \
156
+ s32 b0 = x1 + x3; \
157
+ s32 b1 = REDS1((x1 << 2) + (x3 << 6)); \
158
+ s32 b2 = (x1 << 4) - (x3 << 4); \
159
+ s32 b3 = REDS1((x1 << 6) + (x3 << 2)); \
160
+ d ## 0 = a0 + b0; \
161
+ d ## 1 = a1 + b1; \
162
+ d ## 2 = a2 + b2; \
163
+ d ## 3 = a3 + b3; \
164
+ d ## 4 = a0 - b0; \
165
+ d ## 5 = a1 - b1; \
166
+ d ## 6 = a2 - b2; \
167
+ d ## 7 = a3 - b3; \
168
+ } while (0)
169
+
170
+ /*
171
+ * When k=16, we have alpha=2. Multiplication by alpha^i is then reduced
172
+ * to some shifting.
173
+ *
174
+ * Output: within -591471..591723
175
+ */
176
+ #define FFT16(xb, xs, rb) do { \
177
+ s32 d1_0, d1_1, d1_2, d1_3, d1_4, d1_5, d1_6, d1_7; \
178
+ s32 d2_0, d2_1, d2_2, d2_3, d2_4, d2_5, d2_6, d2_7; \
179
+ FFT8(xb, (xs) << 1, d1_); \
180
+ FFT8((xb) + (xs), (xs) << 1, d2_); \
181
+ q[(rb) + 0] = d1_0 + d2_0; \
182
+ q[(rb) + 1] = d1_1 + (d2_1 << 1); \
183
+ q[(rb) + 2] = d1_2 + (d2_2 << 2); \
184
+ q[(rb) + 3] = d1_3 + (d2_3 << 3); \
185
+ q[(rb) + 4] = d1_4 + (d2_4 << 4); \
186
+ q[(rb) + 5] = d1_5 + (d2_5 << 5); \
187
+ q[(rb) + 6] = d1_6 + (d2_6 << 6); \
188
+ q[(rb) + 7] = d1_7 + (d2_7 << 7); \
189
+ q[(rb) + 8] = d1_0 - d2_0; \
190
+ q[(rb) + 9] = d1_1 - (d2_1 << 1); \
191
+ q[(rb) + 10] = d1_2 - (d2_2 << 2); \
192
+ q[(rb) + 11] = d1_3 - (d2_3 << 3); \
193
+ q[(rb) + 12] = d1_4 - (d2_4 << 4); \
194
+ q[(rb) + 13] = d1_5 - (d2_5 << 5); \
195
+ q[(rb) + 14] = d1_6 - (d2_6 << 6); \
196
+ q[(rb) + 15] = d1_7 - (d2_7 << 7); \
197
+ } while (0)
198
+
199
+ /*
200
+ * Output range: |q| <= 1183446
201
+ */
202
+ #define FFT32(xb, xs, rb, id) do { \
203
+ FFT16(xb, (xs) << 1, rb); \
204
+ FFT16((xb) + (xs), (xs) << 1, (rb) + 16); \
205
+ FFT_LOOP(rb, 16, 8, id); \
206
+ } while (0)
207
+
208
+ /*
209
+ * Output range: |q| <= 2366892
210
+ */
211
+ #define FFT64(xb, xs, rb, id) do { \
212
+ FFT32(xb, (xs) << 1, rb, XCAT(id, a)); \
213
+ FFT32((xb) + (xs), (xs) << 1, (rb) + 32, XCAT(id, b)); \
214
+ FFT_LOOP(rb, 32, 4, id); \
215
+ } while (0)
216
+
217
+ #if SPH_SMALL_FOOTPRINT_SIMD
218
+
219
+ static void
220
+ fft32(unsigned char *x, size_t xs, s32 *q)
221
+ {
222
+ size_t xd;
223
+
224
+ xd = xs << 1;
225
+ FFT16(0, xd, 0);
226
+ FFT16(xs, xd, 16);
227
+ FFT_LOOP(0, 16, 8, label_);
228
+ }
229
+
230
+ #define FFT128(xb, xs, rb, id) do { \
231
+ fft32(x + (xb) + ((xs) * 0), (xs) << 2, &q[(rb) + 0]); \
232
+ fft32(x + (xb) + ((xs) * 2), (xs) << 2, &q[(rb) + 32]); \
233
+ FFT_LOOP(rb, 32, 4, XCAT(id, aa)); \
234
+ fft32(x + (xb) + ((xs) * 1), (xs) << 2, &q[(rb) + 64]); \
235
+ fft32(x + (xb) + ((xs) * 3), (xs) << 2, &q[(rb) + 96]); \
236
+ FFT_LOOP((rb) + 64, 32, 4, XCAT(id, ab)); \
237
+ FFT_LOOP(rb, 64, 2, XCAT(id, a)); \
238
+ } while (0)
239
+
240
+ #else
241
+
242
+ /*
243
+ * Output range: |q| <= 4733784
244
+ */
245
+ #define FFT128(xb, xs, rb, id) do { \
246
+ FFT64(xb, (xs) << 1, rb, XCAT(id, a)); \
247
+ FFT64((xb) + (xs), (xs) << 1, (rb) + 64, XCAT(id, b)); \
248
+ FFT_LOOP(rb, 64, 2, id); \
249
+ } while (0)
250
+
251
+ #endif
252
+
253
+ /*
254
+ * For SIMD-384 / SIMD-512, the fully unrolled FFT yields a compression
255
+ * function which does not fit in the 32 kB L1 cache of a typical x86
256
+ * Intel. We therefore add a function call layer at the FFT64 level.
257
+ */
258
+
259
+ static void
260
+ fft64(unsigned char *x, size_t xs, s32 *q)
261
+ {
262
+ size_t xd;
263
+
264
+ xd = xs << 1;
265
+ FFT32(0, xd, 0, label_a);
266
+ FFT32(xs, xd, 32, label_b);
267
+ FFT_LOOP(0, 32, 4, label_);
268
+ }
269
+
270
+ /*
271
+ * Output range: |q| <= 9467568
272
+ */
273
+ #define FFT256(xb, xs, rb, id) do { \
274
+ fft64(x + (xb) + ((xs) * 0), (xs) << 2, &q[(rb) + 0]); \
275
+ fft64(x + (xb) + ((xs) * 2), (xs) << 2, &q[(rb) + 64]); \
276
+ FFT_LOOP(rb, 64, 2, XCAT(id, aa)); \
277
+ fft64(x + (xb) + ((xs) * 1), (xs) << 2, &q[(rb) + 128]); \
278
+ fft64(x + (xb) + ((xs) * 3), (xs) << 2, &q[(rb) + 192]); \
279
+ FFT_LOOP((rb) + 128, 64, 2, XCAT(id, ab)); \
280
+ FFT_LOOP(rb, 128, 1, XCAT(id, a)); \
281
+ } while (0)
282
+
283
+ /*
284
+ * alpha^(127*i) mod 257
285
+ */
286
+ static const unsigned short yoff_s_n[] = {
287
+ 1, 98, 95, 58, 30, 113, 23, 198, 129, 49, 176, 29,
288
+ 15, 185, 140, 99, 193, 153, 88, 143, 136, 221, 70, 178,
289
+ 225, 205, 44, 200, 68, 239, 35, 89, 241, 231, 22, 100,
290
+ 34, 248, 146, 173, 249, 244, 11, 50, 17, 124, 73, 215,
291
+ 253, 122, 134, 25, 137, 62, 165, 236, 255, 61, 67, 141,
292
+ 197, 31, 211, 118, 256, 159, 162, 199, 227, 144, 234, 59,
293
+ 128, 208, 81, 228, 242, 72, 117, 158, 64, 104, 169, 114,
294
+ 121, 36, 187, 79, 32, 52, 213, 57, 189, 18, 222, 168,
295
+ 16, 26, 235, 157, 223, 9, 111, 84, 8, 13, 246, 207,
296
+ 240, 133, 184, 42, 4, 135, 123, 232, 120, 195, 92, 21,
297
+ 2, 196, 190, 116, 60, 226, 46, 139
298
+ };
299
+
300
+ /*
301
+ * alpha^(127*i) + alpha^(125*i) mod 257
302
+ */
303
+ static const unsigned short yoff_s_f[] = {
304
+ 2, 156, 118, 107, 45, 212, 111, 162, 97, 249, 211, 3,
305
+ 49, 101, 151, 223, 189, 178, 253, 204, 76, 82, 232, 65,
306
+ 96, 176, 161, 47, 189, 61, 248, 107, 0, 131, 133, 113,
307
+ 17, 33, 12, 111, 251, 103, 57, 148, 47, 65, 249, 143,
308
+ 189, 8, 204, 230, 205, 151, 187, 227, 247, 111, 140, 6,
309
+ 77, 10, 21, 149, 255, 101, 139, 150, 212, 45, 146, 95,
310
+ 160, 8, 46, 254, 208, 156, 106, 34, 68, 79, 4, 53,
311
+ 181, 175, 25, 192, 161, 81, 96, 210, 68, 196, 9, 150,
312
+ 0, 126, 124, 144, 240, 224, 245, 146, 6, 154, 200, 109,
313
+ 210, 192, 8, 114, 68, 249, 53, 27, 52, 106, 70, 30,
314
+ 10, 146, 117, 251, 180, 247, 236, 108
315
+ };
316
+
317
+ /*
318
+ * beta^(255*i) mod 257
319
+ */
320
+ static const unsigned short yoff_b_n[] = {
321
+ 1, 163, 98, 40, 95, 65, 58, 202, 30, 7, 113, 172,
322
+ 23, 151, 198, 149, 129, 210, 49, 20, 176, 161, 29, 101,
323
+ 15, 132, 185, 86, 140, 204, 99, 203, 193, 105, 153, 10,
324
+ 88, 209, 143, 179, 136, 66, 221, 43, 70, 102, 178, 230,
325
+ 225, 181, 205, 5, 44, 233, 200, 218, 68, 33, 239, 150,
326
+ 35, 51, 89, 115, 241, 219, 231, 131, 22, 245, 100, 109,
327
+ 34, 145, 248, 75, 146, 154, 173, 186, 249, 238, 244, 194,
328
+ 11, 251, 50, 183, 17, 201, 124, 166, 73, 77, 215, 93,
329
+ 253, 119, 122, 97, 134, 254, 25, 220, 137, 229, 62, 83,
330
+ 165, 167, 236, 175, 255, 188, 61, 177, 67, 127, 141, 110,
331
+ 197, 243, 31, 170, 211, 212, 118, 216, 256, 94, 159, 217,
332
+ 162, 192, 199, 55, 227, 250, 144, 85, 234, 106, 59, 108,
333
+ 128, 47, 208, 237, 81, 96, 228, 156, 242, 125, 72, 171,
334
+ 117, 53, 158, 54, 64, 152, 104, 247, 169, 48, 114, 78,
335
+ 121, 191, 36, 214, 187, 155, 79, 27, 32, 76, 52, 252,
336
+ 213, 24, 57, 39, 189, 224, 18, 107, 222, 206, 168, 142,
337
+ 16, 38, 26, 126, 235, 12, 157, 148, 223, 112, 9, 182,
338
+ 111, 103, 84, 71, 8, 19, 13, 63, 246, 6, 207, 74,
339
+ 240, 56, 133, 91, 184, 180, 42, 164, 4, 138, 135, 160,
340
+ 123, 3, 232, 37, 120, 28, 195, 174, 92, 90, 21, 82,
341
+ 2, 69, 196, 80, 190, 130, 116, 147, 60, 14, 226, 87,
342
+ 46, 45, 139, 41
343
+ };
344
+
345
+ /*
346
+ * beta^(255*i) + beta^(253*i) mod 257
347
+ */
348
+ static const unsigned short yoff_b_f[] = {
349
+ 2, 203, 156, 47, 118, 214, 107, 106, 45, 93, 212, 20,
350
+ 111, 73, 162, 251, 97, 215, 249, 53, 211, 19, 3, 89,
351
+ 49, 207, 101, 67, 151, 130, 223, 23, 189, 202, 178, 239,
352
+ 253, 127, 204, 49, 76, 236, 82, 137, 232, 157, 65, 79,
353
+ 96, 161, 176, 130, 161, 30, 47, 9, 189, 247, 61, 226,
354
+ 248, 90, 107, 64, 0, 88, 131, 243, 133, 59, 113, 115,
355
+ 17, 236, 33, 213, 12, 191, 111, 19, 251, 61, 103, 208,
356
+ 57, 35, 148, 248, 47, 116, 65, 119, 249, 178, 143, 40,
357
+ 189, 129, 8, 163, 204, 227, 230, 196, 205, 122, 151, 45,
358
+ 187, 19, 227, 72, 247, 125, 111, 121, 140, 220, 6, 107,
359
+ 77, 69, 10, 101, 21, 65, 149, 171, 255, 54, 101, 210,
360
+ 139, 43, 150, 151, 212, 164, 45, 237, 146, 184, 95, 6,
361
+ 160, 42, 8, 204, 46, 238, 254, 168, 208, 50, 156, 190,
362
+ 106, 127, 34, 234, 68, 55, 79, 18, 4, 130, 53, 208,
363
+ 181, 21, 175, 120, 25, 100, 192, 178, 161, 96, 81, 127,
364
+ 96, 227, 210, 248, 68, 10, 196, 31, 9, 167, 150, 193,
365
+ 0, 169, 126, 14, 124, 198, 144, 142, 240, 21, 224, 44,
366
+ 245, 66, 146, 238, 6, 196, 154, 49, 200, 222, 109, 9,
367
+ 210, 141, 192, 138, 8, 79, 114, 217, 68, 128, 249, 94,
368
+ 53, 30, 27, 61, 52, 135, 106, 212, 70, 238, 30, 185,
369
+ 10, 132, 146, 136, 117, 37, 251, 150, 180, 188, 247, 156,
370
+ 236, 192, 108, 86
371
+ };
372
+
373
+ #define INNER(l, h, mm) (((u32)((l) * (mm)) & 0xFFFFU) \
374
+ + ((u32)((h) * (mm)) << 16))
375
+
376
+ #define W_SMALL(sb, o1, o2, mm) \
377
+ (INNER(q[8 * (sb) + 2 * 0 + o1], q[8 * (sb) + 2 * 0 + o2], mm), \
378
+ INNER(q[8 * (sb) + 2 * 1 + o1], q[8 * (sb) + 2 * 1 + o2], mm), \
379
+ INNER(q[8 * (sb) + 2 * 2 + o1], q[8 * (sb) + 2 * 2 + o2], mm), \
380
+ INNER(q[8 * (sb) + 2 * 3 + o1], q[8 * (sb) + 2 * 3 + o2], mm)
381
+
382
+ #define WS_0_0 W_SMALL( 4, 0, 1, 185)
383
+ #define WS_0_1 W_SMALL( 6, 0, 1, 185)
384
+ #define WS_0_2 W_SMALL( 0, 0, 1, 185)
385
+ #define WS_0_3 W_SMALL( 2, 0, 1, 185)
386
+ #define WS_0_4 W_SMALL( 7, 0, 1, 185)
387
+ #define WS_0_5 W_SMALL( 5, 0, 1, 185)
388
+ #define WS_0_6 W_SMALL( 3, 0, 1, 185)
389
+ #define WS_0_7 W_SMALL( 1, 0, 1, 185)
390
+ #define WS_1_0 W_SMALL(15, 0, 1, 185)
391
+ #define WS_1_1 W_SMALL(11, 0, 1, 185)
392
+ #define WS_1_2 W_SMALL(12, 0, 1, 185)
393
+ #define WS_1_3 W_SMALL( 8, 0, 1, 185)
394
+ #define WS_1_4 W_SMALL( 9, 0, 1, 185)
395
+ #define WS_1_5 W_SMALL(13, 0, 1, 185)
396
+ #define WS_1_6 W_SMALL(10, 0, 1, 185)
397
+ #define WS_1_7 W_SMALL(14, 0, 1, 185)
398
+ #define WS_2_0 W_SMALL(17, -128, -64, 233)
399
+ #define WS_2_1 W_SMALL(18, -128, -64, 233)
400
+ #define WS_2_2 W_SMALL(23, -128, -64, 233)
401
+ #define WS_2_3 W_SMALL(20, -128, -64, 233)
402
+ #define WS_2_4 W_SMALL(22, -128, -64, 233)
403
+ #define WS_2_5 W_SMALL(21, -128, -64, 233)
404
+ #define WS_2_6 W_SMALL(16, -128, -64, 233)
405
+ #define WS_2_7 W_SMALL(19, -128, -64, 233)
406
+ #define WS_3_0 W_SMALL(30, -191, -127, 233)
407
+ #define WS_3_1 W_SMALL(24, -191, -127, 233)
408
+ #define WS_3_2 W_SMALL(25, -191, -127, 233)
409
+ #define WS_3_3 W_SMALL(31, -191, -127, 233)
410
+ #define WS_3_4 W_SMALL(27, -191, -127, 233)
411
+ #define WS_3_5 W_SMALL(29, -191, -127, 233)
412
+ #define WS_3_6 W_SMALL(28, -191, -127, 233)
413
+ #define WS_3_7 W_SMALL(26, -191, -127, 233)
414
+
415
+ #define W_BIG(sb, o1, o2, mm) \
416
+ (INNER(q[16 * (sb) + 2 * 0 + o1], q[16 * (sb) + 2 * 0 + o2], mm), \
417
+ INNER(q[16 * (sb) + 2 * 1 + o1], q[16 * (sb) + 2 * 1 + o2], mm), \
418
+ INNER(q[16 * (sb) + 2 * 2 + o1], q[16 * (sb) + 2 * 2 + o2], mm), \
419
+ INNER(q[16 * (sb) + 2 * 3 + o1], q[16 * (sb) + 2 * 3 + o2], mm), \
420
+ INNER(q[16 * (sb) + 2 * 4 + o1], q[16 * (sb) + 2 * 4 + o2], mm), \
421
+ INNER(q[16 * (sb) + 2 * 5 + o1], q[16 * (sb) + 2 * 5 + o2], mm), \
422
+ INNER(q[16 * (sb) + 2 * 6 + o1], q[16 * (sb) + 2 * 6 + o2], mm), \
423
+ INNER(q[16 * (sb) + 2 * 7 + o1], q[16 * (sb) + 2 * 7 + o2], mm)
424
+
425
+ #define WB_0_0 W_BIG( 4, 0, 1, 185)
426
+ #define WB_0_1 W_BIG( 6, 0, 1, 185)
427
+ #define WB_0_2 W_BIG( 0, 0, 1, 185)
428
+ #define WB_0_3 W_BIG( 2, 0, 1, 185)
429
+ #define WB_0_4 W_BIG( 7, 0, 1, 185)
430
+ #define WB_0_5 W_BIG( 5, 0, 1, 185)
431
+ #define WB_0_6 W_BIG( 3, 0, 1, 185)
432
+ #define WB_0_7 W_BIG( 1, 0, 1, 185)
433
+ #define WB_1_0 W_BIG(15, 0, 1, 185)
434
+ #define WB_1_1 W_BIG(11, 0, 1, 185)
435
+ #define WB_1_2 W_BIG(12, 0, 1, 185)
436
+ #define WB_1_3 W_BIG( 8, 0, 1, 185)
437
+ #define WB_1_4 W_BIG( 9, 0, 1, 185)
438
+ #define WB_1_5 W_BIG(13, 0, 1, 185)
439
+ #define WB_1_6 W_BIG(10, 0, 1, 185)
440
+ #define WB_1_7 W_BIG(14, 0, 1, 185)
441
+ #define WB_2_0 W_BIG(17, -256, -128, 233)
442
+ #define WB_2_1 W_BIG(18, -256, -128, 233)
443
+ #define WB_2_2 W_BIG(23, -256, -128, 233)
444
+ #define WB_2_3 W_BIG(20, -256, -128, 233)
445
+ #define WB_2_4 W_BIG(22, -256, -128, 233)
446
+ #define WB_2_5 W_BIG(21, -256, -128, 233)
447
+ #define WB_2_6 W_BIG(16, -256, -128, 233)
448
+ #define WB_2_7 W_BIG(19, -256, -128, 233)
449
+ #define WB_3_0 W_BIG(30, -383, -255, 233)
450
+ #define WB_3_1 W_BIG(24, -383, -255, 233)
451
+ #define WB_3_2 W_BIG(25, -383, -255, 233)
452
+ #define WB_3_3 W_BIG(31, -383, -255, 233)
453
+ #define WB_3_4 W_BIG(27, -383, -255, 233)
454
+ #define WB_3_5 W_BIG(29, -383, -255, 233)
455
+ #define WB_3_6 W_BIG(28, -383, -255, 233)
456
+ #define WB_3_7 W_BIG(26, -383, -255, 233)
457
+
458
+ #define IF(x, y, z) ((((y) ^ (z)) & (x)) ^ (z))
459
+ #define MAJ(x, y, z) (((x) & (y)) | (((x) | (y)) & (z)))
460
+
461
+ #define PP4_0_0 1
462
+ #define PP4_0_1 0
463
+ #define PP4_0_2 3
464
+ #define PP4_0_3 2
465
+ #define PP4_1_0 2
466
+ #define PP4_1_1 3
467
+ #define PP4_1_2 0
468
+ #define PP4_1_3 1
469
+ #define PP4_2_0 3
470
+ #define PP4_2_1 2
471
+ #define PP4_2_2 1
472
+ #define PP4_2_3 0
473
+
474
+ #define PP8_0_0 1
475
+ #define PP8_0_1 0
476
+ #define PP8_0_2 3
477
+ #define PP8_0_3 2
478
+ #define PP8_0_4 5
479
+ #define PP8_0_5 4
480
+ #define PP8_0_6 7
481
+ #define PP8_0_7 6
482
+
483
+ #define PP8_1_0 6
484
+ #define PP8_1_1 7
485
+ #define PP8_1_2 4
486
+ #define PP8_1_3 5
487
+ #define PP8_1_4 2
488
+ #define PP8_1_5 3
489
+ #define PP8_1_6 0
490
+ #define PP8_1_7 1
491
+
492
+ #define PP8_2_0 2
493
+ #define PP8_2_1 3
494
+ #define PP8_2_2 0
495
+ #define PP8_2_3 1
496
+ #define PP8_2_4 6
497
+ #define PP8_2_5 7
498
+ #define PP8_2_6 4
499
+ #define PP8_2_7 5
500
+
501
+ #define PP8_3_0 3
502
+ #define PP8_3_1 2
503
+ #define PP8_3_2 1
504
+ #define PP8_3_3 0
505
+ #define PP8_3_4 7
506
+ #define PP8_3_5 6
507
+ #define PP8_3_6 5
508
+ #define PP8_3_7 4
509
+
510
+ #define PP8_4_0 5
511
+ #define PP8_4_1 4
512
+ #define PP8_4_2 7
513
+ #define PP8_4_3 6
514
+ #define PP8_4_4 1
515
+ #define PP8_4_5 0
516
+ #define PP8_4_6 3
517
+ #define PP8_4_7 2
518
+
519
+ #define PP8_5_0 7
520
+ #define PP8_5_1 6
521
+ #define PP8_5_2 5
522
+ #define PP8_5_3 4
523
+ #define PP8_5_4 3
524
+ #define PP8_5_5 2
525
+ #define PP8_5_6 1
526
+ #define PP8_5_7 0
527
+
528
+ #define PP8_6_0 4
529
+ #define PP8_6_1 5
530
+ #define PP8_6_2 6
531
+ #define PP8_6_3 7
532
+ #define PP8_6_4 0
533
+ #define PP8_6_5 1
534
+ #define PP8_6_6 2
535
+ #define PP8_6_7 3
536
+
537
+ #if SPH_SIMD_NOCOPY
538
+
539
+ #define DECL_STATE_SMALL
540
+ #define READ_STATE_SMALL(sc)
541
+ #define WRITE_STATE_SMALL(sc)
542
+ #define DECL_STATE_BIG
543
+ #define READ_STATE_BIG(sc)
544
+ #define WRITE_STATE_BIG(sc)
545
+
546
+ #else
547
+
548
+ #define DECL_STATE_SMALL \
549
+ u32 A0, A1, A2, A3, B0, B1, B2, B3, C0, C1, C2, C3, D0, D1, D2, D3;
550
+
551
+ #define READ_STATE_SMALL(sc) do { \
552
+ A0 = (sc)->state[ 0]; \
553
+ A1 = (sc)->state[ 1]; \
554
+ A2 = (sc)->state[ 2]; \
555
+ A3 = (sc)->state[ 3]; \
556
+ B0 = (sc)->state[ 4]; \
557
+ B1 = (sc)->state[ 5]; \
558
+ B2 = (sc)->state[ 6]; \
559
+ B3 = (sc)->state[ 7]; \
560
+ C0 = (sc)->state[ 8]; \
561
+ C1 = (sc)->state[ 9]; \
562
+ C2 = (sc)->state[10]; \
563
+ C3 = (sc)->state[11]; \
564
+ D0 = (sc)->state[12]; \
565
+ D1 = (sc)->state[13]; \
566
+ D2 = (sc)->state[14]; \
567
+ D3 = (sc)->state[15]; \
568
+ } while (0)
569
+
570
+ #define WRITE_STATE_SMALL(sc) do { \
571
+ (sc)->state[ 0] = A0; \
572
+ (sc)->state[ 1] = A1; \
573
+ (sc)->state[ 2] = A2; \
574
+ (sc)->state[ 3] = A3; \
575
+ (sc)->state[ 4] = B0; \
576
+ (sc)->state[ 5] = B1; \
577
+ (sc)->state[ 6] = B2; \
578
+ (sc)->state[ 7] = B3; \
579
+ (sc)->state[ 8] = C0; \
580
+ (sc)->state[ 9] = C1; \
581
+ (sc)->state[10] = C2; \
582
+ (sc)->state[11] = C3; \
583
+ (sc)->state[12] = D0; \
584
+ (sc)->state[13] = D1; \
585
+ (sc)->state[14] = D2; \
586
+ (sc)->state[15] = D3; \
587
+ } while (0)
588
+
589
+ #define DECL_STATE_BIG \
590
+ u32 A0, A1, A2, A3, A4, A5, A6, A7; \
591
+ u32 B0, B1, B2, B3, B4, B5, B6, B7; \
592
+ u32 C0, C1, C2, C3, C4, C5, C6, C7; \
593
+ u32 D0, D1, D2, D3, D4, D5, D6, D7;
594
+
595
+ #define READ_STATE_BIG(sc) do { \
596
+ A0 = (sc)->state[ 0]; \
597
+ A1 = (sc)->state[ 1]; \
598
+ A2 = (sc)->state[ 2]; \
599
+ A3 = (sc)->state[ 3]; \
600
+ A4 = (sc)->state[ 4]; \
601
+ A5 = (sc)->state[ 5]; \
602
+ A6 = (sc)->state[ 6]; \
603
+ A7 = (sc)->state[ 7]; \
604
+ B0 = (sc)->state[ 8]; \
605
+ B1 = (sc)->state[ 9]; \
606
+ B2 = (sc)->state[10]; \
607
+ B3 = (sc)->state[11]; \
608
+ B4 = (sc)->state[12]; \
609
+ B5 = (sc)->state[13]; \
610
+ B6 = (sc)->state[14]; \
611
+ B7 = (sc)->state[15]; \
612
+ C0 = (sc)->state[16]; \
613
+ C1 = (sc)->state[17]; \
614
+ C2 = (sc)->state[18]; \
615
+ C3 = (sc)->state[19]; \
616
+ C4 = (sc)->state[20]; \
617
+ C5 = (sc)->state[21]; \
618
+ C6 = (sc)->state[22]; \
619
+ C7 = (sc)->state[23]; \
620
+ D0 = (sc)->state[24]; \
621
+ D1 = (sc)->state[25]; \
622
+ D2 = (sc)->state[26]; \
623
+ D3 = (sc)->state[27]; \
624
+ D4 = (sc)->state[28]; \
625
+ D5 = (sc)->state[29]; \
626
+ D6 = (sc)->state[30]; \
627
+ D7 = (sc)->state[31]; \
628
+ } while (0)
629
+
630
+ #define WRITE_STATE_BIG(sc) do { \
631
+ (sc)->state[ 0] = A0; \
632
+ (sc)->state[ 1] = A1; \
633
+ (sc)->state[ 2] = A2; \
634
+ (sc)->state[ 3] = A3; \
635
+ (sc)->state[ 4] = A4; \
636
+ (sc)->state[ 5] = A5; \
637
+ (sc)->state[ 6] = A6; \
638
+ (sc)->state[ 7] = A7; \
639
+ (sc)->state[ 8] = B0; \
640
+ (sc)->state[ 9] = B1; \
641
+ (sc)->state[10] = B2; \
642
+ (sc)->state[11] = B3; \
643
+ (sc)->state[12] = B4; \
644
+ (sc)->state[13] = B5; \
645
+ (sc)->state[14] = B6; \
646
+ (sc)->state[15] = B7; \
647
+ (sc)->state[16] = C0; \
648
+ (sc)->state[17] = C1; \
649
+ (sc)->state[18] = C2; \
650
+ (sc)->state[19] = C3; \
651
+ (sc)->state[20] = C4; \
652
+ (sc)->state[21] = C5; \
653
+ (sc)->state[22] = C6; \
654
+ (sc)->state[23] = C7; \
655
+ (sc)->state[24] = D0; \
656
+ (sc)->state[25] = D1; \
657
+ (sc)->state[26] = D2; \
658
+ (sc)->state[27] = D3; \
659
+ (sc)->state[28] = D4; \
660
+ (sc)->state[29] = D5; \
661
+ (sc)->state[30] = D6; \
662
+ (sc)->state[31] = D7; \
663
+ } while (0)
664
+
665
+ #endif
666
+
667
+ #define STEP_ELT(n, w, fun, s, ppb) do { \
668
+ u32 tt = T32(D ## n + (w) + fun(A ## n, B ## n, C ## n)); \
669
+ A ## n = T32(ROL32(tt, s) + XCAT(tA, XCAT(ppb, n))); \
670
+ D ## n = C ## n; \
671
+ C ## n = B ## n; \
672
+ B ## n = tA ## n; \
673
+ } while (0)
674
+
675
+ #define STEP_SMALL(w0, w1, w2, w3, fun, r, s, pp4b) do { \
676
+ u32 tA0 = ROL32(A0, r); \
677
+ u32 tA1 = ROL32(A1, r); \
678
+ u32 tA2 = ROL32(A2, r); \
679
+ u32 tA3 = ROL32(A3, r); \
680
+ STEP_ELT(0, w0, fun, s, pp4b); \
681
+ STEP_ELT(1, w1, fun, s, pp4b); \
682
+ STEP_ELT(2, w2, fun, s, pp4b); \
683
+ STEP_ELT(3, w3, fun, s, pp4b); \
684
+ } while (0)
685
+
686
+ #define STEP_BIG(w0, w1, w2, w3, w4, w5, w6, w7, fun, r, s, pp8b) do { \
687
+ u32 tA0 = ROL32(A0, r); \
688
+ u32 tA1 = ROL32(A1, r); \
689
+ u32 tA2 = ROL32(A2, r); \
690
+ u32 tA3 = ROL32(A3, r); \
691
+ u32 tA4 = ROL32(A4, r); \
692
+ u32 tA5 = ROL32(A5, r); \
693
+ u32 tA6 = ROL32(A6, r); \
694
+ u32 tA7 = ROL32(A7, r); \
695
+ STEP_ELT(0, w0, fun, s, pp8b); \
696
+ STEP_ELT(1, w1, fun, s, pp8b); \
697
+ STEP_ELT(2, w2, fun, s, pp8b); \
698
+ STEP_ELT(3, w3, fun, s, pp8b); \
699
+ STEP_ELT(4, w4, fun, s, pp8b); \
700
+ STEP_ELT(5, w5, fun, s, pp8b); \
701
+ STEP_ELT(6, w6, fun, s, pp8b); \
702
+ STEP_ELT(7, w7, fun, s, pp8b); \
703
+ } while (0)
704
+
705
+ #define M3_0_0 0_
706
+ #define M3_1_0 1_
707
+ #define M3_2_0 2_
708
+ #define M3_3_0 0_
709
+ #define M3_4_0 1_
710
+ #define M3_5_0 2_
711
+ #define M3_6_0 0_
712
+ #define M3_7_0 1_
713
+
714
+ #define M3_0_1 1_
715
+ #define M3_1_1 2_
716
+ #define M3_2_1 0_
717
+ #define M3_3_1 1_
718
+ #define M3_4_1 2_
719
+ #define M3_5_1 0_
720
+ #define M3_6_1 1_
721
+ #define M3_7_1 2_
722
+
723
+ #define M3_0_2 2_
724
+ #define M3_1_2 0_
725
+ #define M3_2_2 1_
726
+ #define M3_3_2 2_
727
+ #define M3_4_2 0_
728
+ #define M3_5_2 1_
729
+ #define M3_6_2 2_
730
+ #define M3_7_2 0_
731
+
732
+ #define STEP_SMALL_(w, fun, r, s, pp4b) STEP_SMALL w, fun, r, s, pp4b)
733
+
734
+ #define ONE_ROUND_SMALL(ri, isp, p0, p1, p2, p3) do { \
735
+ STEP_SMALL_(WS_ ## ri ## 0, \
736
+ IF, p0, p1, XCAT(PP4_, M3_0_ ## isp)); \
737
+ STEP_SMALL_(WS_ ## ri ## 1, \
738
+ IF, p1, p2, XCAT(PP4_, M3_1_ ## isp)); \
739
+ STEP_SMALL_(WS_ ## ri ## 2, \
740
+ IF, p2, p3, XCAT(PP4_, M3_2_ ## isp)); \
741
+ STEP_SMALL_(WS_ ## ri ## 3, \
742
+ IF, p3, p0, XCAT(PP4_, M3_3_ ## isp)); \
743
+ STEP_SMALL_(WS_ ## ri ## 4, \
744
+ MAJ, p0, p1, XCAT(PP4_, M3_4_ ## isp)); \
745
+ STEP_SMALL_(WS_ ## ri ## 5, \
746
+ MAJ, p1, p2, XCAT(PP4_, M3_5_ ## isp)); \
747
+ STEP_SMALL_(WS_ ## ri ## 6, \
748
+ MAJ, p2, p3, XCAT(PP4_, M3_6_ ## isp)); \
749
+ STEP_SMALL_(WS_ ## ri ## 7, \
750
+ MAJ, p3, p0, XCAT(PP4_, M3_7_ ## isp)); \
751
+ } while (0)
752
+
753
+ #define M7_0_0 0_
754
+ #define M7_1_0 1_
755
+ #define M7_2_0 2_
756
+ #define M7_3_0 3_
757
+ #define M7_4_0 4_
758
+ #define M7_5_0 5_
759
+ #define M7_6_0 6_
760
+ #define M7_7_0 0_
761
+
762
+ #define M7_0_1 1_
763
+ #define M7_1_1 2_
764
+ #define M7_2_1 3_
765
+ #define M7_3_1 4_
766
+ #define M7_4_1 5_
767
+ #define M7_5_1 6_
768
+ #define M7_6_1 0_
769
+ #define M7_7_1 1_
770
+
771
+ #define M7_0_2 2_
772
+ #define M7_1_2 3_
773
+ #define M7_2_2 4_
774
+ #define M7_3_2 5_
775
+ #define M7_4_2 6_
776
+ #define M7_5_2 0_
777
+ #define M7_6_2 1_
778
+ #define M7_7_2 2_
779
+
780
+ #define M7_0_3 3_
781
+ #define M7_1_3 4_
782
+ #define M7_2_3 5_
783
+ #define M7_3_3 6_
784
+ #define M7_4_3 0_
785
+ #define M7_5_3 1_
786
+ #define M7_6_3 2_
787
+ #define M7_7_3 3_
788
+
789
+ #define STEP_BIG_(w, fun, r, s, pp8b) STEP_BIG w, fun, r, s, pp8b)
790
+
791
+ #define ONE_ROUND_BIG(ri, isp, p0, p1, p2, p3) do { \
792
+ STEP_BIG_(WB_ ## ri ## 0, \
793
+ IF, p0, p1, XCAT(PP8_, M7_0_ ## isp)); \
794
+ STEP_BIG_(WB_ ## ri ## 1, \
795
+ IF, p1, p2, XCAT(PP8_, M7_1_ ## isp)); \
796
+ STEP_BIG_(WB_ ## ri ## 2, \
797
+ IF, p2, p3, XCAT(PP8_, M7_2_ ## isp)); \
798
+ STEP_BIG_(WB_ ## ri ## 3, \
799
+ IF, p3, p0, XCAT(PP8_, M7_3_ ## isp)); \
800
+ STEP_BIG_(WB_ ## ri ## 4, \
801
+ MAJ, p0, p1, XCAT(PP8_, M7_4_ ## isp)); \
802
+ STEP_BIG_(WB_ ## ri ## 5, \
803
+ MAJ, p1, p2, XCAT(PP8_, M7_5_ ## isp)); \
804
+ STEP_BIG_(WB_ ## ri ## 6, \
805
+ MAJ, p2, p3, XCAT(PP8_, M7_6_ ## isp)); \
806
+ STEP_BIG_(WB_ ## ri ## 7, \
807
+ MAJ, p3, p0, XCAT(PP8_, M7_7_ ## isp)); \
808
+ } while (0)
809
+
810
+ #if SPH_SMALL_FOOTPRINT_SIMD
811
+
812
+ #define A0 state[ 0]
813
+ #define A1 state[ 1]
814
+ #define A2 state[ 2]
815
+ #define A3 state[ 3]
816
+ #define B0 state[ 4]
817
+ #define B1 state[ 5]
818
+ #define B2 state[ 6]
819
+ #define B3 state[ 7]
820
+ #define C0 state[ 8]
821
+ #define C1 state[ 9]
822
+ #define C2 state[10]
823
+ #define C3 state[11]
824
+ #define D0 state[12]
825
+ #define D1 state[13]
826
+ #define D2 state[14]
827
+ #define D3 state[15]
828
+
829
+ #define STEP2_ELT(n, w, fun, s, ppb) do { \
830
+ u32 tt = T32(D ## n + (w) + fun(A ## n, B ## n, C ## n)); \
831
+ A ## n = T32(ROL32(tt, s) + tA[(ppb) ^ n]); \
832
+ D ## n = C ## n; \
833
+ C ## n = B ## n; \
834
+ B ## n = tA[n]; \
835
+ } while (0)
836
+
837
+ #define STEP2_SMALL(w0, w1, w2, w3, fun, r, s, pp4b) do { \
838
+ u32 tA[4]; \
839
+ tA[0] = ROL32(A0, r); \
840
+ tA[1] = ROL32(A1, r); \
841
+ tA[2] = ROL32(A2, r); \
842
+ tA[3] = ROL32(A3, r); \
843
+ STEP2_ELT(0, w0, fun, s, pp4b); \
844
+ STEP2_ELT(1, w1, fun, s, pp4b); \
845
+ STEP2_ELT(2, w2, fun, s, pp4b); \
846
+ STEP2_ELT(3, w3, fun, s, pp4b); \
847
+ } while (0)
848
+
849
+ static void
850
+ one_round_small(u32 *state, u32 *w, int isp, int p0, int p1, int p2, int p3)
851
+ {
852
+ static const int pp4k[] = { 1, 2, 3, 1, 2, 3, 1, 2, 3, 1, 2 };
853
+
854
+ STEP2_SMALL(w[ 0], w[ 1], w[ 2], w[ 3], IF, p0, p1, pp4k[isp + 0]);
855
+ STEP2_SMALL(w[ 4], w[ 5], w[ 6], w[ 7], IF, p1, p2, pp4k[isp + 1]);
856
+ STEP2_SMALL(w[ 8], w[ 9], w[10], w[11], IF, p2, p3, pp4k[isp + 2]);
857
+ STEP2_SMALL(w[12], w[13], w[14], w[15], IF, p3, p0, pp4k[isp + 3]);
858
+ STEP2_SMALL(w[16], w[17], w[18], w[19], MAJ, p0, p1, pp4k[isp + 4]);
859
+ STEP2_SMALL(w[20], w[21], w[22], w[23], MAJ, p1, p2, pp4k[isp + 5]);
860
+ STEP2_SMALL(w[24], w[25], w[26], w[27], MAJ, p2, p3, pp4k[isp + 6]);
861
+ STEP2_SMALL(w[28], w[29], w[30], w[31], MAJ, p3, p0, pp4k[isp + 7]);
862
+ }
863
+
864
+ static void
865
+ compress_small(sph_simd_small_context *sc, int last)
866
+ {
867
+ unsigned char *x;
868
+ s32 q[128];
869
+ int i;
870
+ u32 w[32];
871
+ u32 state[16];
872
+ size_t u;
873
+
874
+ static const size_t wsp[32] = {
875
+ 4 << 3, 6 << 3, 0 << 3, 2 << 3,
876
+ 7 << 3, 5 << 3, 3 << 3, 1 << 3,
877
+ 15 << 3, 11 << 3, 12 << 3, 8 << 3,
878
+ 9 << 3, 13 << 3, 10 << 3, 14 << 3,
879
+ 17 << 3, 18 << 3, 23 << 3, 20 << 3,
880
+ 22 << 3, 21 << 3, 16 << 3, 19 << 3,
881
+ 30 << 3, 24 << 3, 25 << 3, 31 << 3,
882
+ 27 << 3, 29 << 3, 28 << 3, 26 << 3
883
+ };
884
+
885
+ x = sc->buf;
886
+ FFT128(0, 1, 0, ll);
887
+ if (last) {
888
+ for (i = 0; i < 128; i ++) {
889
+ s32 tq;
890
+
891
+ tq = q[i] + yoff_s_f[i];
892
+ tq = REDS2(tq);
893
+ tq = REDS1(tq);
894
+ tq = REDS1(tq);
895
+ q[i] = (tq <= 128 ? tq : tq - 257);
896
+ }
897
+ } else {
898
+ for (i = 0; i < 128; i ++) {
899
+ s32 tq;
900
+
901
+ tq = q[i] + yoff_s_n[i];
902
+ tq = REDS2(tq);
903
+ tq = REDS1(tq);
904
+ tq = REDS1(tq);
905
+ q[i] = (tq <= 128 ? tq : tq - 257);
906
+ }
907
+ }
908
+
909
+ for (i = 0; i < 16; i += 4) {
910
+ state[i + 0] = sc->state[i + 0]
911
+ ^ sph_dec32le_aligned(x + 4 * (i + 0));
912
+ state[i + 1] = sc->state[i + 1]
913
+ ^ sph_dec32le_aligned(x + 4 * (i + 1));
914
+ state[i + 2] = sc->state[i + 2]
915
+ ^ sph_dec32le_aligned(x + 4 * (i + 2));
916
+ state[i + 3] = sc->state[i + 3]
917
+ ^ sph_dec32le_aligned(x + 4 * (i + 3));
918
+ }
919
+
920
+ #define WSREAD(sb, o1, o2, mm) do { \
921
+ for (u = 0; u < 32; u += 4) { \
922
+ size_t v = wsp[(u >> 2) + (sb)]; \
923
+ w[u + 0] = INNER(q[v + 2 * 0 + (o1)], \
924
+ q[v + 2 * 0 + (o2)], mm); \
925
+ w[u + 1] = INNER(q[v + 2 * 1 + (o1)], \
926
+ q[v + 2 * 1 + (o2)], mm); \
927
+ w[u + 2] = INNER(q[v + 2 * 2 + (o1)], \
928
+ q[v + 2 * 2 + (o2)], mm); \
929
+ w[u + 3] = INNER(q[v + 2 * 3 + (o1)], \
930
+ q[v + 2 * 3 + (o2)], mm); \
931
+ } \
932
+ } while (0)
933
+
934
+ WSREAD( 0, 0, 1, 185);
935
+ one_round_small(state, w, 0, 3, 23, 17, 27);
936
+ WSREAD( 8, 0, 1, 185);
937
+ one_round_small(state, w, 2, 28, 19, 22, 7);
938
+ WSREAD(16, -128, -64, 233);
939
+ one_round_small(state, w, 1, 29, 9, 15, 5);
940
+ WSREAD(24, -191, -127, 233);
941
+ one_round_small(state, w, 0, 4, 13, 10, 25);
942
+
943
+ #undef WSREAD
944
+
945
+ STEP_SMALL(sc->state[ 0], sc->state[ 1], sc->state[ 2], sc->state[ 3],
946
+ IF, 4, 13, PP4_2_);
947
+ STEP_SMALL(sc->state[ 4], sc->state[ 5], sc->state[ 6], sc->state[ 7],
948
+ IF, 13, 10, PP4_0_);
949
+ STEP_SMALL(sc->state[ 8], sc->state[ 9], sc->state[10], sc->state[11],
950
+ IF, 10, 25, PP4_1_);
951
+ STEP_SMALL(sc->state[12], sc->state[13], sc->state[14], sc->state[15],
952
+ IF, 25, 4, PP4_2_);
953
+
954
+ memcpy(sc->state, state, sizeof state);
955
+ }
956
+
957
+ #undef A0
958
+ #undef A1
959
+ #undef A2
960
+ #undef A3
961
+ #undef B0
962
+ #undef B1
963
+ #undef B2
964
+ #undef B3
965
+ #undef C0
966
+ #undef C1
967
+ #undef C2
968
+ #undef C3
969
+ #undef D0
970
+ #undef D1
971
+ #undef D2
972
+ #undef D3
973
+
974
+ #else
975
+
976
+ #if SPH_SIMD_NOCOPY
977
+ #define A0 (sc->state[ 0])
978
+ #define A1 (sc->state[ 1])
979
+ #define A2 (sc->state[ 2])
980
+ #define A3 (sc->state[ 3])
981
+ #define B0 (sc->state[ 4])
982
+ #define B1 (sc->state[ 5])
983
+ #define B2 (sc->state[ 6])
984
+ #define B3 (sc->state[ 7])
985
+ #define C0 (sc->state[ 8])
986
+ #define C1 (sc->state[ 9])
987
+ #define C2 (sc->state[10])
988
+ #define C3 (sc->state[11])
989
+ #define D0 (sc->state[12])
990
+ #define D1 (sc->state[13])
991
+ #define D2 (sc->state[14])
992
+ #define D3 (sc->state[15])
993
+ #endif
994
+
995
+ static void
996
+ compress_small(sph_simd_small_context *sc, int last)
997
+ {
998
+ unsigned char *x;
999
+ s32 q[128];
1000
+ int i;
1001
+ DECL_STATE_SMALL
1002
+ #if SPH_SIMD_NOCOPY
1003
+ sph_u32 saved[16];
1004
+ #endif
1005
+
1006
+ #if SPH_SIMD_NOCOPY
1007
+ memcpy(saved, sc->state, sizeof saved);
1008
+ #endif
1009
+ x = sc->buf;
1010
+ FFT128(0, 1, 0, ll);
1011
+ if (last) {
1012
+ for (i = 0; i < 128; i ++) {
1013
+ s32 tq;
1014
+
1015
+ tq = q[i] + yoff_s_f[i];
1016
+ tq = REDS2(tq);
1017
+ tq = REDS1(tq);
1018
+ tq = REDS1(tq);
1019
+ q[i] = (tq <= 128 ? tq : tq - 257);
1020
+ }
1021
+ } else {
1022
+ for (i = 0; i < 128; i ++) {
1023
+ s32 tq;
1024
+
1025
+ tq = q[i] + yoff_s_n[i];
1026
+ tq = REDS2(tq);
1027
+ tq = REDS1(tq);
1028
+ tq = REDS1(tq);
1029
+ q[i] = (tq <= 128 ? tq : tq - 257);
1030
+ }
1031
+ }
1032
+ READ_STATE_SMALL(sc);
1033
+ A0 ^= sph_dec32le_aligned(x + 0);
1034
+ A1 ^= sph_dec32le_aligned(x + 4);
1035
+ A2 ^= sph_dec32le_aligned(x + 8);
1036
+ A3 ^= sph_dec32le_aligned(x + 12);
1037
+ B0 ^= sph_dec32le_aligned(x + 16);
1038
+ B1 ^= sph_dec32le_aligned(x + 20);
1039
+ B2 ^= sph_dec32le_aligned(x + 24);
1040
+ B3 ^= sph_dec32le_aligned(x + 28);
1041
+ C0 ^= sph_dec32le_aligned(x + 32);
1042
+ C1 ^= sph_dec32le_aligned(x + 36);
1043
+ C2 ^= sph_dec32le_aligned(x + 40);
1044
+ C3 ^= sph_dec32le_aligned(x + 44);
1045
+ D0 ^= sph_dec32le_aligned(x + 48);
1046
+ D1 ^= sph_dec32le_aligned(x + 52);
1047
+ D2 ^= sph_dec32le_aligned(x + 56);
1048
+ D3 ^= sph_dec32le_aligned(x + 60);
1049
+ ONE_ROUND_SMALL(0_, 0, 3, 23, 17, 27);
1050
+ ONE_ROUND_SMALL(1_, 2, 28, 19, 22, 7);
1051
+ ONE_ROUND_SMALL(2_, 1, 29, 9, 15, 5);
1052
+ ONE_ROUND_SMALL(3_, 0, 4, 13, 10, 25);
1053
+ #if SPH_SIMD_NOCOPY
1054
+ STEP_SMALL(saved[ 0], saved[ 1], saved[ 2], saved[ 3],
1055
+ IF, 4, 13, PP4_2_);
1056
+ STEP_SMALL(saved[ 4], saved[ 5], saved[ 6], saved[ 7],
1057
+ IF, 13, 10, PP4_0_);
1058
+ STEP_SMALL(saved[ 8], saved[ 9], saved[10], saved[11],
1059
+ IF, 10, 25, PP4_1_);
1060
+ STEP_SMALL(saved[12], saved[13], saved[14], saved[15],
1061
+ IF, 25, 4, PP4_2_);
1062
+ #else
1063
+ STEP_SMALL(sc->state[ 0], sc->state[ 1], sc->state[ 2], sc->state[ 3],
1064
+ IF, 4, 13, PP4_2_);
1065
+ STEP_SMALL(sc->state[ 4], sc->state[ 5], sc->state[ 6], sc->state[ 7],
1066
+ IF, 13, 10, PP4_0_);
1067
+ STEP_SMALL(sc->state[ 8], sc->state[ 9], sc->state[10], sc->state[11],
1068
+ IF, 10, 25, PP4_1_);
1069
+ STEP_SMALL(sc->state[12], sc->state[13], sc->state[14], sc->state[15],
1070
+ IF, 25, 4, PP4_2_);
1071
+ WRITE_STATE_SMALL(sc);
1072
+ #endif
1073
+ }
1074
+
1075
+ #if SPH_SIMD_NOCOPY
1076
+ #undef A0
1077
+ #undef A1
1078
+ #undef A2
1079
+ #undef A3
1080
+ #undef B0
1081
+ #undef B1
1082
+ #undef B2
1083
+ #undef B3
1084
+ #undef C0
1085
+ #undef C1
1086
+ #undef C2
1087
+ #undef C3
1088
+ #undef D0
1089
+ #undef D1
1090
+ #undef D2
1091
+ #undef D3
1092
+ #endif
1093
+
1094
+ #endif
1095
+
1096
+ #if SPH_SMALL_FOOTPRINT_SIMD
1097
+
1098
+ #define A0 state[ 0]
1099
+ #define A1 state[ 1]
1100
+ #define A2 state[ 2]
1101
+ #define A3 state[ 3]
1102
+ #define A4 state[ 4]
1103
+ #define A5 state[ 5]
1104
+ #define A6 state[ 6]
1105
+ #define A7 state[ 7]
1106
+ #define B0 state[ 8]
1107
+ #define B1 state[ 9]
1108
+ #define B2 state[10]
1109
+ #define B3 state[11]
1110
+ #define B4 state[12]
1111
+ #define B5 state[13]
1112
+ #define B6 state[14]
1113
+ #define B7 state[15]
1114
+ #define C0 state[16]
1115
+ #define C1 state[17]
1116
+ #define C2 state[18]
1117
+ #define C3 state[19]
1118
+ #define C4 state[20]
1119
+ #define C5 state[21]
1120
+ #define C6 state[22]
1121
+ #define C7 state[23]
1122
+ #define D0 state[24]
1123
+ #define D1 state[25]
1124
+ #define D2 state[26]
1125
+ #define D3 state[27]
1126
+ #define D4 state[28]
1127
+ #define D5 state[29]
1128
+ #define D6 state[30]
1129
+ #define D7 state[31]
1130
+
1131
+ /*
1132
+ * Not needed -- already defined for SIMD-224 / SIMD-256
1133
+ *
1134
+ #define STEP2_ELT(n, w, fun, s, ppb) do { \
1135
+ u32 tt = T32(D ## n + (w) + fun(A ## n, B ## n, C ## n)); \
1136
+ A ## n = T32(ROL32(tt, s) + tA[(ppb) ^ n]); \
1137
+ D ## n = C ## n; \
1138
+ C ## n = B ## n; \
1139
+ B ## n = tA[n]; \
1140
+ } while (0)
1141
+ */
1142
+
1143
+ #define STEP2_BIG(w0, w1, w2, w3, w4, w5, w6, w7, fun, r, s, pp8b) do { \
1144
+ u32 tA[8]; \
1145
+ tA[0] = ROL32(A0, r); \
1146
+ tA[1] = ROL32(A1, r); \
1147
+ tA[2] = ROL32(A2, r); \
1148
+ tA[3] = ROL32(A3, r); \
1149
+ tA[4] = ROL32(A4, r); \
1150
+ tA[5] = ROL32(A5, r); \
1151
+ tA[6] = ROL32(A6, r); \
1152
+ tA[7] = ROL32(A7, r); \
1153
+ STEP2_ELT(0, w0, fun, s, pp8b); \
1154
+ STEP2_ELT(1, w1, fun, s, pp8b); \
1155
+ STEP2_ELT(2, w2, fun, s, pp8b); \
1156
+ STEP2_ELT(3, w3, fun, s, pp8b); \
1157
+ STEP2_ELT(4, w4, fun, s, pp8b); \
1158
+ STEP2_ELT(5, w5, fun, s, pp8b); \
1159
+ STEP2_ELT(6, w6, fun, s, pp8b); \
1160
+ STEP2_ELT(7, w7, fun, s, pp8b); \
1161
+ } while (0)
1162
+
1163
+ static void
1164
+ one_round_big(u32 *state, u32 *w, int isp, int p0, int p1, int p2, int p3)
1165
+ {
1166
+ static const int pp8k[] = { 1, 6, 2, 3, 5, 7, 4, 1, 6, 2, 3 };
1167
+
1168
+ STEP2_BIG(w[ 0], w[ 1], w[ 2], w[ 3], w[ 4], w[ 5], w[ 6], w[ 7],
1169
+ IF, p0, p1, pp8k[isp + 0]);
1170
+ STEP2_BIG(w[ 8], w[ 9], w[10], w[11], w[12], w[13], w[14], w[15],
1171
+ IF, p1, p2, pp8k[isp + 1]);
1172
+ STEP2_BIG(w[16], w[17], w[18], w[19], w[20], w[21], w[22], w[23],
1173
+ IF, p2, p3, pp8k[isp + 2]);
1174
+ STEP2_BIG(w[24], w[25], w[26], w[27], w[28], w[29], w[30], w[31],
1175
+ IF, p3, p0, pp8k[isp + 3]);
1176
+ STEP2_BIG(w[32], w[33], w[34], w[35], w[36], w[37], w[38], w[39],
1177
+ MAJ, p0, p1, pp8k[isp + 4]);
1178
+ STEP2_BIG(w[40], w[41], w[42], w[43], w[44], w[45], w[46], w[47],
1179
+ MAJ, p1, p2, pp8k[isp + 5]);
1180
+ STEP2_BIG(w[48], w[49], w[50], w[51], w[52], w[53], w[54], w[55],
1181
+ MAJ, p2, p3, pp8k[isp + 6]);
1182
+ STEP2_BIG(w[56], w[57], w[58], w[59], w[60], w[61], w[62], w[63],
1183
+ MAJ, p3, p0, pp8k[isp + 7]);
1184
+ }
1185
+
1186
+ static void
1187
+ compress_big(sph_simd_big_context *sc, int last)
1188
+ {
1189
+ unsigned char *x;
1190
+ s32 q[256];
1191
+ int i;
1192
+ u32 w[64];
1193
+ u32 state[32];
1194
+ size_t u;
1195
+
1196
+ static const size_t wbp[32] = {
1197
+ 4 << 4, 6 << 4, 0 << 4, 2 << 4,
1198
+ 7 << 4, 5 << 4, 3 << 4, 1 << 4,
1199
+ 15 << 4, 11 << 4, 12 << 4, 8 << 4,
1200
+ 9 << 4, 13 << 4, 10 << 4, 14 << 4,
1201
+ 17 << 4, 18 << 4, 23 << 4, 20 << 4,
1202
+ 22 << 4, 21 << 4, 16 << 4, 19 << 4,
1203
+ 30 << 4, 24 << 4, 25 << 4, 31 << 4,
1204
+ 27 << 4, 29 << 4, 28 << 4, 26 << 4
1205
+ };
1206
+
1207
+ x = sc->buf;
1208
+ FFT256(0, 1, 0, ll);
1209
+ if (last) {
1210
+ for (i = 0; i < 256; i ++) {
1211
+ s32 tq;
1212
+
1213
+ tq = q[i] + yoff_b_f[i];
1214
+ tq = REDS2(tq);
1215
+ tq = REDS1(tq);
1216
+ tq = REDS1(tq);
1217
+ q[i] = (tq <= 128 ? tq : tq - 257);
1218
+ }
1219
+ } else {
1220
+ for (i = 0; i < 256; i ++) {
1221
+ s32 tq;
1222
+
1223
+ tq = q[i] + yoff_b_n[i];
1224
+ tq = REDS2(tq);
1225
+ tq = REDS1(tq);
1226
+ tq = REDS1(tq);
1227
+ q[i] = (tq <= 128 ? tq : tq - 257);
1228
+ }
1229
+ }
1230
+
1231
+ for (i = 0; i < 32; i += 8) {
1232
+ state[i + 0] = sc->state[i + 0]
1233
+ ^ sph_dec32le_aligned(x + 4 * (i + 0));
1234
+ state[i + 1] = sc->state[i + 1]
1235
+ ^ sph_dec32le_aligned(x + 4 * (i + 1));
1236
+ state[i + 2] = sc->state[i + 2]
1237
+ ^ sph_dec32le_aligned(x + 4 * (i + 2));
1238
+ state[i + 3] = sc->state[i + 3]
1239
+ ^ sph_dec32le_aligned(x + 4 * (i + 3));
1240
+ state[i + 4] = sc->state[i + 4]
1241
+ ^ sph_dec32le_aligned(x + 4 * (i + 4));
1242
+ state[i + 5] = sc->state[i + 5]
1243
+ ^ sph_dec32le_aligned(x + 4 * (i + 5));
1244
+ state[i + 6] = sc->state[i + 6]
1245
+ ^ sph_dec32le_aligned(x + 4 * (i + 6));
1246
+ state[i + 7] = sc->state[i + 7]
1247
+ ^ sph_dec32le_aligned(x + 4 * (i + 7));
1248
+ }
1249
+
1250
+ #define WBREAD(sb, o1, o2, mm) do { \
1251
+ for (u = 0; u < 64; u += 8) { \
1252
+ size_t v = wbp[(u >> 3) + (sb)]; \
1253
+ w[u + 0] = INNER(q[v + 2 * 0 + (o1)], \
1254
+ q[v + 2 * 0 + (o2)], mm); \
1255
+ w[u + 1] = INNER(q[v + 2 * 1 + (o1)], \
1256
+ q[v + 2 * 1 + (o2)], mm); \
1257
+ w[u + 2] = INNER(q[v + 2 * 2 + (o1)], \
1258
+ q[v + 2 * 2 + (o2)], mm); \
1259
+ w[u + 3] = INNER(q[v + 2 * 3 + (o1)], \
1260
+ q[v + 2 * 3 + (o2)], mm); \
1261
+ w[u + 4] = INNER(q[v + 2 * 4 + (o1)], \
1262
+ q[v + 2 * 4 + (o2)], mm); \
1263
+ w[u + 5] = INNER(q[v + 2 * 5 + (o1)], \
1264
+ q[v + 2 * 5 + (o2)], mm); \
1265
+ w[u + 6] = INNER(q[v + 2 * 6 + (o1)], \
1266
+ q[v + 2 * 6 + (o2)], mm); \
1267
+ w[u + 7] = INNER(q[v + 2 * 7 + (o1)], \
1268
+ q[v + 2 * 7 + (o2)], mm); \
1269
+ } \
1270
+ } while (0)
1271
+
1272
+ WBREAD( 0, 0, 1, 185);
1273
+ one_round_big(state, w, 0, 3, 23, 17, 27);
1274
+ WBREAD( 8, 0, 1, 185);
1275
+ one_round_big(state, w, 1, 28, 19, 22, 7);
1276
+ WBREAD(16, -256, -128, 233);
1277
+ one_round_big(state, w, 2, 29, 9, 15, 5);
1278
+ WBREAD(24, -383, -255, 233);
1279
+ one_round_big(state, w, 3, 4, 13, 10, 25);
1280
+
1281
+ #undef WBREAD
1282
+
1283
+ STEP_BIG(
1284
+ sc->state[ 0], sc->state[ 1], sc->state[ 2], sc->state[ 3],
1285
+ sc->state[ 4], sc->state[ 5], sc->state[ 6], sc->state[ 7],
1286
+ IF, 4, 13, PP8_4_);
1287
+ STEP_BIG(
1288
+ sc->state[ 8], sc->state[ 9], sc->state[10], sc->state[11],
1289
+ sc->state[12], sc->state[13], sc->state[14], sc->state[15],
1290
+ IF, 13, 10, PP8_5_);
1291
+ STEP_BIG(
1292
+ sc->state[16], sc->state[17], sc->state[18], sc->state[19],
1293
+ sc->state[20], sc->state[21], sc->state[22], sc->state[23],
1294
+ IF, 10, 25, PP8_6_);
1295
+ STEP_BIG(
1296
+ sc->state[24], sc->state[25], sc->state[26], sc->state[27],
1297
+ sc->state[28], sc->state[29], sc->state[30], sc->state[31],
1298
+ IF, 25, 4, PP8_0_);
1299
+
1300
+ memcpy(sc->state, state, sizeof state);
1301
+ }
1302
+
1303
+ #undef A0
1304
+ #undef A1
1305
+ #undef A2
1306
+ #undef A3
1307
+ #undef A4
1308
+ #undef A5
1309
+ #undef A6
1310
+ #undef A7
1311
+ #undef B0
1312
+ #undef B1
1313
+ #undef B2
1314
+ #undef B3
1315
+ #undef B4
1316
+ #undef B5
1317
+ #undef B6
1318
+ #undef B7
1319
+ #undef C0
1320
+ #undef C1
1321
+ #undef C2
1322
+ #undef C3
1323
+ #undef C4
1324
+ #undef C5
1325
+ #undef C6
1326
+ #undef C7
1327
+ #undef D0
1328
+ #undef D1
1329
+ #undef D2
1330
+ #undef D3
1331
+ #undef D4
1332
+ #undef D5
1333
+ #undef D6
1334
+ #undef D7
1335
+
1336
+ #else
1337
+
1338
+ #if SPH_SIMD_NOCOPY
1339
+ #define A0 (sc->state[ 0])
1340
+ #define A1 (sc->state[ 1])
1341
+ #define A2 (sc->state[ 2])
1342
+ #define A3 (sc->state[ 3])
1343
+ #define A4 (sc->state[ 4])
1344
+ #define A5 (sc->state[ 5])
1345
+ #define A6 (sc->state[ 6])
1346
+ #define A7 (sc->state[ 7])
1347
+ #define B0 (sc->state[ 8])
1348
+ #define B1 (sc->state[ 9])
1349
+ #define B2 (sc->state[10])
1350
+ #define B3 (sc->state[11])
1351
+ #define B4 (sc->state[12])
1352
+ #define B5 (sc->state[13])
1353
+ #define B6 (sc->state[14])
1354
+ #define B7 (sc->state[15])
1355
+ #define C0 (sc->state[16])
1356
+ #define C1 (sc->state[17])
1357
+ #define C2 (sc->state[18])
1358
+ #define C3 (sc->state[19])
1359
+ #define C4 (sc->state[20])
1360
+ #define C5 (sc->state[21])
1361
+ #define C6 (sc->state[22])
1362
+ #define C7 (sc->state[23])
1363
+ #define D0 (sc->state[24])
1364
+ #define D1 (sc->state[25])
1365
+ #define D2 (sc->state[26])
1366
+ #define D3 (sc->state[27])
1367
+ #define D4 (sc->state[28])
1368
+ #define D5 (sc->state[29])
1369
+ #define D6 (sc->state[30])
1370
+ #define D7 (sc->state[31])
1371
+ #endif
1372
+
1373
+ static void
1374
+ compress_big(sph_simd_big_context *sc, int last)
1375
+ {
1376
+ unsigned char *x;
1377
+ s32 q[256];
1378
+ int i;
1379
+ DECL_STATE_BIG
1380
+ #if SPH_SIMD_NOCOPY
1381
+ sph_u32 saved[32];
1382
+ #endif
1383
+
1384
+ #if SPH_SIMD_NOCOPY
1385
+ memcpy(saved, sc->state, sizeof saved);
1386
+ #endif
1387
+
1388
+ x = sc->buf;
1389
+ FFT256(0, 1, 0, ll);
1390
+ if (last) {
1391
+ for (i = 0; i < 256; i ++) {
1392
+ s32 tq;
1393
+
1394
+ tq = q[i] + yoff_b_f[i];
1395
+ tq = REDS2(tq);
1396
+ tq = REDS1(tq);
1397
+ tq = REDS1(tq);
1398
+ q[i] = (tq <= 128 ? tq : tq - 257);
1399
+ }
1400
+ } else {
1401
+ for (i = 0; i < 256; i ++) {
1402
+ s32 tq;
1403
+
1404
+ tq = q[i] + yoff_b_n[i];
1405
+ tq = REDS2(tq);
1406
+ tq = REDS1(tq);
1407
+ tq = REDS1(tq);
1408
+ q[i] = (tq <= 128 ? tq : tq - 257);
1409
+ }
1410
+ }
1411
+ READ_STATE_BIG(sc);
1412
+ A0 ^= sph_dec32le_aligned(x + 0);
1413
+ A1 ^= sph_dec32le_aligned(x + 4);
1414
+ A2 ^= sph_dec32le_aligned(x + 8);
1415
+ A3 ^= sph_dec32le_aligned(x + 12);
1416
+ A4 ^= sph_dec32le_aligned(x + 16);
1417
+ A5 ^= sph_dec32le_aligned(x + 20);
1418
+ A6 ^= sph_dec32le_aligned(x + 24);
1419
+ A7 ^= sph_dec32le_aligned(x + 28);
1420
+ B0 ^= sph_dec32le_aligned(x + 32);
1421
+ B1 ^= sph_dec32le_aligned(x + 36);
1422
+ B2 ^= sph_dec32le_aligned(x + 40);
1423
+ B3 ^= sph_dec32le_aligned(x + 44);
1424
+ B4 ^= sph_dec32le_aligned(x + 48);
1425
+ B5 ^= sph_dec32le_aligned(x + 52);
1426
+ B6 ^= sph_dec32le_aligned(x + 56);
1427
+ B7 ^= sph_dec32le_aligned(x + 60);
1428
+ C0 ^= sph_dec32le_aligned(x + 64);
1429
+ C1 ^= sph_dec32le_aligned(x + 68);
1430
+ C2 ^= sph_dec32le_aligned(x + 72);
1431
+ C3 ^= sph_dec32le_aligned(x + 76);
1432
+ C4 ^= sph_dec32le_aligned(x + 80);
1433
+ C5 ^= sph_dec32le_aligned(x + 84);
1434
+ C6 ^= sph_dec32le_aligned(x + 88);
1435
+ C7 ^= sph_dec32le_aligned(x + 92);
1436
+ D0 ^= sph_dec32le_aligned(x + 96);
1437
+ D1 ^= sph_dec32le_aligned(x + 100);
1438
+ D2 ^= sph_dec32le_aligned(x + 104);
1439
+ D3 ^= sph_dec32le_aligned(x + 108);
1440
+ D4 ^= sph_dec32le_aligned(x + 112);
1441
+ D5 ^= sph_dec32le_aligned(x + 116);
1442
+ D6 ^= sph_dec32le_aligned(x + 120);
1443
+ D7 ^= sph_dec32le_aligned(x + 124);
1444
+
1445
+ ONE_ROUND_BIG(0_, 0, 3, 23, 17, 27);
1446
+ ONE_ROUND_BIG(1_, 1, 28, 19, 22, 7);
1447
+ ONE_ROUND_BIG(2_, 2, 29, 9, 15, 5);
1448
+ ONE_ROUND_BIG(3_, 3, 4, 13, 10, 25);
1449
+ #if SPH_SIMD_NOCOPY
1450
+ STEP_BIG(
1451
+ saved[ 0], saved[ 1], saved[ 2], saved[ 3],
1452
+ saved[ 4], saved[ 5], saved[ 6], saved[ 7],
1453
+ IF, 4, 13, PP8_4_);
1454
+ STEP_BIG(
1455
+ saved[ 8], saved[ 9], saved[10], saved[11],
1456
+ saved[12], saved[13], saved[14], saved[15],
1457
+ IF, 13, 10, PP8_5_);
1458
+ STEP_BIG(
1459
+ saved[16], saved[17], saved[18], saved[19],
1460
+ saved[20], saved[21], saved[22], saved[23],
1461
+ IF, 10, 25, PP8_6_);
1462
+ STEP_BIG(
1463
+ saved[24], saved[25], saved[26], saved[27],
1464
+ saved[28], saved[29], saved[30], saved[31],
1465
+ IF, 25, 4, PP8_0_);
1466
+ #else
1467
+ STEP_BIG(
1468
+ sc->state[ 0], sc->state[ 1], sc->state[ 2], sc->state[ 3],
1469
+ sc->state[ 4], sc->state[ 5], sc->state[ 6], sc->state[ 7],
1470
+ IF, 4, 13, PP8_4_);
1471
+ STEP_BIG(
1472
+ sc->state[ 8], sc->state[ 9], sc->state[10], sc->state[11],
1473
+ sc->state[12], sc->state[13], sc->state[14], sc->state[15],
1474
+ IF, 13, 10, PP8_5_);
1475
+ STEP_BIG(
1476
+ sc->state[16], sc->state[17], sc->state[18], sc->state[19],
1477
+ sc->state[20], sc->state[21], sc->state[22], sc->state[23],
1478
+ IF, 10, 25, PP8_6_);
1479
+ STEP_BIG(
1480
+ sc->state[24], sc->state[25], sc->state[26], sc->state[27],
1481
+ sc->state[28], sc->state[29], sc->state[30], sc->state[31],
1482
+ IF, 25, 4, PP8_0_);
1483
+ WRITE_STATE_BIG(sc);
1484
+ #endif
1485
+ }
1486
+
1487
+ #if SPH_SIMD_NOCOPY
1488
+ #undef A0
1489
+ #undef A1
1490
+ #undef A2
1491
+ #undef A3
1492
+ #undef A4
1493
+ #undef A5
1494
+ #undef A6
1495
+ #undef A7
1496
+ #undef B0
1497
+ #undef B1
1498
+ #undef B2
1499
+ #undef B3
1500
+ #undef B4
1501
+ #undef B5
1502
+ #undef B6
1503
+ #undef B7
1504
+ #undef C0
1505
+ #undef C1
1506
+ #undef C2
1507
+ #undef C3
1508
+ #undef C4
1509
+ #undef C5
1510
+ #undef C6
1511
+ #undef C7
1512
+ #undef D0
1513
+ #undef D1
1514
+ #undef D2
1515
+ #undef D3
1516
+ #undef D4
1517
+ #undef D5
1518
+ #undef D6
1519
+ #undef D7
1520
+ #endif
1521
+
1522
+ #endif
1523
+
1524
+ static const u32 IV224[] = {
1525
+ C32(0x33586E9F), C32(0x12FFF033), C32(0xB2D9F64D), C32(0x6F8FEA53),
1526
+ C32(0xDE943106), C32(0x2742E439), C32(0x4FBAB5AC), C32(0x62B9FF96),
1527
+ C32(0x22E7B0AF), C32(0xC862B3A8), C32(0x33E00CDC), C32(0x236B86A6),
1528
+ C32(0xF64AE77C), C32(0xFA373B76), C32(0x7DC1EE5B), C32(0x7FB29CE8)
1529
+ };
1530
+
1531
+ static const u32 IV256[] = {
1532
+ C32(0x4D567983), C32(0x07190BA9), C32(0x8474577B), C32(0x39D726E9),
1533
+ C32(0xAAF3D925), C32(0x3EE20B03), C32(0xAFD5E751), C32(0xC96006D3),
1534
+ C32(0xC2C2BA14), C32(0x49B3BCB4), C32(0xF67CAF46), C32(0x668626C9),
1535
+ C32(0xE2EAA8D2), C32(0x1FF47833), C32(0xD0C661A5), C32(0x55693DE1)
1536
+ };
1537
+
1538
+ static const u32 IV384[] = {
1539
+ C32(0x8A36EEBC), C32(0x94A3BD90), C32(0xD1537B83), C32(0xB25B070B),
1540
+ C32(0xF463F1B5), C32(0xB6F81E20), C32(0x0055C339), C32(0xB4D144D1),
1541
+ C32(0x7360CA61), C32(0x18361A03), C32(0x17DCB4B9), C32(0x3414C45A),
1542
+ C32(0xA699A9D2), C32(0xE39E9664), C32(0x468BFE77), C32(0x51D062F8),
1543
+ C32(0xB9E3BFE8), C32(0x63BECE2A), C32(0x8FE506B9), C32(0xF8CC4AC2),
1544
+ C32(0x7AE11542), C32(0xB1AADDA1), C32(0x64B06794), C32(0x28D2F462),
1545
+ C32(0xE64071EC), C32(0x1DEB91A8), C32(0x8AC8DB23), C32(0x3F782AB5),
1546
+ C32(0x039B5CB8), C32(0x71DDD962), C32(0xFADE2CEA), C32(0x1416DF71)
1547
+ };
1548
+
1549
+ static const u32 IV512[] = {
1550
+ C32(0x0BA16B95), C32(0x72F999AD), C32(0x9FECC2AE), C32(0xBA3264FC),
1551
+ C32(0x5E894929), C32(0x8E9F30E5), C32(0x2F1DAA37), C32(0xF0F2C558),
1552
+ C32(0xAC506643), C32(0xA90635A5), C32(0xE25B878B), C32(0xAAB7878F),
1553
+ C32(0x88817F7A), C32(0x0A02892B), C32(0x559A7550), C32(0x598F657E),
1554
+ C32(0x7EEF60A1), C32(0x6B70E3E8), C32(0x9C1714D1), C32(0xB958E2A8),
1555
+ C32(0xAB02675E), C32(0xED1C014F), C32(0xCD8D65BB), C32(0xFDB7A257),
1556
+ C32(0x09254899), C32(0xD699C7BC), C32(0x9019B6DC), C32(0x2B9022E4),
1557
+ C32(0x8FA14956), C32(0x21BF9BD3), C32(0xB94D0943), C32(0x6FFDDC22)
1558
+ };
1559
+
1560
+ static void
1561
+ init_small(void *cc, const u32 *iv)
1562
+ {
1563
+ sph_simd_small_context *sc;
1564
+
1565
+ sc = cc;
1566
+ memcpy(sc->state, iv, sizeof sc->state);
1567
+ sc->count_low = sc->count_high = 0;
1568
+ sc->ptr = 0;
1569
+ }
1570
+
1571
+ static void
1572
+ init_big(void *cc, const u32 *iv)
1573
+ {
1574
+ sph_simd_big_context *sc;
1575
+
1576
+ sc = cc;
1577
+ memcpy(sc->state, iv, sizeof sc->state);
1578
+ sc->count_low = sc->count_high = 0;
1579
+ sc->ptr = 0;
1580
+ }
1581
+
1582
+ static void
1583
+ update_small(void *cc, const void *data, size_t len)
1584
+ {
1585
+ sph_simd_small_context *sc;
1586
+
1587
+ sc = cc;
1588
+ while (len > 0) {
1589
+ size_t clen;
1590
+
1591
+ clen = (sizeof sc->buf) - sc->ptr;
1592
+ if (clen > len)
1593
+ clen = len;
1594
+ memcpy(sc->buf + sc->ptr, data, clen);
1595
+ data = (const unsigned char *)data + clen;
1596
+ len -= clen;
1597
+ if ((sc->ptr += clen) == sizeof sc->buf) {
1598
+ compress_small(sc, 0);
1599
+ sc->ptr = 0;
1600
+ sc->count_low = T32(sc->count_low + 1);
1601
+ if (sc->count_low == 0)
1602
+ sc->count_high ++;
1603
+ }
1604
+ }
1605
+ }
1606
+
1607
+ static void
1608
+ update_big(void *cc, const void *data, size_t len)
1609
+ {
1610
+ sph_simd_big_context *sc;
1611
+
1612
+ sc = cc;
1613
+ while (len > 0) {
1614
+ size_t clen;
1615
+
1616
+ clen = (sizeof sc->buf) - sc->ptr;
1617
+ if (clen > len)
1618
+ clen = len;
1619
+ memcpy(sc->buf + sc->ptr, data, clen);
1620
+ data = (const unsigned char *)data + clen;
1621
+ len -= clen;
1622
+ if ((sc->ptr += clen) == sizeof sc->buf) {
1623
+ compress_big(sc, 0);
1624
+ sc->ptr = 0;
1625
+ sc->count_low = T32(sc->count_low + 1);
1626
+ if (sc->count_low == 0)
1627
+ sc->count_high ++;
1628
+ }
1629
+ }
1630
+ }
1631
+
1632
+ static void
1633
+ encode_count_small(unsigned char *dst,
1634
+ u32 low, u32 high, size_t ptr, unsigned n)
1635
+ {
1636
+ low = T32(low << 9);
1637
+ high = T32(high << 9) + (low >> 23);
1638
+ low += (ptr << 3) + n;
1639
+ sph_enc32le(dst, low);
1640
+ sph_enc32le(dst + 4, high);
1641
+ }
1642
+
1643
+ static void
1644
+ encode_count_big(unsigned char *dst,
1645
+ u32 low, u32 high, size_t ptr, unsigned n)
1646
+ {
1647
+ low = T32(low << 10);
1648
+ high = T32(high << 10) + (low >> 22);
1649
+ low += (ptr << 3) + n;
1650
+ sph_enc32le(dst, low);
1651
+ sph_enc32le(dst + 4, high);
1652
+ }
1653
+
1654
+ static void
1655
+ finalize_small(void *cc, unsigned ub, unsigned n, void *dst, size_t dst_len)
1656
+ {
1657
+ sph_simd_small_context *sc;
1658
+ unsigned char *d;
1659
+ size_t u;
1660
+
1661
+ sc = cc;
1662
+ if (sc->ptr > 0 || n > 0) {
1663
+ memset(sc->buf + sc->ptr, 0,
1664
+ (sizeof sc->buf) - sc->ptr);
1665
+ sc->buf[sc->ptr] = ub & (0xFF << (8 - n));
1666
+ compress_small(sc, 0);
1667
+ }
1668
+ memset(sc->buf, 0, sizeof sc->buf);
1669
+ encode_count_small(sc->buf, sc->count_low, sc->count_high, sc->ptr, n);
1670
+ compress_small(sc, 1);
1671
+ d = dst;
1672
+ for (d = dst, u = 0; u < dst_len; u ++)
1673
+ sph_enc32le(d + (u << 2), sc->state[u]);
1674
+ }
1675
+
1676
+ static void
1677
+ finalize_big(void *cc, unsigned ub, unsigned n, void *dst, size_t dst_len)
1678
+ {
1679
+ sph_simd_big_context *sc;
1680
+ unsigned char *d;
1681
+ size_t u;
1682
+
1683
+ sc = cc;
1684
+ if (sc->ptr > 0 || n > 0) {
1685
+ memset(sc->buf + sc->ptr, 0,
1686
+ (sizeof sc->buf) - sc->ptr);
1687
+ sc->buf[sc->ptr] = ub & (0xFF << (8 - n));
1688
+ compress_big(sc, 0);
1689
+ }
1690
+ memset(sc->buf, 0, sizeof sc->buf);
1691
+ encode_count_big(sc->buf, sc->count_low, sc->count_high, sc->ptr, n);
1692
+ compress_big(sc, 1);
1693
+ d = dst;
1694
+ for (d = dst, u = 0; u < dst_len; u ++)
1695
+ sph_enc32le(d + (u << 2), sc->state[u]);
1696
+ }
1697
+
1698
+ void
1699
+ sph_simd224_init(void *cc)
1700
+ {
1701
+ init_small(cc, IV224);
1702
+ }
1703
+
1704
+ void
1705
+ sph_simd224(void *cc, const void *data, size_t len)
1706
+ {
1707
+ update_small(cc, data, len);
1708
+ }
1709
+
1710
+ void
1711
+ sph_simd224_close(void *cc, void *dst)
1712
+ {
1713
+ sph_simd224_addbits_and_close(cc, 0, 0, dst);
1714
+ }
1715
+
1716
+ void
1717
+ sph_simd224_addbits_and_close(void *cc, unsigned ub, unsigned n, void *dst)
1718
+ {
1719
+ finalize_small(cc, ub, n, dst, 7);
1720
+ sph_simd224_init(cc);
1721
+ }
1722
+
1723
+ void
1724
+ sph_simd256_init(void *cc)
1725
+ {
1726
+ init_small(cc, IV256);
1727
+ }
1728
+
1729
+ void
1730
+ sph_simd256(void *cc, const void *data, size_t len)
1731
+ {
1732
+ update_small(cc, data, len);
1733
+ }
1734
+
1735
+ void
1736
+ sph_simd256_close(void *cc, void *dst)
1737
+ {
1738
+ sph_simd256_addbits_and_close(cc, 0, 0, dst);
1739
+ }
1740
+
1741
+ void
1742
+ sph_simd256_addbits_and_close(void *cc, unsigned ub, unsigned n, void *dst)
1743
+ {
1744
+ finalize_small(cc, ub, n, dst, 8);
1745
+ sph_simd256_init(cc);
1746
+ }
1747
+
1748
+ void
1749
+ sph_simd384_init(void *cc)
1750
+ {
1751
+ init_big(cc, IV384);
1752
+ }
1753
+
1754
+ void
1755
+ sph_simd384(void *cc, const void *data, size_t len)
1756
+ {
1757
+ update_big(cc, data, len);
1758
+ }
1759
+
1760
+ void
1761
+ sph_simd384_close(void *cc, void *dst)
1762
+ {
1763
+ sph_simd384_addbits_and_close(cc, 0, 0, dst);
1764
+ }
1765
+
1766
+ void
1767
+ sph_simd384_addbits_and_close(void *cc, unsigned ub, unsigned n, void *dst)
1768
+ {
1769
+ finalize_big(cc, ub, n, dst, 12);
1770
+ sph_simd384_init(cc);
1771
+ }
1772
+
1773
+ void
1774
+ sph_simd512_init(void *cc)
1775
+ {
1776
+ init_big(cc, IV512);
1777
+ }
1778
+
1779
+ void
1780
+ sph_simd512(void *cc, const void *data, size_t len)
1781
+ {
1782
+ update_big(cc, data, len);
1783
+ }
1784
+
1785
+ void
1786
+ sph_simd512_close(void *cc, void *dst)
1787
+ {
1788
+ sph_simd512_addbits_and_close(cc, 0, 0, dst);
1789
+ }
1790
+
1791
+ void
1792
+ sph_simd512_addbits_and_close(void *cc, unsigned ub, unsigned n, void *dst)
1793
+ {
1794
+ finalize_big(cc, ub, n, dst, 16);
1795
+ sph_simd512_init(cc);
1796
+ }
1797
+ #ifdef __cplusplus
1798
+ }
1799
+ #endif