glib2 2.2.4-x64-mingw32

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 (2228) hide show
  1. checksums.yaml +7 -0
  2. data/README +40 -0
  3. data/Rakefile +157 -0
  4. data/ext/glib2/depend +18 -0
  5. data/ext/glib2/extconf.rb +80 -0
  6. data/ext/glib2/glib2.def +147 -0
  7. data/ext/glib2/rbgcompat.h +29 -0
  8. data/ext/glib2/rbglib.c +1158 -0
  9. data/ext/glib2/rbglib.h +202 -0
  10. data/ext/glib2/rbglib2conversions.h +57 -0
  11. data/ext/glib2/rbglib_bookmarkfile.c +546 -0
  12. data/ext/glib2/rbglib_convert.c +197 -0
  13. data/ext/glib2/rbglib_error.c +164 -0
  14. data/ext/glib2/rbglib_fileutils.c +119 -0
  15. data/ext/glib2/rbglib_gettext.c +48 -0
  16. data/ext/glib2/rbglib_i18n.c +40 -0
  17. data/ext/glib2/rbglib_int64.c +165 -0
  18. data/ext/glib2/rbglib_io_constants.c +30 -0
  19. data/ext/glib2/rbglib_iochannel.c +824 -0
  20. data/ext/glib2/rbglib_iochannel_win32_socket.c +56 -0
  21. data/ext/glib2/rbglib_iochannelerror.c +49 -0
  22. data/ext/glib2/rbglib_keyfile.c +755 -0
  23. data/ext/glib2/rbglib_maincontext.c +565 -0
  24. data/ext/glib2/rbglib_mainloop.c +121 -0
  25. data/ext/glib2/rbglib_messages.c +148 -0
  26. data/ext/glib2/rbglib_pollfd.c +112 -0
  27. data/ext/glib2/rbglib_shell.c +64 -0
  28. data/ext/glib2/rbglib_shellerror.c +34 -0
  29. data/ext/glib2/rbglib_source.c +242 -0
  30. data/ext/glib2/rbglib_spawn.c +245 -0
  31. data/ext/glib2/rbglib_spawnerror.c +53 -0
  32. data/ext/glib2/rbglib_threads.c +61 -0
  33. data/ext/glib2/rbglib_timer.c +127 -0
  34. data/ext/glib2/rbglib_ucs4.c +79 -0
  35. data/ext/glib2/rbglib_unichar.c +201 -0
  36. data/ext/glib2/rbglib_unicode.c +90 -0
  37. data/ext/glib2/rbglib_utf16.c +78 -0
  38. data/ext/glib2/rbglib_utf8.c +257 -0
  39. data/ext/glib2/rbglib_utils.c +339 -0
  40. data/ext/glib2/rbglib_win32.c +112 -0
  41. data/ext/glib2/rbglibdeprecated.c +56 -0
  42. data/ext/glib2/rbglibdeprecated.h +34 -0
  43. data/ext/glib2/rbgobj_boxed.c +295 -0
  44. data/ext/glib2/rbgobj_closure.c +345 -0
  45. data/ext/glib2/rbgobj_convert.c +195 -0
  46. data/ext/glib2/rbgobj_enumflags.c +109 -0
  47. data/ext/glib2/rbgobj_enums.c +401 -0
  48. data/ext/glib2/rbgobj_flags.c +522 -0
  49. data/ext/glib2/rbgobj_object.c +885 -0
  50. data/ext/glib2/rbgobj_param.c +378 -0
  51. data/ext/glib2/rbgobj_paramspecs.c +311 -0
  52. data/ext/glib2/rbgobj_signal.c +978 -0
  53. data/ext/glib2/rbgobj_strv.c +44 -0
  54. data/ext/glib2/rbgobj_type.c +846 -0
  55. data/ext/glib2/rbgobj_typeinstance.c +128 -0
  56. data/ext/glib2/rbgobj_typeinterface.c +149 -0
  57. data/ext/glib2/rbgobj_typemodule.c +72 -0
  58. data/ext/glib2/rbgobj_typeplugin.c +57 -0
  59. data/ext/glib2/rbgobj_value.c +395 -0
  60. data/ext/glib2/rbgobj_valuearray.c +100 -0
  61. data/ext/glib2/rbgobj_valuetypes.c +243 -0
  62. data/ext/glib2/rbgobject.c +387 -0
  63. data/ext/glib2/rbgobject.h +301 -0
  64. data/ext/glib2/rbgprivate.h +178 -0
  65. data/ext/glib2/rbgutil.c +183 -0
  66. data/ext/glib2/rbgutil.h +119 -0
  67. data/ext/glib2/rbgutil_callback.c +272 -0
  68. data/ext/glib2/rbgutil_list.c +173 -0
  69. data/ext/glib2/rbgutil_list.h +85 -0
  70. data/ext/glib2/rbgutildeprecated.c +252 -0
  71. data/ext/glib2/rbgutildeprecated.h +63 -0
  72. data/extconf.rb +49 -0
  73. data/lib/2.0/glib2.so +0 -0
  74. data/lib/2.1/glib2.so +0 -0
  75. data/lib/2.2/glib2.so +0 -0
  76. data/lib/glib-mkenums.rb +214 -0
  77. data/lib/glib2.rb +231 -0
  78. data/lib/glib2/deprecatable.rb +153 -0
  79. data/lib/gnome2-raketask.rb +8 -0
  80. data/lib/gnome2/rake/external-package.rb +227 -0
  81. data/lib/gnome2/rake/native-binary-build-task.rb +129 -0
  82. data/lib/gnome2/rake/package-task.rb +273 -0
  83. data/lib/gnome2/rake/package.rb +152 -0
  84. data/lib/gnome2/rake/source-download-task.rb +82 -0
  85. data/lib/gnome2/rake/windows-binary-build-task.rb +303 -0
  86. data/lib/gnome2/rake/windows-binary-download-task.rb +181 -0
  87. data/lib/mkmf-gnome2.rb +637 -0
  88. data/sample/bookmarkfile.rb +66 -0
  89. data/sample/idle.rb +41 -0
  90. data/sample/iochannel.rb +44 -0
  91. data/sample/keyfile.rb +62 -0
  92. data/sample/shell.rb +36 -0
  93. data/sample/spawn.rb +25 -0
  94. data/sample/timeout.rb +28 -0
  95. data/sample/timeout2.rb +35 -0
  96. data/sample/timer.rb +40 -0
  97. data/sample/type-register.rb +103 -0
  98. data/sample/type-register2.rb +104 -0
  99. data/sample/utils.rb +54 -0
  100. data/test/glib-test-init.rb +5 -0
  101. data/test/glib-test-utils.rb +12 -0
  102. data/test/run-test.rb +21 -0
  103. data/test/test_enum.rb +99 -0
  104. data/test/test_file_utils.rb +53 -0
  105. data/test/test_flags.rb +129 -0
  106. data/test/test_glib2.rb +122 -0
  107. data/test/test_iochannel.rb +275 -0
  108. data/test/test_key_file.rb +42 -0
  109. data/test/test_mkenums.rb +25 -0
  110. data/test/test_poll_fd.rb +26 -0
  111. data/test/test_signal.rb +20 -0
  112. data/test/test_source.rb +63 -0
  113. data/test/test_spawn.rb +33 -0
  114. data/test/test_timeout.rb +28 -0
  115. data/test/test_unicode.rb +394 -0
  116. data/test/test_utils.rb +37 -0
  117. data/test/test_value.rb +31 -0
  118. data/test/test_win32.rb +13 -0
  119. data/vendor/local/bin/certtool.exe +0 -0
  120. data/vendor/local/bin/danetool.exe +0 -0
  121. data/vendor/local/bin/envsubst.exe +0 -0
  122. data/vendor/local/bin/gdbus-codegen +39 -0
  123. data/vendor/local/bin/gdbus.exe +0 -0
  124. data/vendor/local/bin/gettext.exe +0 -0
  125. data/vendor/local/bin/gettext.sh +121 -0
  126. data/vendor/local/bin/gio-querymodules.exe +0 -0
  127. data/vendor/local/bin/glib-compile-resources.exe +0 -0
  128. data/vendor/local/bin/glib-compile-schemas.exe +0 -0
  129. data/vendor/local/bin/glib-genmarshal.exe +0 -0
  130. data/vendor/local/bin/glib-gettextize +187 -0
  131. data/vendor/local/bin/glib-mkenums +565 -0
  132. data/vendor/local/bin/gnutls-cli-debug.exe +0 -0
  133. data/vendor/local/bin/gnutls-cli.exe +0 -0
  134. data/vendor/local/bin/gnutls-serv.exe +0 -0
  135. data/vendor/local/bin/gobject-query.exe +0 -0
  136. data/vendor/local/bin/gresource.exe +0 -0
  137. data/vendor/local/bin/gsettings.exe +0 -0
  138. data/vendor/local/bin/gspawn-win64-helper-console.exe +0 -0
  139. data/vendor/local/bin/gspawn-win64-helper.exe +0 -0
  140. data/vendor/local/bin/iconv.exe +0 -0
  141. data/vendor/local/bin/libasprintf-0.dll +0 -0
  142. data/vendor/local/bin/libcharset-1.dll +0 -0
  143. data/vendor/local/bin/libffi-6.dll +0 -0
  144. data/vendor/local/bin/libgio-2.0-0.dll +0 -0
  145. data/vendor/local/bin/libglib-2.0-0.dll +0 -0
  146. data/vendor/local/bin/libgmodule-2.0-0.dll +0 -0
  147. data/vendor/local/bin/libgmp-10.dll +0 -0
  148. data/vendor/local/bin/libgnutls-28.def +861 -0
  149. data/vendor/local/bin/libgnutls-28.dll +0 -0
  150. data/vendor/local/bin/libgnutls-openssl-27.dll +0 -0
  151. data/vendor/local/bin/libgnutls-openssl-28.def +228 -0
  152. data/vendor/local/bin/libgnutls-xssl-0.dll +0 -0
  153. data/vendor/local/bin/libgnutls-xssl-28.def +13 -0
  154. data/vendor/local/bin/libgobject-2.0-0.dll +0 -0
  155. data/vendor/local/bin/libgthread-2.0-0.dll +0 -0
  156. data/vendor/local/bin/libhogweed-2-5.dll +0 -0
  157. data/vendor/local/bin/libiconv-2.dll +0 -0
  158. data/vendor/local/bin/libintl-8.dll +0 -0
  159. data/vendor/local/bin/libnettle-4-7.dll +0 -0
  160. data/vendor/local/bin/nettle-hash.exe +0 -0
  161. data/vendor/local/bin/nettle-lfib-stream.exe +0 -0
  162. data/vendor/local/bin/ngettext.exe +0 -0
  163. data/vendor/local/bin/ocsptool.exe +0 -0
  164. data/vendor/local/bin/pkcs1-conv.exe +0 -0
  165. data/vendor/local/bin/psktool.exe +0 -0
  166. data/vendor/local/bin/sexp-conv.exe +0 -0
  167. data/vendor/local/bin/srptool.exe +0 -0
  168. data/vendor/local/include/autosprintf.h +67 -0
  169. data/vendor/local/include/gio-win32-2.0/gio/gwin32inputstream.h +82 -0
  170. data/vendor/local/include/gio-win32-2.0/gio/gwin32outputstream.h +81 -0
  171. data/vendor/local/include/glib-2.0/gio/gaction.h +98 -0
  172. data/vendor/local/include/glib-2.0/gio/gactiongroup.h +161 -0
  173. data/vendor/local/include/glib-2.0/gio/gactiongroupexporter.h +45 -0
  174. data/vendor/local/include/glib-2.0/gio/gactionmap.h +95 -0
  175. data/vendor/local/include/glib-2.0/gio/gappinfo.h +313 -0
  176. data/vendor/local/include/glib-2.0/gio/gapplication.h +236 -0
  177. data/vendor/local/include/glib-2.0/gio/gapplicationcommandline.h +122 -0
  178. data/vendor/local/include/glib-2.0/gio/gasyncinitable.h +124 -0
  179. data/vendor/local/include/glib-2.0/gio/gasyncresult.h +85 -0
  180. data/vendor/local/include/glib-2.0/gio/gbufferedinputstream.h +133 -0
  181. data/vendor/local/include/glib-2.0/gio/gbufferedoutputstream.h +86 -0
  182. data/vendor/local/include/glib-2.0/gio/gbytesicon.h +52 -0
  183. data/vendor/local/include/glib-2.0/gio/gcancellable.h +118 -0
  184. data/vendor/local/include/glib-2.0/gio/gcharsetconverter.h +63 -0
  185. data/vendor/local/include/glib-2.0/gio/gcontenttype.h +71 -0
  186. data/vendor/local/include/glib-2.0/gio/gconverter.h +96 -0
  187. data/vendor/local/include/glib-2.0/gio/gconverterinputstream.h +80 -0
  188. data/vendor/local/include/glib-2.0/gio/gconverteroutputstream.h +80 -0
  189. data/vendor/local/include/glib-2.0/gio/gcredentials.h +85 -0
  190. data/vendor/local/include/glib-2.0/gio/gdatainputstream.h +180 -0
  191. data/vendor/local/include/glib-2.0/gio/gdataoutputstream.h +125 -0
  192. data/vendor/local/include/glib-2.0/gio/gdbusactiongroup.h +54 -0
  193. data/vendor/local/include/glib-2.0/gio/gdbusaddress.h +65 -0
  194. data/vendor/local/include/glib-2.0/gio/gdbusauthobserver.h +51 -0
  195. data/vendor/local/include/glib-2.0/gio/gdbusconnection.h +663 -0
  196. data/vendor/local/include/glib-2.0/gio/gdbuserror.h +109 -0
  197. data/vendor/local/include/glib-2.0/gio/gdbusinterface.h +81 -0
  198. data/vendor/local/include/glib-2.0/gio/gdbusinterfaceskeleton.h +127 -0
  199. data/vendor/local/include/glib-2.0/gio/gdbusintrospection.h +325 -0
  200. data/vendor/local/include/glib-2.0/gio/gdbusmenumodel.h +45 -0
  201. data/vendor/local/include/glib-2.0/gio/gdbusmessage.h +197 -0
  202. data/vendor/local/include/glib-2.0/gio/gdbusmethodinvocation.h +97 -0
  203. data/vendor/local/include/glib-2.0/gio/gdbusnameowning.h +115 -0
  204. data/vendor/local/include/glib-2.0/gio/gdbusnamewatching.h +102 -0
  205. data/vendor/local/include/glib-2.0/gio/gdbusobject.h +78 -0
  206. data/vendor/local/include/glib-2.0/gio/gdbusobjectmanager.h +94 -0
  207. data/vendor/local/include/glib-2.0/gio/gdbusobjectmanagerclient.h +146 -0
  208. data/vendor/local/include/glib-2.0/gio/gdbusobjectmanagerserver.h +93 -0
  209. data/vendor/local/include/glib-2.0/gio/gdbusobjectproxy.h +79 -0
  210. data/vendor/local/include/glib-2.0/gio/gdbusobjectskeleton.h +96 -0
  211. data/vendor/local/include/glib-2.0/gio/gdbusproxy.h +214 -0
  212. data/vendor/local/include/glib-2.0/gio/gdbusserver.h +60 -0
  213. data/vendor/local/include/glib-2.0/gio/gdbusutils.h +55 -0
  214. data/vendor/local/include/glib-2.0/gio/gdrive.h +259 -0
  215. data/vendor/local/include/glib-2.0/gio/gemblem.h +61 -0
  216. data/vendor/local/include/glib-2.0/gio/gemblemedicon.h +81 -0
  217. data/vendor/local/include/glib-2.0/gio/gfile.h +1250 -0
  218. data/vendor/local/include/glib-2.0/gio/gfileattribute.h +84 -0
  219. data/vendor/local/include/glib-2.0/gio/gfileenumerator.h +144 -0
  220. data/vendor/local/include/glib-2.0/gio/gfileicon.h +57 -0
  221. data/vendor/local/include/glib-2.0/gio/gfileinfo.h +1070 -0
  222. data/vendor/local/include/glib-2.0/gio/gfileinputstream.h +114 -0
  223. data/vendor/local/include/glib-2.0/gio/gfileiostream.h +121 -0
  224. data/vendor/local/include/glib-2.0/gio/gfilemonitor.h +98 -0
  225. data/vendor/local/include/glib-2.0/gio/gfilenamecompleter.h +79 -0
  226. data/vendor/local/include/glib-2.0/gio/gfileoutputstream.h +122 -0
  227. data/vendor/local/include/glib-2.0/gio/gfilterinputstream.h +78 -0
  228. data/vendor/local/include/glib-2.0/gio/gfilteroutputstream.h +78 -0
  229. data/vendor/local/include/glib-2.0/gio/gicon.h +101 -0
  230. data/vendor/local/include/glib-2.0/gio/ginetaddress.h +124 -0
  231. data/vendor/local/include/glib-2.0/gio/ginetaddressmask.h +85 -0
  232. data/vendor/local/include/glib-2.0/gio/ginetsocketaddress.h +78 -0
  233. data/vendor/local/include/glib-2.0/gio/ginitable.h +99 -0
  234. data/vendor/local/include/glib-2.0/gio/ginputstream.h +201 -0
  235. data/vendor/local/include/glib-2.0/gio/gio.h +167 -0
  236. data/vendor/local/include/glib-2.0/gio/gioenums.h +1816 -0
  237. data/vendor/local/include/glib-2.0/gio/gioenumtypes.h +167 -0
  238. data/vendor/local/include/glib-2.0/gio/gioerror.h +53 -0
  239. data/vendor/local/include/glib-2.0/gio/giomodule.h +169 -0
  240. data/vendor/local/include/glib-2.0/gio/gioscheduler.h +54 -0
  241. data/vendor/local/include/glib-2.0/gio/giostream.h +135 -0
  242. data/vendor/local/include/glib-2.0/gio/giotypes.h +535 -0
  243. data/vendor/local/include/glib-2.0/gio/gloadableicon.h +99 -0
  244. data/vendor/local/include/glib-2.0/gio/gmemoryinputstream.h +90 -0
  245. data/vendor/local/include/glib-2.0/gio/gmemoryoutputstream.h +107 -0
  246. data/vendor/local/include/glib-2.0/gio/gmenu.h +182 -0
  247. data/vendor/local/include/glib-2.0/gio/gmenuexporter.h +40 -0
  248. data/vendor/local/include/glib-2.0/gio/gmenumodel.h +305 -0
  249. data/vendor/local/include/glib-2.0/gio/gmount.h +276 -0
  250. data/vendor/local/include/glib-2.0/gio/gmountoperation.h +140 -0
  251. data/vendor/local/include/glib-2.0/gio/gnativevolumemonitor.h +61 -0
  252. data/vendor/local/include/glib-2.0/gio/gnetworkaddress.h +78 -0
  253. data/vendor/local/include/glib-2.0/gio/gnetworking.h +82 -0
  254. data/vendor/local/include/glib-2.0/gio/gnetworkmonitor.h +93 -0
  255. data/vendor/local/include/glib-2.0/gio/gnetworkservice.h +76 -0
  256. data/vendor/local/include/glib-2.0/gio/gnotification.h +97 -0
  257. data/vendor/local/include/glib-2.0/gio/goutputstream.h +254 -0
  258. data/vendor/local/include/glib-2.0/gio/gpermission.h +127 -0
  259. data/vendor/local/include/glib-2.0/gio/gpollableinputstream.h +105 -0
  260. data/vendor/local/include/glib-2.0/gio/gpollableoutputstream.h +105 -0
  261. data/vendor/local/include/glib-2.0/gio/gpollableutils.h +64 -0
  262. data/vendor/local/include/glib-2.0/gio/gpropertyaction.h +47 -0
  263. data/vendor/local/include/glib-2.0/gio/gproxy.h +128 -0
  264. data/vendor/local/include/glib-2.0/gio/gproxyaddress.h +86 -0
  265. data/vendor/local/include/glib-2.0/gio/gproxyaddressenumerator.h +74 -0
  266. data/vendor/local/include/glib-2.0/gio/gproxyresolver.h +95 -0
  267. data/vendor/local/include/glib-2.0/gio/gremoteactiongroup.h +75 -0
  268. data/vendor/local/include/glib-2.0/gio/gresolver.h +212 -0
  269. data/vendor/local/include/glib-2.0/gio/gresource.h +129 -0
  270. data/vendor/local/include/glib-2.0/gio/gseekable.h +103 -0
  271. data/vendor/local/include/glib-2.0/gio/gsettings.h +331 -0
  272. data/vendor/local/include/glib-2.0/gio/gsettingsbackend.h +158 -0
  273. data/vendor/local/include/glib-2.0/gio/gsettingsschema.h +104 -0
  274. data/vendor/local/include/glib-2.0/gio/gsimpleaction.h +59 -0
  275. data/vendor/local/include/glib-2.0/gio/gsimpleactiongroup.h +97 -0
  276. data/vendor/local/include/glib-2.0/gio/gsimpleasyncresult.h +162 -0
  277. data/vendor/local/include/glib-2.0/gio/gsimplepermission.h +45 -0
  278. data/vendor/local/include/glib-2.0/gio/gsimpleproxyresolver.h +89 -0
  279. data/vendor/local/include/glib-2.0/gio/gsocket.h +289 -0
  280. data/vendor/local/include/glib-2.0/gio/gsocketaddress.h +82 -0
  281. data/vendor/local/include/glib-2.0/gio/gsocketaddressenumerator.h +91 -0
  282. data/vendor/local/include/glib-2.0/gio/gsocketclient.h +197 -0
  283. data/vendor/local/include/glib-2.0/gio/gsocketconnectable.h +75 -0
  284. data/vendor/local/include/glib-2.0/gio/gsocketconnection.h +115 -0
  285. data/vendor/local/include/glib-2.0/gio/gsocketcontrolmessage.h +109 -0
  286. data/vendor/local/include/glib-2.0/gio/gsocketlistener.h +150 -0
  287. data/vendor/local/include/glib-2.0/gio/gsocketservice.h +91 -0
  288. data/vendor/local/include/glib-2.0/gio/gsrvtarget.h +59 -0
  289. data/vendor/local/include/glib-2.0/gio/gsubprocess.h +167 -0
  290. data/vendor/local/include/glib-2.0/gio/gsubprocesslauncher.h +116 -0
  291. data/vendor/local/include/glib-2.0/gio/gtask.h +158 -0
  292. data/vendor/local/include/glib-2.0/gio/gtcpconnection.h +69 -0
  293. data/vendor/local/include/glib-2.0/gio/gtcpwrapperconnection.h +69 -0
  294. data/vendor/local/include/glib-2.0/gio/gtestdbus.h +72 -0
  295. data/vendor/local/include/glib-2.0/gio/gthemedicon.h +68 -0
  296. data/vendor/local/include/glib-2.0/gio/gthreadedsocketservice.h +81 -0
  297. data/vendor/local/include/glib-2.0/gio/gtlsbackend.h +96 -0
  298. data/vendor/local/include/glib-2.0/gio/gtlscertificate.h +92 -0
  299. data/vendor/local/include/glib-2.0/gio/gtlsclientconnection.h +71 -0
  300. data/vendor/local/include/glib-2.0/gio/gtlsconnection.h +154 -0
  301. data/vendor/local/include/glib-2.0/gio/gtlsdatabase.h +247 -0
  302. data/vendor/local/include/glib-2.0/gio/gtlsfiledatabase.h +58 -0
  303. data/vendor/local/include/glib-2.0/gio/gtlsinteraction.h +148 -0
  304. data/vendor/local/include/glib-2.0/gio/gtlspassword.h +110 -0
  305. data/vendor/local/include/glib-2.0/gio/gtlsserverconnection.h +61 -0
  306. data/vendor/local/include/glib-2.0/gio/gvfs.h +132 -0
  307. data/vendor/local/include/glib-2.0/gio/gvolume.h +251 -0
  308. data/vendor/local/include/glib-2.0/gio/gvolumemonitor.h +154 -0
  309. data/vendor/local/include/glib-2.0/gio/gzlibcompressor.h +62 -0
  310. data/vendor/local/include/glib-2.0/gio/gzlibdecompressor.h +58 -0
  311. data/vendor/local/include/glib-2.0/glib-object.h +40 -0
  312. data/vendor/local/include/glib-2.0/glib-unix.h +119 -0
  313. data/vendor/local/include/glib-2.0/glib.h +112 -0
  314. data/vendor/local/include/glib-2.0/glib/deprecated/gallocator.h +88 -0
  315. data/vendor/local/include/glib-2.0/glib/deprecated/gcache.h +75 -0
  316. data/vendor/local/include/glib-2.0/glib/deprecated/gcompletion.h +83 -0
  317. data/vendor/local/include/glib-2.0/glib/deprecated/gmain.h +139 -0
  318. data/vendor/local/include/glib-2.0/glib/deprecated/grel.h +105 -0
  319. data/vendor/local/include/glib-2.0/glib/deprecated/gthread.h +293 -0
  320. data/vendor/local/include/glib-2.0/glib/galloca.h +103 -0
  321. data/vendor/local/include/glib-2.0/glib/garray.h +238 -0
  322. data/vendor/local/include/glib-2.0/glib/gasyncqueue.h +109 -0
  323. data/vendor/local/include/glib-2.0/glib/gatomic.h +281 -0
  324. data/vendor/local/include/glib-2.0/glib/gbacktrace.h +64 -0
  325. data/vendor/local/include/glib-2.0/glib/gbase64.h +61 -0
  326. data/vendor/local/include/glib-2.0/glib/gbitlock.h +76 -0
  327. data/vendor/local/include/glib-2.0/glib/gbookmarkfile.h +255 -0
  328. data/vendor/local/include/glib-2.0/glib/gbytes.h +90 -0
  329. data/vendor/local/include/glib-2.0/glib/gcharset.h +43 -0
  330. data/vendor/local/include/glib-2.0/glib/gchecksum.h +101 -0
  331. data/vendor/local/include/glib-2.0/glib/gconvert.h +199 -0
  332. data/vendor/local/include/glib-2.0/glib/gdataset.h +150 -0
  333. data/vendor/local/include/glib-2.0/glib/gdate.h +309 -0
  334. data/vendor/local/include/glib-2.0/glib/gdatetime.h +264 -0
  335. data/vendor/local/include/glib-2.0/glib/gdir.h +64 -0
  336. data/vendor/local/include/glib-2.0/glib/genviron.h +78 -0
  337. data/vendor/local/include/glib-2.0/glib/gerror.h +118 -0
  338. data/vendor/local/include/glib-2.0/glib/gfileutils.h +207 -0
  339. data/vendor/local/include/glib-2.0/glib/ggettext.h +63 -0
  340. data/vendor/local/include/glib-2.0/glib/ghash.h +185 -0
  341. data/vendor/local/include/glib-2.0/glib/ghmac.h +78 -0
  342. data/vendor/local/include/glib-2.0/glib/ghook.h +202 -0
  343. data/vendor/local/include/glib-2.0/glib/ghostutils.h +43 -0
  344. data/vendor/local/include/glib-2.0/glib/gi18n-lib.h +36 -0
  345. data/vendor/local/include/glib-2.0/glib/gi18n.h +32 -0
  346. data/vendor/local/include/glib-2.0/glib/giochannel.h +413 -0
  347. data/vendor/local/include/glib-2.0/glib/gkeyfile.h +320 -0
  348. data/vendor/local/include/glib-2.0/glib/glist.h +152 -0
  349. data/vendor/local/include/glib-2.0/glib/gmacros.h +366 -0
  350. data/vendor/local/include/glib-2.0/glib/gmain.h +614 -0
  351. data/vendor/local/include/glib-2.0/glib/gmappedfile.h +58 -0
  352. data/vendor/local/include/glib-2.0/glib/gmarkup.h +262 -0
  353. data/vendor/local/include/glib-2.0/glib/gmem.h +298 -0
  354. data/vendor/local/include/glib-2.0/glib/gmessages.h +407 -0
  355. data/vendor/local/include/glib-2.0/glib/gnode.h +322 -0
  356. data/vendor/local/include/glib-2.0/glib/goption.h +377 -0
  357. data/vendor/local/include/glib-2.0/glib/gpattern.h +53 -0
  358. data/vendor/local/include/glib-2.0/glib/gpoll.h +127 -0
  359. data/vendor/local/include/glib-2.0/glib/gprimes.h +50 -0
  360. data/vendor/local/include/glib-2.0/glib/gprintf.h +57 -0
  361. data/vendor/local/include/glib-2.0/glib/gqsort.h +45 -0
  362. data/vendor/local/include/glib-2.0/glib/gquark.h +68 -0
  363. data/vendor/local/include/glib-2.0/glib/gqueue.h +190 -0
  364. data/vendor/local/include/glib-2.0/glib/grand.h +99 -0
  365. data/vendor/local/include/glib-2.0/glib/gregex.h +610 -0
  366. data/vendor/local/include/glib-2.0/glib/gscanner.h +303 -0
  367. data/vendor/local/include/glib-2.0/glib/gsequence.h +171 -0
  368. data/vendor/local/include/glib-2.0/glib/gshell.h +59 -0
  369. data/vendor/local/include/glib-2.0/glib/gslice.h +98 -0
  370. data/vendor/local/include/glib-2.0/glib/gslist.h +143 -0
  371. data/vendor/local/include/glib-2.0/glib/gspawn.h +307 -0
  372. data/vendor/local/include/glib-2.0/glib/gstdio.h +171 -0
  373. data/vendor/local/include/glib-2.0/glib/gstrfuncs.h +306 -0
  374. data/vendor/local/include/glib-2.0/glib/gstring.h +189 -0
  375. data/vendor/local/include/glib-2.0/glib/gstringchunk.h +57 -0
  376. data/vendor/local/include/glib-2.0/glib/gtestutils.h +421 -0
  377. data/vendor/local/include/glib-2.0/glib/gthread.h +271 -0
  378. data/vendor/local/include/glib-2.0/glib/gthreadpool.h +92 -0
  379. data/vendor/local/include/glib-2.0/glib/gtimer.h +74 -0
  380. data/vendor/local/include/glib-2.0/glib/gtimezone.h +89 -0
  381. data/vendor/local/include/glib-2.0/glib/gtrashstack.h +101 -0
  382. data/vendor/local/include/glib-2.0/glib/gtree.h +104 -0
  383. data/vendor/local/include/glib-2.0/glib/gtypes.h +482 -0
  384. data/vendor/local/include/glib-2.0/glib/gunicode.h +860 -0
  385. data/vendor/local/include/glib-2.0/glib/gurifuncs.h +83 -0
  386. data/vendor/local/include/glib-2.0/glib/gutils.h +374 -0
  387. data/vendor/local/include/glib-2.0/glib/gvariant.h +452 -0
  388. data/vendor/local/include/glib-2.0/glib/gvarianttype.h +380 -0
  389. data/vendor/local/include/glib-2.0/glib/gversion.h +55 -0
  390. data/vendor/local/include/glib-2.0/glib/gversionmacros.h +345 -0
  391. data/vendor/local/include/glib-2.0/glib/gwin32.h +134 -0
  392. data/vendor/local/include/glib-2.0/gmodule.h +115 -0
  393. data/vendor/local/include/glib-2.0/gobject/gbinding.h +149 -0
  394. data/vendor/local/include/glib-2.0/gobject/gboxed.h +122 -0
  395. data/vendor/local/include/glib-2.0/gobject/gclosure.h +297 -0
  396. data/vendor/local/include/glib-2.0/gobject/genums.h +273 -0
  397. data/vendor/local/include/glib-2.0/gobject/glib-types.h +358 -0
  398. data/vendor/local/include/glib-2.0/gobject/gmarshal.h +385 -0
  399. data/vendor/local/include/glib-2.0/gobject/gobject.h +672 -0
  400. data/vendor/local/include/glib-2.0/gobject/gobjectnotifyqueue.c +197 -0
  401. data/vendor/local/include/glib-2.0/gobject/gparam.h +447 -0
  402. data/vendor/local/include/glib-2.0/gobject/gparamspecs.h +1164 -0
  403. data/vendor/local/include/glib-2.0/gobject/gsignal.h +604 -0
  404. data/vendor/local/include/glib-2.0/gobject/gsourceclosure.h +38 -0
  405. data/vendor/local/include/glib-2.0/gobject/gtype.h +1990 -0
  406. data/vendor/local/include/glib-2.0/gobject/gtypemodule.h +278 -0
  407. data/vendor/local/include/glib-2.0/gobject/gtypeplugin.h +134 -0
  408. data/vendor/local/include/glib-2.0/gobject/gvalue.h +194 -0
  409. data/vendor/local/include/glib-2.0/gobject/gvaluearray.h +104 -0
  410. data/vendor/local/include/glib-2.0/gobject/gvaluecollector.h +254 -0
  411. data/vendor/local/include/glib-2.0/gobject/gvaluetypes.h +300 -0
  412. data/vendor/local/include/gmp.h +2301 -0
  413. data/vendor/local/include/gnutls/abstract.h +454 -0
  414. data/vendor/local/include/gnutls/compat.h +401 -0
  415. data/vendor/local/include/gnutls/crypto.h +117 -0
  416. data/vendor/local/include/gnutls/dtls.h +92 -0
  417. data/vendor/local/include/gnutls/gnutls.h +2299 -0
  418. data/vendor/local/include/gnutls/ocsp.h +257 -0
  419. data/vendor/local/include/gnutls/openpgp.h +366 -0
  420. data/vendor/local/include/gnutls/openssl.h +329 -0
  421. data/vendor/local/include/gnutls/pkcs11.h +356 -0
  422. data/vendor/local/include/gnutls/pkcs12.h +135 -0
  423. data/vendor/local/include/gnutls/tpm.h +79 -0
  424. data/vendor/local/include/gnutls/x509.h +1192 -0
  425. data/vendor/local/include/gnutls/xssl.h +125 -0
  426. data/vendor/local/include/iconv.h +242 -0
  427. data/vendor/local/include/libcharset.h +46 -0
  428. data/vendor/local/include/libintl.h +464 -0
  429. data/vendor/local/include/localcharset.h +42 -0
  430. data/vendor/local/include/nettle/aes.h +85 -0
  431. data/vendor/local/include/nettle/arcfour.h +66 -0
  432. data/vendor/local/include/nettle/arctwo.h +82 -0
  433. data/vendor/local/include/nettle/asn1.h +144 -0
  434. data/vendor/local/include/nettle/base16.h +106 -0
  435. data/vendor/local/include/nettle/base64.h +153 -0
  436. data/vendor/local/include/nettle/bignum.h +121 -0
  437. data/vendor/local/include/nettle/blowfish.h +76 -0
  438. data/vendor/local/include/nettle/buffer.h +98 -0
  439. data/vendor/local/include/nettle/camellia.h +82 -0
  440. data/vendor/local/include/nettle/cast128.h +77 -0
  441. data/vendor/local/include/nettle/cbc.h +76 -0
  442. data/vendor/local/include/nettle/ctr.h +62 -0
  443. data/vendor/local/include/nettle/des-compat.h +154 -0
  444. data/vendor/local/include/nettle/des.h +111 -0
  445. data/vendor/local/include/nettle/dsa.h +293 -0
  446. data/vendor/local/include/nettle/ecc-curve.h +45 -0
  447. data/vendor/local/include/nettle/ecc.h +261 -0
  448. data/vendor/local/include/nettle/ecdsa.h +94 -0
  449. data/vendor/local/include/nettle/gcm.h +186 -0
  450. data/vendor/local/include/nettle/gosthash94.h +88 -0
  451. data/vendor/local/include/nettle/hmac.h +202 -0
  452. data/vendor/local/include/nettle/knuth-lfib.h +75 -0
  453. data/vendor/local/include/nettle/macros.h +238 -0
  454. data/vendor/local/include/nettle/md2.h +69 -0
  455. data/vendor/local/include/nettle/md4.h +73 -0
  456. data/vendor/local/include/nettle/md5-compat.h +50 -0
  457. data/vendor/local/include/nettle/md5.h +76 -0
  458. data/vendor/local/include/nettle/memxor.h +22 -0
  459. data/vendor/local/include/nettle/nettle-meta.h +232 -0
  460. data/vendor/local/include/nettle/nettle-stdint.h +286 -0
  461. data/vendor/local/include/nettle/nettle-types.h +92 -0
  462. data/vendor/local/include/nettle/pbkdf2.h +77 -0
  463. data/vendor/local/include/nettle/pgp.h +240 -0
  464. data/vendor/local/include/nettle/pkcs1.h +106 -0
  465. data/vendor/local/include/nettle/realloc.h +41 -0
  466. data/vendor/local/include/nettle/ripemd160.h +78 -0
  467. data/vendor/local/include/nettle/rsa-compat.h +131 -0
  468. data/vendor/local/include/nettle/rsa.h +419 -0
  469. data/vendor/local/include/nettle/salsa20.h +93 -0
  470. data/vendor/local/include/nettle/serpent.h +81 -0
  471. data/vendor/local/include/nettle/sexp.h +212 -0
  472. data/vendor/local/include/nettle/sha.h +34 -0
  473. data/vendor/local/include/nettle/sha1.h +78 -0
  474. data/vendor/local/include/nettle/sha2.h +156 -0
  475. data/vendor/local/include/nettle/sha3.h +176 -0
  476. data/vendor/local/include/nettle/twofish.h +78 -0
  477. data/vendor/local/include/nettle/umac.h +241 -0
  478. data/vendor/local/include/nettle/yarrow.h +137 -0
  479. data/vendor/local/lib/charset.alias +4 -0
  480. data/vendor/local/lib/gio/modules/libgiognutls.a +0 -0
  481. data/vendor/local/lib/gio/modules/libgiognutls.dll +0 -0
  482. data/vendor/local/lib/gio/modules/libgiognutls.dll.a +0 -0
  483. data/vendor/local/lib/gio/modules/libgiognutls.la +41 -0
  484. data/vendor/local/lib/glib-2.0/include/glibconfig.h +199 -0
  485. data/vendor/local/lib/gthread-2.0.def +3 -0
  486. data/vendor/local/lib/libasprintf.a +0 -0
  487. data/vendor/local/lib/libasprintf.dll.a +0 -0
  488. data/vendor/local/lib/libasprintf.la +41 -0
  489. data/vendor/local/lib/libcharset.a +0 -0
  490. data/vendor/local/lib/libcharset.dll.a +0 -0
  491. data/vendor/local/lib/libcharset.la +41 -0
  492. data/vendor/local/lib/libffi-3.2.1/include/ffi.h +487 -0
  493. data/vendor/local/lib/libffi-3.2.1/include/ffitarget.h +150 -0
  494. data/vendor/local/lib/libffi.a +0 -0
  495. data/vendor/local/lib/libffi.dll.a +0 -0
  496. data/vendor/local/lib/libffi.la +41 -0
  497. data/vendor/local/lib/libgio-2.0.dll.a +0 -0
  498. data/vendor/local/lib/libgio-2.0.la +41 -0
  499. data/vendor/local/lib/libglib-2.0.dll.a +0 -0
  500. data/vendor/local/lib/libglib-2.0.la +41 -0
  501. data/vendor/local/lib/libgmodule-2.0.dll.a +0 -0
  502. data/vendor/local/lib/libgmodule-2.0.la +41 -0
  503. data/vendor/local/lib/libgmp.dll.a +0 -0
  504. data/vendor/local/lib/libgmp.la +41 -0
  505. data/vendor/local/lib/libgnutls-openssl.a +0 -0
  506. data/vendor/local/lib/libgnutls-openssl.dll.a +0 -0
  507. data/vendor/local/lib/libgnutls-openssl.la +41 -0
  508. data/vendor/local/lib/libgnutls-xssl.a +0 -0
  509. data/vendor/local/lib/libgnutls-xssl.dll.a +0 -0
  510. data/vendor/local/lib/libgnutls-xssl.la +41 -0
  511. data/vendor/local/lib/libgnutls.a +0 -0
  512. data/vendor/local/lib/libgnutls.dll.a +0 -0
  513. data/vendor/local/lib/libgnutls.la +41 -0
  514. data/vendor/local/lib/libgobject-2.0.dll.a +0 -0
  515. data/vendor/local/lib/libgobject-2.0.la +41 -0
  516. data/vendor/local/lib/libgthread-2.0.dll.a +0 -0
  517. data/vendor/local/lib/libgthread-2.0.la +41 -0
  518. data/vendor/local/lib/libhogweed.a +0 -0
  519. data/vendor/local/lib/libhogweed.dll.a +0 -0
  520. data/vendor/local/lib/libiconv.dll.a +0 -0
  521. data/vendor/local/lib/libiconv.la +41 -0
  522. data/vendor/local/lib/libintl.a +0 -0
  523. data/vendor/local/lib/libintl.dll.a +0 -0
  524. data/vendor/local/lib/libintl.la +41 -0
  525. data/vendor/local/lib/libnettle.a +0 -0
  526. data/vendor/local/lib/libnettle.dll.a +0 -0
  527. data/vendor/local/lib/pkgconfig/gio-2.0.pc +18 -0
  528. data/vendor/local/lib/pkgconfig/gio-windows-2.0.pc +11 -0
  529. data/vendor/local/lib/pkgconfig/glib-2.0.pc +16 -0
  530. data/vendor/local/lib/pkgconfig/gmodule-2.0.pc +14 -0
  531. data/vendor/local/lib/pkgconfig/gmodule-export-2.0.pc +14 -0
  532. data/vendor/local/lib/pkgconfig/gmodule-no-export-2.0.pc +14 -0
  533. data/vendor/local/lib/pkgconfig/gnutls.pc +24 -0
  534. data/vendor/local/lib/pkgconfig/gobject-2.0.pc +12 -0
  535. data/vendor/local/lib/pkgconfig/gthread-2.0.pc +11 -0
  536. data/vendor/local/lib/pkgconfig/hogweed.pc +18 -0
  537. data/vendor/local/lib/pkgconfig/libffi.pc +11 -0
  538. data/vendor/local/lib/pkgconfig/nettle.pc +11 -0
  539. data/vendor/local/lib/pkgconfig/patched +0 -0
  540. data/vendor/local/share/aclocal/glib-2.0.m4 +211 -0
  541. data/vendor/local/share/aclocal/glib-gettext.m4 +435 -0
  542. data/vendor/local/share/aclocal/gsettings.m4 +83 -0
  543. data/vendor/local/share/bash-completion/completions/gapplication +55 -0
  544. data/vendor/local/share/bash-completion/completions/gdbus +33 -0
  545. data/vendor/local/share/bash-completion/completions/gresource +58 -0
  546. data/vendor/local/share/bash-completion/completions/gsettings +84 -0
  547. data/vendor/local/share/doc/gettext/bind_textdomain_codeset.3.html +158 -0
  548. data/vendor/local/share/doc/gettext/bindtextdomain.3.html +154 -0
  549. data/vendor/local/share/doc/gettext/csharpdoc/GNU_Gettext.html +8 -0
  550. data/vendor/local/share/doc/gettext/csharpdoc/GNU_Gettext_GettextResourceManager.html +305 -0
  551. data/vendor/local/share/doc/gettext/csharpdoc/GNU_Gettext_GettextResourceSet.html +356 -0
  552. data/vendor/local/share/doc/gettext/csharpdoc/begin.html +11 -0
  553. data/vendor/local/share/doc/gettext/csharpdoc/index.html +10 -0
  554. data/vendor/local/share/doc/gettext/csharpdoc/namespaces.html +6 -0
  555. data/vendor/local/share/doc/gettext/envsubst.1.html +139 -0
  556. data/vendor/local/share/doc/gettext/gettext.1.html +188 -0
  557. data/vendor/local/share/doc/gettext/gettext.3.html +182 -0
  558. data/vendor/local/share/doc/gettext/javadoc2/allclasses-frame.html +25 -0
  559. data/vendor/local/share/doc/gettext/javadoc2/deprecated-list.html +87 -0
  560. data/vendor/local/share/doc/gettext/javadoc2/gnu/gettext/GettextResource.html +321 -0
  561. data/vendor/local/share/doc/gettext/javadoc2/gnu/gettext/package-frame.html +26 -0
  562. data/vendor/local/share/doc/gettext/javadoc2/gnu/gettext/package-summary.html +103 -0
  563. data/vendor/local/share/doc/gettext/javadoc2/gnu/gettext/package-tree.html +99 -0
  564. data/vendor/local/share/doc/gettext/javadoc2/help-doc.html +136 -0
  565. data/vendor/local/share/doc/gettext/javadoc2/index-all.html +111 -0
  566. data/vendor/local/share/doc/gettext/javadoc2/index.html +22 -0
  567. data/vendor/local/share/doc/gettext/javadoc2/overview-tree.html +96 -0
  568. data/vendor/local/share/doc/gettext/javadoc2/package-list +1 -0
  569. data/vendor/local/share/doc/gettext/javadoc2/packages.html +26 -0
  570. data/vendor/local/share/doc/gettext/javadoc2/serialized-form.html +87 -0
  571. data/vendor/local/share/doc/gettext/javadoc2/stylesheet.css +29 -0
  572. data/vendor/local/share/doc/gettext/ngettext.1.html +194 -0
  573. data/vendor/local/share/doc/gettext/ngettext.3.html +138 -0
  574. data/vendor/local/share/doc/gettext/textdomain.3.html +140 -0
  575. data/vendor/local/share/doc/libasprintf/autosprintf_all.html +174 -0
  576. data/vendor/local/share/doc/libiconv/iconv.1.html +206 -0
  577. data/vendor/local/share/doc/libiconv/iconv.3.html +207 -0
  578. data/vendor/local/share/doc/libiconv/iconv_close.3.html +90 -0
  579. data/vendor/local/share/doc/libiconv/iconv_open.3.html +318 -0
  580. data/vendor/local/share/doc/libiconv/iconv_open_into.3.html +120 -0
  581. data/vendor/local/share/doc/libiconv/iconvctl.3.html +189 -0
  582. data/vendor/local/share/gdb/auto-load/libglib-2.0.so.0.4200.1-gdb.py +10 -0
  583. data/vendor/local/share/gdb/auto-load/libgobject-2.0.so.0.4200.1-gdb.py +10 -0
  584. data/vendor/local/share/gettext/ABOUT-NLS +1282 -0
  585. data/vendor/local/share/glib-2.0/codegen/__init__.py +27 -0
  586. data/vendor/local/share/glib-2.0/codegen/__init__.pyc +0 -0
  587. data/vendor/local/share/glib-2.0/codegen/__init__.pyo +0 -0
  588. data/vendor/local/share/glib-2.0/codegen/codegen.py +3412 -0
  589. data/vendor/local/share/glib-2.0/codegen/codegen.pyc +0 -0
  590. data/vendor/local/share/glib-2.0/codegen/codegen.pyo +0 -0
  591. data/vendor/local/share/glib-2.0/codegen/codegen_docbook.py +329 -0
  592. data/vendor/local/share/glib-2.0/codegen/codegen_docbook.pyc +0 -0
  593. data/vendor/local/share/glib-2.0/codegen/codegen_docbook.pyo +0 -0
  594. data/vendor/local/share/glib-2.0/codegen/codegen_main.py +201 -0
  595. data/vendor/local/share/glib-2.0/codegen/codegen_main.pyc +0 -0
  596. data/vendor/local/share/glib-2.0/codegen/codegen_main.pyo +0 -0
  597. data/vendor/local/share/glib-2.0/codegen/config.py +25 -0
  598. data/vendor/local/share/glib-2.0/codegen/config.pyc +0 -0
  599. data/vendor/local/share/glib-2.0/codegen/config.pyo +0 -0
  600. data/vendor/local/share/glib-2.0/codegen/dbustypes.py +424 -0
  601. data/vendor/local/share/glib-2.0/codegen/dbustypes.pyc +0 -0
  602. data/vendor/local/share/glib-2.0/codegen/dbustypes.pyo +0 -0
  603. data/vendor/local/share/glib-2.0/codegen/parser.py +288 -0
  604. data/vendor/local/share/glib-2.0/codegen/parser.pyc +0 -0
  605. data/vendor/local/share/glib-2.0/codegen/parser.pyo +0 -0
  606. data/vendor/local/share/glib-2.0/codegen/utils.py +102 -0
  607. data/vendor/local/share/glib-2.0/codegen/utils.pyc +0 -0
  608. data/vendor/local/share/glib-2.0/codegen/utils.pyo +0 -0
  609. data/vendor/local/share/glib-2.0/gdb/glib.py +257 -0
  610. data/vendor/local/share/glib-2.0/gdb/gobject.py +295 -0
  611. data/vendor/local/share/glib-2.0/gettext/po/Makefile.in.in +268 -0
  612. data/vendor/local/share/glib-2.0/schemas/gschema.dtd +73 -0
  613. data/vendor/local/share/glib-2.0/schemas/gschemas.compiled +0 -0
  614. data/vendor/local/share/gtk-doc/html/gio/ExampleAnimal.html +1537 -0
  615. data/vendor/local/share/gtk-doc/html/gio/ExampleCat.html +679 -0
  616. data/vendor/local/share/gtk-doc/html/gio/ExampleObject.html +572 -0
  617. data/vendor/local/share/gtk-doc/html/gio/ExampleObjectManagerClient.html +561 -0
  618. data/vendor/local/share/gtk-doc/html/gio/GAction.html +832 -0
  619. data/vendor/local/share/gtk-doc/html/gio/GActionGroup.html +1242 -0
  620. data/vendor/local/share/gtk-doc/html/gio/GActionMap.html +507 -0
  621. data/vendor/local/share/gtk-doc/html/gio/GAppInfo.html +2160 -0
  622. data/vendor/local/share/gtk-doc/html/gio/GAppInfoMonitor.html +151 -0
  623. data/vendor/local/share/gtk-doc/html/gio/GApplication.html +2448 -0
  624. data/vendor/local/share/gtk-doc/html/gio/GApplicationCommandLine.html +981 -0
  625. data/vendor/local/share/gtk-doc/html/gio/GAsyncInitable.html +769 -0
  626. data/vendor/local/share/gtk-doc/html/gio/GAsyncResult.html +511 -0
  627. data/vendor/local/share/gtk-doc/html/gio/GBufferedInputStream.html +705 -0
  628. data/vendor/local/share/gtk-doc/html/gio/GBufferedOutputStream.html +393 -0
  629. data/vendor/local/share/gtk-doc/html/gio/GCancellable.html +861 -0
  630. data/vendor/local/share/gtk-doc/html/gio/GCharsetConverter.html +317 -0
  631. data/vendor/local/share/gtk-doc/html/gio/GConverter.html +467 -0
  632. data/vendor/local/share/gtk-doc/html/gio/GCredentials.html +564 -0
  633. data/vendor/local/share/gtk-doc/html/gio/GDBusActionGroup.html +161 -0
  634. data/vendor/local/share/gtk-doc/html/gio/GDBusAuthObserver.html +390 -0
  635. data/vendor/local/share/gtk-doc/html/gio/GDBusConnection.html +4687 -0
  636. data/vendor/local/share/gtk-doc/html/gio/GDBusInterface.html +329 -0
  637. data/vendor/local/share/gtk-doc/html/gio/GDBusInterfaceSkeleton.html +882 -0
  638. data/vendor/local/share/gtk-doc/html/gio/GDBusMenuModel.html +152 -0
  639. data/vendor/local/share/gtk-doc/html/gio/GDBusMessage.html +2484 -0
  640. data/vendor/local/share/gtk-doc/html/gio/GDBusMethodInvocation.html +903 -0
  641. data/vendor/local/share/gtk-doc/html/gio/GDBusObject.html +404 -0
  642. data/vendor/local/share/gtk-doc/html/gio/GDBusObjectManager.html +592 -0
  643. data/vendor/local/share/gtk-doc/html/gio/GDBusObjectManagerClient.html +1281 -0
  644. data/vendor/local/share/gtk-doc/html/gio/GDBusObjectManagerServer.html +505 -0
  645. data/vendor/local/share/gtk-doc/html/gio/GDBusObjectProxy.html +260 -0
  646. data/vendor/local/share/gtk-doc/html/gio/GDBusObjectSkeleton.html +491 -0
  647. data/vendor/local/share/gtk-doc/html/gio/GDBusProxy.html +2170 -0
  648. data/vendor/local/share/gtk-doc/html/gio/GDBusServer.html +635 -0
  649. data/vendor/local/share/gtk-doc/html/gio/GDataInputStream.html +1595 -0
  650. data/vendor/local/share/gtk-doc/html/gio/GDataOutputStream.html +699 -0
  651. data/vendor/local/share/gtk-doc/html/gio/GDrive.html +1873 -0
  652. data/vendor/local/share/gtk-doc/html/gio/GEmblem.html +354 -0
  653. data/vendor/local/share/gtk-doc/html/gio/GEmblemedIcon.html +325 -0
  654. data/vendor/local/share/gtk-doc/html/gio/GFile.html +9688 -0
  655. data/vendor/local/share/gtk-doc/html/gio/GFileDescriptorBased.html +145 -0
  656. data/vendor/local/share/gtk-doc/html/gio/GFileEnumerator.html +713 -0
  657. data/vendor/local/share/gtk-doc/html/gio/GFileIOStream.html +352 -0
  658. data/vendor/local/share/gtk-doc/html/gio/GFileIcon.html +200 -0
  659. data/vendor/local/share/gtk-doc/html/gio/GFileInfo.html +4261 -0
  660. data/vendor/local/share/gtk-doc/html/gio/GFileInputStream.html +293 -0
  661. data/vendor/local/share/gtk-doc/html/gio/GFileMonitor.html +475 -0
  662. data/vendor/local/share/gtk-doc/html/gio/GFileOutputStream.html +345 -0
  663. data/vendor/local/share/gtk-doc/html/gio/GFilenameCompleter.html +287 -0
  664. data/vendor/local/share/gtk-doc/html/gio/GFilterInputStream.html +249 -0
  665. data/vendor/local/share/gtk-doc/html/gio/GFilterOutputStream.html +251 -0
  666. data/vendor/local/share/gtk-doc/html/gio/GIOModule.html +592 -0
  667. data/vendor/local/share/gtk-doc/html/gio/GIOStream.html +772 -0
  668. data/vendor/local/share/gtk-doc/html/gio/GIcon.html +479 -0
  669. data/vendor/local/share/gtk-doc/html/gio/GInetAddress.html +1044 -0
  670. data/vendor/local/share/gtk-doc/html/gio/GInetSocketAddress.html +419 -0
  671. data/vendor/local/share/gtk-doc/html/gio/GInitable.html +455 -0
  672. data/vendor/local/share/gtk-doc/html/gio/GInputStream.html +1164 -0
  673. data/vendor/local/share/gtk-doc/html/gio/GLoadableIcon.html +354 -0
  674. data/vendor/local/share/gtk-doc/html/gio/GMemoryInputStream.html +308 -0
  675. data/vendor/local/share/gtk-doc/html/gio/GMemoryOutputStream.html +577 -0
  676. data/vendor/local/share/gtk-doc/html/gio/GMenu.html +1877 -0
  677. data/vendor/local/share/gtk-doc/html/gio/GMenuModel.html +1205 -0
  678. data/vendor/local/share/gtk-doc/html/gio/GMount.html +1929 -0
  679. data/vendor/local/share/gtk-doc/html/gio/GMountOperation.html +1197 -0
  680. data/vendor/local/share/gtk-doc/html/gio/GNetworkAddress.html +451 -0
  681. data/vendor/local/share/gtk-doc/html/gio/GNetworkMonitor.html +499 -0
  682. data/vendor/local/share/gtk-doc/html/gio/GNetworkService.html +421 -0
  683. data/vendor/local/share/gtk-doc/html/gio/GOutputStream.html +1561 -0
  684. data/vendor/local/share/gtk-doc/html/gio/GPermission.html +672 -0
  685. data/vendor/local/share/gtk-doc/html/gio/GPollableInputStream.html +411 -0
  686. data/vendor/local/share/gtk-doc/html/gio/GPollableOutputStream.html +411 -0
  687. data/vendor/local/share/gtk-doc/html/gio/GProxy.html +455 -0
  688. data/vendor/local/share/gtk-doc/html/gio/GProxyAddress.html +580 -0
  689. data/vendor/local/share/gtk-doc/html/gio/GProxyResolver.html +395 -0
  690. data/vendor/local/share/gtk-doc/html/gio/GRemoteActionGroup.html +290 -0
  691. data/vendor/local/share/gtk-doc/html/gio/GResolver.html +1171 -0
  692. data/vendor/local/share/gtk-doc/html/gio/GSeekable.html +441 -0
  693. data/vendor/local/share/gtk-doc/html/gio/GSettings.html +3485 -0
  694. data/vendor/local/share/gtk-doc/html/gio/GSettingsBackend.html +755 -0
  695. data/vendor/local/share/gtk-doc/html/gio/GSimpleAction.html +540 -0
  696. data/vendor/local/share/gtk-doc/html/gio/GSimpleActionGroup.html +319 -0
  697. data/vendor/local/share/gtk-doc/html/gio/GSimpleAsyncResult.html +1634 -0
  698. data/vendor/local/share/gtk-doc/html/gio/GSimplePermission.html +129 -0
  699. data/vendor/local/share/gtk-doc/html/gio/GSimpleProxyResolver.html +433 -0
  700. data/vendor/local/share/gtk-doc/html/gio/GSocket.html +3696 -0
  701. data/vendor/local/share/gtk-doc/html/gio/GSocketAddress.html +374 -0
  702. data/vendor/local/share/gtk-doc/html/gio/GSocketClient.html +2079 -0
  703. data/vendor/local/share/gtk-doc/html/gio/GSocketConnectable.html +623 -0
  704. data/vendor/local/share/gtk-doc/html/gio/GSocketConnection.html +631 -0
  705. data/vendor/local/share/gtk-doc/html/gio/GSocketControlMessage.html +330 -0
  706. data/vendor/local/share/gtk-doc/html/gio/GSocketListener.html +868 -0
  707. data/vendor/local/share/gtk-doc/html/gio/GSocketService.html +329 -0
  708. data/vendor/local/share/gtk-doc/html/gio/GSrvTarget.html +424 -0
  709. data/vendor/local/share/gtk-doc/html/gio/GSubprocess.html +1601 -0
  710. data/vendor/local/share/gtk-doc/html/gio/GTask.html +2562 -0
  711. data/vendor/local/share/gtk-doc/html/gio/GTcpConnection.html +209 -0
  712. data/vendor/local/share/gtk-doc/html/gio/GTcpWrapperConnection.html +211 -0
  713. data/vendor/local/share/gtk-doc/html/gio/GTestDBus.html +510 -0
  714. data/vendor/local/share/gtk-doc/html/gio/GThemedIcon.html +464 -0
  715. data/vendor/local/share/gtk-doc/html/gio/GThreadedSocketService.html +241 -0
  716. data/vendor/local/share/gtk-doc/html/gio/GTlsBackend.html +432 -0
  717. data/vendor/local/share/gtk-doc/html/gio/GTlsCertificate.html +590 -0
  718. data/vendor/local/share/gtk-doc/html/gio/GTlsClientConnection.html +550 -0
  719. data/vendor/local/share/gtk-doc/html/gio/GTlsConnection.html +1294 -0
  720. data/vendor/local/share/gtk-doc/html/gio/GTlsDatabase.html +1091 -0
  721. data/vendor/local/share/gtk-doc/html/gio/GTlsFileDatabase.html +208 -0
  722. data/vendor/local/share/gtk-doc/html/gio/GTlsInteraction.html +735 -0
  723. data/vendor/local/share/gtk-doc/html/gio/GTlsPassword.html +662 -0
  724. data/vendor/local/share/gtk-doc/html/gio/GTlsServerConnection.html +193 -0
  725. data/vendor/local/share/gtk-doc/html/gio/GUnixConnection.html +553 -0
  726. data/vendor/local/share/gtk-doc/html/gio/GUnixCredentialsMessage.html +268 -0
  727. data/vendor/local/share/gtk-doc/html/gio/GUnixFDList.html +455 -0
  728. data/vendor/local/share/gtk-doc/html/gio/GUnixFDMessage.html +349 -0
  729. data/vendor/local/share/gtk-doc/html/gio/GUnixInputStream.html +314 -0
  730. data/vendor/local/share/gtk-doc/html/gio/GUnixOutputStream.html +314 -0
  731. data/vendor/local/share/gtk-doc/html/gio/GUnixSocketAddress.html +612 -0
  732. data/vendor/local/share/gtk-doc/html/gio/GVfs.html +358 -0
  733. data/vendor/local/share/gtk-doc/html/gio/GVolume.html +1391 -0
  734. data/vendor/local/share/gtk-doc/html/gio/GVolumeMonitor.html +926 -0
  735. data/vendor/local/share/gtk-doc/html/gio/GZlibCompressor.html +330 -0
  736. data/vendor/local/share/gtk-doc/html/gio/GZlibDecompressor.html +220 -0
  737. data/vendor/local/share/gtk-doc/html/gio/annotation-glossary.html +76 -0
  738. data/vendor/local/share/gtk-doc/html/gio/api-index-2-18.html +148 -0
  739. data/vendor/local/share/gtk-doc/html/gio/api-index-2-20.html +157 -0
  740. data/vendor/local/share/gtk-doc/html/gio/api-index-2-22.html +1083 -0
  741. data/vendor/local/share/gtk-doc/html/gio/api-index-2-24.html +210 -0
  742. data/vendor/local/share/gtk-doc/html/gio/api-index-2-26.html +1640 -0
  743. data/vendor/local/share/gtk-doc/html/gio/api-index-2-28.html +715 -0
  744. data/vendor/local/share/gtk-doc/html/gio/api-index-2-30.html +686 -0
  745. data/vendor/local/share/gtk-doc/html/gio/api-index-2-32.html +725 -0
  746. data/vendor/local/share/gtk-doc/html/gio/api-index-2-34.html +268 -0
  747. data/vendor/local/share/gtk-doc/html/gio/api-index-2-36.html +259 -0
  748. data/vendor/local/share/gtk-doc/html/gio/api-index-2-38.html +161 -0
  749. data/vendor/local/share/gtk-doc/html/gio/api-index-2-40.html +369 -0
  750. data/vendor/local/share/gtk-doc/html/gio/api-index-2-42.html +50 -0
  751. data/vendor/local/share/gtk-doc/html/gio/api-index-deprecated.html +198 -0
  752. data/vendor/local/share/gtk-doc/html/gio/api-index-full.html +9512 -0
  753. data/vendor/local/share/gtk-doc/html/gio/application.html +80 -0
  754. data/vendor/local/share/gtk-doc/html/gio/async.html +48 -0
  755. data/vendor/local/share/gtk-doc/html/gio/ch01.html +232 -0
  756. data/vendor/local/share/gtk-doc/html/gio/ch02.html +114 -0
  757. data/vendor/local/share/gtk-doc/html/gio/ch03.html +45 -0
  758. data/vendor/local/share/gtk-doc/html/gio/ch30.html +75 -0
  759. data/vendor/local/share/gtk-doc/html/gio/ch31.html +217 -0
  760. data/vendor/local/share/gtk-doc/html/gio/ch31s02.html +41 -0
  761. data/vendor/local/share/gtk-doc/html/gio/ch31s03.html +39 -0
  762. data/vendor/local/share/gtk-doc/html/gio/ch32.html +56 -0
  763. data/vendor/local/share/gtk-doc/html/gio/ch32s02.html +59 -0
  764. data/vendor/local/share/gtk-doc/html/gio/ch32s03.html +159 -0
  765. data/vendor/local/share/gtk-doc/html/gio/ch32s04.html +46 -0
  766. data/vendor/local/share/gtk-doc/html/gio/ch32s05.html +48 -0
  767. data/vendor/local/share/gtk-doc/html/gio/ch32s06.html +278 -0
  768. data/vendor/local/share/gtk-doc/html/gio/ch32s07.html +160 -0
  769. data/vendor/local/share/gtk-doc/html/gio/ch33.html +116 -0
  770. data/vendor/local/share/gtk-doc/html/gio/ch33s02.html +142 -0
  771. data/vendor/local/share/gtk-doc/html/gio/ch33s03.html +202 -0
  772. data/vendor/local/share/gtk-doc/html/gio/ch33s04.html +97 -0
  773. data/vendor/local/share/gtk-doc/html/gio/ch33s05.html +931 -0
  774. data/vendor/local/share/gtk-doc/html/gio/conversion.html +44 -0
  775. data/vendor/local/share/gtk-doc/html/gio/extending-gio.html +131 -0
  776. data/vendor/local/share/gtk-doc/html/gio/extending.html +41 -0
  777. data/vendor/local/share/gtk-doc/html/gio/failable_initialization.html +38 -0
  778. data/vendor/local/share/gtk-doc/html/gio/file_mon.html +33 -0
  779. data/vendor/local/share/gtk-doc/html/gio/file_ops.html +50 -0
  780. data/vendor/local/share/gtk-doc/html/gio/gapplication-tool.html +288 -0
  781. data/vendor/local/share/gtk-doc/html/gio/gdbus-codegen.html +1098 -0
  782. data/vendor/local/share/gtk-doc/html/gio/gdbus-convenience.html +65 -0
  783. data/vendor/local/share/gtk-doc/html/gio/gdbus-lowlevel.html +59 -0
  784. data/vendor/local/share/gtk-doc/html/gio/gdbus-org.gtk.GDBus.Example.ObjectManager.Animal.html +161 -0
  785. data/vendor/local/share/gtk-doc/html/gio/gdbus-org.gtk.GDBus.Example.ObjectManager.Cat.html +51 -0
  786. data/vendor/local/share/gtk-doc/html/gio/gdbus.html +300 -0
  787. data/vendor/local/share/gtk-doc/html/gio/gio-D-Bus-Addresses.html +390 -0
  788. data/vendor/local/share/gtk-doc/html/gio/gio-D-Bus-Introspection-Data.html +1572 -0
  789. data/vendor/local/share/gtk-doc/html/gio/gio-D-Bus-Utilities.html +398 -0
  790. data/vendor/local/share/gtk-doc/html/gio/gio-Desktop-file-based-GAppInfo.html +1131 -0
  791. data/vendor/local/share/gtk-doc/html/gio/gio-Extension-Points.html +613 -0
  792. data/vendor/local/share/gtk-doc/html/gio/gio-GActionGroup-exporter.html +192 -0
  793. data/vendor/local/share/gtk-doc/html/gio/gio-GBytesIcon.html +162 -0
  794. data/vendor/local/share/gtk-doc/html/gio/gio-GContentType.html +595 -0
  795. data/vendor/local/share/gtk-doc/html/gio/gio-GConverterInputstream.html +214 -0
  796. data/vendor/local/share/gtk-doc/html/gio/gio-GConverterOutputstream.html +214 -0
  797. data/vendor/local/share/gtk-doc/html/gio/gio-GDBusError.html +1106 -0
  798. data/vendor/local/share/gtk-doc/html/gio/gio-GFileAttribute.html +650 -0
  799. data/vendor/local/share/gtk-doc/html/gio/gio-GIOError.html +539 -0
  800. data/vendor/local/share/gtk-doc/html/gio/gio-GIOScheduler.html +365 -0
  801. data/vendor/local/share/gtk-doc/html/gio/gio-GInetAddressMask.html +443 -0
  802. data/vendor/local/share/gtk-doc/html/gio/gio-GMenuModel-exporter.html +183 -0
  803. data/vendor/local/share/gtk-doc/html/gio/gio-GNotification.html +670 -0
  804. data/vendor/local/share/gtk-doc/html/gio/gio-GPropertyAction.html +177 -0
  805. data/vendor/local/share/gtk-doc/html/gio/gio-GResource.html +1141 -0
  806. data/vendor/local/share/gtk-doc/html/gio/gio-GSettingsSchema-GSettingsSchemaSource.html +1186 -0
  807. data/vendor/local/share/gtk-doc/html/gio/gio-GSubprocessLauncher.html +931 -0
  808. data/vendor/local/share/gtk-doc/html/gio/gio-GWin32InputStream.html +258 -0
  809. data/vendor/local/share/gtk-doc/html/gio/gio-GWin32OutputStream.html +259 -0
  810. data/vendor/local/share/gtk-doc/html/gio/gio-Owning-Bus-Names.html +658 -0
  811. data/vendor/local/share/gtk-doc/html/gio/gio-TLS-Overview.html +321 -0
  812. data/vendor/local/share/gtk-doc/html/gio/gio-Unix-Mounts.html +1398 -0
  813. data/vendor/local/share/gtk-doc/html/gio/gio-Watching-Bus-Names.html +575 -0
  814. data/vendor/local/share/gtk-doc/html/gio/gio-gnetworking.h.html +94 -0
  815. data/vendor/local/share/gtk-doc/html/gio/gio-gpollableutils.html +475 -0
  816. data/vendor/local/share/gtk-doc/html/gio/gio-hierarchy.html +188 -0
  817. data/vendor/local/share/gtk-doc/html/gio/gio-querymodules.html +53 -0
  818. data/vendor/local/share/gtk-doc/html/gio/gio.devhelp2 +2715 -0
  819. data/vendor/local/share/gtk-doc/html/gio/glib-compile-resources.html +209 -0
  820. data/vendor/local/share/gtk-doc/html/gio/glib-compile-schemas.html +111 -0
  821. data/vendor/local/share/gtk-doc/html/gio/gresource-tool.html +111 -0
  822. data/vendor/local/share/gtk-doc/html/gio/gsettings-tool.html +178 -0
  823. data/vendor/local/share/gtk-doc/html/gio/gvfs-overview.png +0 -0
  824. data/vendor/local/share/gtk-doc/html/gio/highlevel-socket.html +60 -0
  825. data/vendor/local/share/gtk-doc/html/gio/home.png +0 -0
  826. data/vendor/local/share/gtk-doc/html/gio/icons.html +53 -0
  827. data/vendor/local/share/gtk-doc/html/gio/index.html +646 -0
  828. data/vendor/local/share/gtk-doc/html/gio/index.sgml +4046 -0
  829. data/vendor/local/share/gtk-doc/html/gio/left-insensitive.png +0 -0
  830. data/vendor/local/share/gtk-doc/html/gio/left.png +0 -0
  831. data/vendor/local/share/gtk-doc/html/gio/menu-example.png +0 -0
  832. data/vendor/local/share/gtk-doc/html/gio/menu-model.png +0 -0
  833. data/vendor/local/share/gtk-doc/html/gio/migrating.html +82 -0
  834. data/vendor/local/share/gtk-doc/html/gio/networking.html +75 -0
  835. data/vendor/local/share/gtk-doc/html/gio/permissions.html +39 -0
  836. data/vendor/local/share/gtk-doc/html/gio/pt01.html +40 -0
  837. data/vendor/local/share/gtk-doc/html/gio/pt02.html +572 -0
  838. data/vendor/local/share/gtk-doc/html/gio/resolver.html +53 -0
  839. data/vendor/local/share/gtk-doc/html/gio/resources.html +33 -0
  840. data/vendor/local/share/gtk-doc/html/gio/right-insensitive.png +0 -0
  841. data/vendor/local/share/gtk-doc/html/gio/right.png +0 -0
  842. data/vendor/local/share/gtk-doc/html/gio/running-gio-apps.html +189 -0
  843. data/vendor/local/share/gtk-doc/html/gio/settings.html +42 -0
  844. data/vendor/local/share/gtk-doc/html/gio/streaming.html +107 -0
  845. data/vendor/local/share/gtk-doc/html/gio/style.css +476 -0
  846. data/vendor/local/share/gtk-doc/html/gio/subprocesses.html +38 -0
  847. data/vendor/local/share/gtk-doc/html/gio/testing.html +33 -0
  848. data/vendor/local/share/gtk-doc/html/gio/tls.html +62 -0
  849. data/vendor/local/share/gtk-doc/html/gio/tools.html +56 -0
  850. data/vendor/local/share/gtk-doc/html/gio/types.html +44 -0
  851. data/vendor/local/share/gtk-doc/html/gio/up-insensitive.png +0 -0
  852. data/vendor/local/share/gtk-doc/html/gio/up.png +0 -0
  853. data/vendor/local/share/gtk-doc/html/gio/utils.html +33 -0
  854. data/vendor/local/share/gtk-doc/html/gio/volume_mon.html +47 -0
  855. data/vendor/local/share/gtk-doc/html/glib/Sorted_binary_tree_breadth-first_traversal.svg +134 -0
  856. data/vendor/local/share/gtk-doc/html/glib/Sorted_binary_tree_inorder.svg +753 -0
  857. data/vendor/local/share/gtk-doc/html/glib/Sorted_binary_tree_postorder.svg +750 -0
  858. data/vendor/local/share/gtk-doc/html/glib/Sorted_binary_tree_preorder.svg +750 -0
  859. data/vendor/local/share/gtk-doc/html/glib/annotation-glossary.html +81 -0
  860. data/vendor/local/share/gtk-doc/html/glib/api-index-2-10.html +167 -0
  861. data/vendor/local/share/gtk-doc/html/glib/api-index-2-12.html +307 -0
  862. data/vendor/local/share/gtk-doc/html/glib/api-index-2-14.html +562 -0
  863. data/vendor/local/share/gtk-doc/html/glib/api-index-2-16.html +357 -0
  864. data/vendor/local/share/gtk-doc/html/glib/api-index-2-18.html +108 -0
  865. data/vendor/local/share/gtk-doc/html/glib/api-index-2-2.html +119 -0
  866. data/vendor/local/share/gtk-doc/html/glib/api-index-2-20.html +86 -0
  867. data/vendor/local/share/gtk-doc/html/glib/api-index-2-22.html +189 -0
  868. data/vendor/local/share/gtk-doc/html/glib/api-index-2-24.html +423 -0
  869. data/vendor/local/share/gtk-doc/html/glib/api-index-2-26.html +389 -0
  870. data/vendor/local/share/gtk-doc/html/glib/api-index-2-28.html +122 -0
  871. data/vendor/local/share/gtk-doc/html/glib/api-index-2-30.html +252 -0
  872. data/vendor/local/share/gtk-doc/html/glib/api-index-2-32.html +343 -0
  873. data/vendor/local/share/gtk-doc/html/glib/api-index-2-34.html +116 -0
  874. data/vendor/local/share/gtk-doc/html/glib/api-index-2-36.html +116 -0
  875. data/vendor/local/share/gtk-doc/html/glib/api-index-2-38.html +111 -0
  876. data/vendor/local/share/gtk-doc/html/glib/api-index-2-4.html +399 -0
  877. data/vendor/local/share/gtk-doc/html/glib/api-index-2-40.html +158 -0
  878. data/vendor/local/share/gtk-doc/html/glib/api-index-2-42.html +35 -0
  879. data/vendor/local/share/gtk-doc/html/glib/api-index-2-6.html +416 -0
  880. data/vendor/local/share/gtk-doc/html/glib/api-index-2-8.html +157 -0
  881. data/vendor/local/share/gtk-doc/html/glib/api-index-deprecated.html +596 -0
  882. data/vendor/local/share/gtk-doc/html/glib/api-index-full.html +9013 -0
  883. data/vendor/local/share/gtk-doc/html/glib/deprecated.html +47 -0
  884. data/vendor/local/share/gtk-doc/html/glib/file-name-encodings.png +0 -0
  885. data/vendor/local/share/gtk-doc/html/glib/glib-Arrays.html +1130 -0
  886. data/vendor/local/share/gtk-doc/html/glib/glib-Asynchronous-Queues.html +1242 -0
  887. data/vendor/local/share/gtk-doc/html/glib/glib-Atomic-Operations.html +944 -0
  888. data/vendor/local/share/gtk-doc/html/glib/glib-Automatic-String-Completion.html +614 -0
  889. data/vendor/local/share/gtk-doc/html/glib/glib-Balanced-Binary-Trees.html +958 -0
  890. data/vendor/local/share/gtk-doc/html/glib/glib-Base64-Encoding.html +440 -0
  891. data/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html +1155 -0
  892. data/vendor/local/share/gtk-doc/html/glib/glib-Bookmark-file-parser.html +2442 -0
  893. data/vendor/local/share/gtk-doc/html/glib/glib-Byte-Arrays.html +1513 -0
  894. data/vendor/local/share/gtk-doc/html/glib/glib-Byte-Order-Macros.html +2152 -0
  895. data/vendor/local/share/gtk-doc/html/glib/glib-Caches.html +540 -0
  896. data/vendor/local/share/gtk-doc/html/glib/glib-Character-Set-Conversion.html +1299 -0
  897. data/vendor/local/share/gtk-doc/html/glib/glib-Commandline-option-parser.html +2164 -0
  898. data/vendor/local/share/gtk-doc/html/glib/glib-Data-Checksums.html +644 -0
  899. data/vendor/local/share/gtk-doc/html/glib/glib-Data-HMACs.html +549 -0
  900. data/vendor/local/share/gtk-doc/html/glib/glib-Datasets.html +662 -0
  901. data/vendor/local/share/gtk-doc/html/glib/glib-Date-and-Time-Functions.html +2808 -0
  902. data/vendor/local/share/gtk-doc/html/glib/glib-Deprecated-Thread-APIs.html +2101 -0
  903. data/vendor/local/share/gtk-doc/html/glib/glib-Double-ended-Queues.html +1860 -0
  904. data/vendor/local/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html +1941 -0
  905. data/vendor/local/share/gtk-doc/html/glib/glib-Dynamic-Loading-of-Modules.html +664 -0
  906. data/vendor/local/share/gtk-doc/html/glib/glib-Error-Reporting.html +1226 -0
  907. data/vendor/local/share/gtk-doc/html/glib/glib-File-Utilities.html +2516 -0
  908. data/vendor/local/share/gtk-doc/html/glib/glib-GDateTime.html +2430 -0
  909. data/vendor/local/share/gtk-doc/html/glib/glib-GTimeZone.html +664 -0
  910. data/vendor/local/share/gtk-doc/html/glib/glib-GVariant.html +6967 -0
  911. data/vendor/local/share/gtk-doc/html/glib/glib-GVariantType.html +1842 -0
  912. data/vendor/local/share/gtk-doc/html/glib/glib-Glob-style-pattern-matching.html +373 -0
  913. data/vendor/local/share/gtk-doc/html/glib/glib-Hash-Tables.html +2260 -0
  914. data/vendor/local/share/gtk-doc/html/glib/glib-Hook-Functions.html +1817 -0
  915. data/vendor/local/share/gtk-doc/html/glib/glib-Hostname-Utilities.html +287 -0
  916. data/vendor/local/share/gtk-doc/html/glib/glib-I18N.html +814 -0
  917. data/vendor/local/share/gtk-doc/html/glib/glib-IO-Channels.html +2662 -0
  918. data/vendor/local/share/gtk-doc/html/glib/glib-Key-value-file-parser.html +3457 -0
  919. data/vendor/local/share/gtk-doc/html/glib/glib-Keyed-Data-Lists.html +1007 -0
  920. data/vendor/local/share/gtk-doc/html/glib/glib-Lexical-Scanner.html +1878 -0
  921. data/vendor/local/share/gtk-doc/html/glib/glib-Memory-Allocation.html +1375 -0
  922. data/vendor/local/share/gtk-doc/html/glib/glib-Memory-Slices.html +625 -0
  923. data/vendor/local/share/gtk-doc/html/glib/glib-Message-Logging.html +947 -0
  924. data/vendor/local/share/gtk-doc/html/glib/glib-Miscellaneous-Macros.html +1180 -0
  925. data/vendor/local/share/gtk-doc/html/glib/glib-Miscellaneous-Utility-Functions.html +2274 -0
  926. data/vendor/local/share/gtk-doc/html/glib/glib-N-ary-Trees.html +1995 -0
  927. data/vendor/local/share/gtk-doc/html/glib/glib-Numerical-Definitions.html +236 -0
  928. data/vendor/local/share/gtk-doc/html/glib/glib-Perl-compatible-regular-expressions.html +3551 -0
  929. data/vendor/local/share/gtk-doc/html/glib/glib-Pointer-Arrays.html +1059 -0
  930. data/vendor/local/share/gtk-doc/html/glib/glib-Quarks.html +378 -0
  931. data/vendor/local/share/gtk-doc/html/glib/glib-Random-Numbers.html +775 -0
  932. data/vendor/local/share/gtk-doc/html/glib/glib-Relations-and-Tuples.html +660 -0
  933. data/vendor/local/share/gtk-doc/html/glib/glib-Sequences.html +2054 -0
  934. data/vendor/local/share/gtk-doc/html/glib/glib-Shell-related-Utilities.html +302 -0
  935. data/vendor/local/share/gtk-doc/html/glib/glib-Simple-XML-Subset-Parser.html +1491 -0
  936. data/vendor/local/share/gtk-doc/html/glib/glib-Singly-Linked-Lists.html +1560 -0
  937. data/vendor/local/share/gtk-doc/html/glib/glib-Spawning-Processes.html +1165 -0
  938. data/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html +593 -0
  939. data/vendor/local/share/gtk-doc/html/glib/glib-String-Chunks.html +374 -0
  940. data/vendor/local/share/gtk-doc/html/glib/glib-String-Utility-Functions.html +4052 -0
  941. data/vendor/local/share/gtk-doc/html/glib/glib-Strings.html +1797 -0
  942. data/vendor/local/share/gtk-doc/html/glib/glib-Testing.html +3149 -0
  943. data/vendor/local/share/gtk-doc/html/glib/glib-The-Main-Event-Loop.html +5082 -0
  944. data/vendor/local/share/gtk-doc/html/glib/glib-Thread-Pools.html +774 -0
  945. data/vendor/local/share/gtk-doc/html/glib/glib-Threads.html +3183 -0
  946. data/vendor/local/share/gtk-doc/html/glib/glib-Timers.html +319 -0
  947. data/vendor/local/share/gtk-doc/html/glib/glib-Trash-Stacks.html +254 -0
  948. data/vendor/local/share/gtk-doc/html/glib/glib-Type-Conversion-Macros.html +309 -0
  949. data/vendor/local/share/gtk-doc/html/glib/glib-UNIX-specific-utilities-and-integration.html +618 -0
  950. data/vendor/local/share/gtk-doc/html/glib/glib-URI-Functions.html +508 -0
  951. data/vendor/local/share/gtk-doc/html/glib/glib-Unicode-Manipulation.html +4995 -0
  952. data/vendor/local/share/gtk-doc/html/glib/glib-Version-Information.html +483 -0
  953. data/vendor/local/share/gtk-doc/html/glib/glib-Warnings-and-Assertions.html +598 -0
  954. data/vendor/local/share/gtk-doc/html/glib/glib-Windows-Compatibility-Functions.html +585 -0
  955. data/vendor/local/share/gtk-doc/html/glib/glib-building.html +438 -0
  956. data/vendor/local/share/gtk-doc/html/glib/glib-changes.html +153 -0
  957. data/vendor/local/share/gtk-doc/html/glib/glib-compiling.html +145 -0
  958. data/vendor/local/share/gtk-doc/html/glib/glib-core.html +68 -0
  959. data/vendor/local/share/gtk-doc/html/glib/glib-cross-compiling.html +165 -0
  960. data/vendor/local/share/gtk-doc/html/glib/glib-data-types.html +100 -0
  961. data/vendor/local/share/gtk-doc/html/glib/glib-fundamentals.html +57 -0
  962. data/vendor/local/share/gtk-doc/html/glib/glib-gettextize.html +96 -0
  963. data/vendor/local/share/gtk-doc/html/glib/glib-programming.html +76 -0
  964. data/vendor/local/share/gtk-doc/html/glib/glib-regex-syntax.html +2217 -0
  965. data/vendor/local/share/gtk-doc/html/glib/glib-resources.html +124 -0
  966. data/vendor/local/share/gtk-doc/html/glib/glib-running.html +295 -0
  967. data/vendor/local/share/gtk-doc/html/glib/glib-utilities.html +126 -0
  968. data/vendor/local/share/gtk-doc/html/glib/glib.devhelp2 +2399 -0
  969. data/vendor/local/share/gtk-doc/html/glib/glib.html +72 -0
  970. data/vendor/local/share/gtk-doc/html/glib/gtester-report.html +81 -0
  971. data/vendor/local/share/gtk-doc/html/glib/gtester.html +187 -0
  972. data/vendor/local/share/gtk-doc/html/glib/gvariant-format-strings.html +1338 -0
  973. data/vendor/local/share/gtk-doc/html/glib/gvariant-text.html +667 -0
  974. data/vendor/local/share/gtk-doc/html/glib/home.png +0 -0
  975. data/vendor/local/share/gtk-doc/html/glib/index.html +358 -0
  976. data/vendor/local/share/gtk-doc/html/glib/index.sgml +2782 -0
  977. data/vendor/local/share/gtk-doc/html/glib/left-insensitive.png +0 -0
  978. data/vendor/local/share/gtk-doc/html/glib/left.png +0 -0
  979. data/vendor/local/share/gtk-doc/html/glib/mainloop-states.gif +0 -0
  980. data/vendor/local/share/gtk-doc/html/glib/right-insensitive.png +0 -0
  981. data/vendor/local/share/gtk-doc/html/glib/right.png +0 -0
  982. data/vendor/local/share/gtk-doc/html/glib/style.css +476 -0
  983. data/vendor/local/share/gtk-doc/html/glib/tools.html +41 -0
  984. data/vendor/local/share/gtk-doc/html/glib/up-insensitive.png +0 -0
  985. data/vendor/local/share/gtk-doc/html/glib/up.png +0 -0
  986. data/vendor/local/share/gtk-doc/html/gobject/GBinding.html +981 -0
  987. data/vendor/local/share/gtk-doc/html/gobject/GTypeModule.html +814 -0
  988. data/vendor/local/share/gtk-doc/html/gobject/GTypePlugin.html +558 -0
  989. data/vendor/local/share/gtk-doc/html/gobject/annotation-glossary.html +76 -0
  990. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-10.html +80 -0
  991. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-12.html +50 -0
  992. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-14.html +46 -0
  993. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-18.html +43 -0
  994. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-2.html +35 -0
  995. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-22.html +43 -0
  996. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-24.html +68 -0
  997. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-26.html +196 -0
  998. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-28.html +42 -0
  999. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-30.html +65 -0
  1000. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-32.html +76 -0
  1001. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-34.html +58 -0
  1002. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-36.html +51 -0
  1003. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-38.html +68 -0
  1004. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-4.html +173 -0
  1005. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-40.html +35 -0
  1006. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-42.html +35 -0
  1007. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-6.html +39 -0
  1008. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-8.html +39 -0
  1009. data/vendor/local/share/gtk-doc/html/gobject/api-index-deprecated.html +132 -0
  1010. data/vendor/local/share/gtk-doc/html/gobject/api-index-full.html +2999 -0
  1011. data/vendor/local/share/gtk-doc/html/gobject/ch01s02.html +136 -0
  1012. data/vendor/local/share/gtk-doc/html/gobject/chapter-gobject.html +290 -0
  1013. data/vendor/local/share/gtk-doc/html/gobject/chapter-gtype.html +263 -0
  1014. data/vendor/local/share/gtk-doc/html/gobject/chapter-intro.html +92 -0
  1015. data/vendor/local/share/gtk-doc/html/gobject/chapter-signal.html +214 -0
  1016. data/vendor/local/share/gtk-doc/html/gobject/glib-genmarshal.html +380 -0
  1017. data/vendor/local/share/gtk-doc/html/gobject/glib-mkenums.html +337 -0
  1018. data/vendor/local/share/gtk-doc/html/gobject/glue.png +0 -0
  1019. data/vendor/local/share/gtk-doc/html/gobject/gobject-Boxed-Types.html +677 -0
  1020. data/vendor/local/share/gtk-doc/html/gobject/gobject-Closures.html +3510 -0
  1021. data/vendor/local/share/gtk-doc/html/gobject/gobject-Enumeration-and-Flag-Types.html +1110 -0
  1022. data/vendor/local/share/gtk-doc/html/gobject/gobject-GParamSpec.html +1937 -0
  1023. data/vendor/local/share/gtk-doc/html/gobject/gobject-Generic-values.html +1101 -0
  1024. data/vendor/local/share/gtk-doc/html/gobject/gobject-Signals.html +3395 -0
  1025. data/vendor/local/share/gtk-doc/html/gobject/gobject-Standard-Parameter-and-Value-Types.html +7262 -0
  1026. data/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html +4119 -0
  1027. data/vendor/local/share/gtk-doc/html/gobject/gobject-Type-Information.html +6080 -0
  1028. data/vendor/local/share/gtk-doc/html/gobject/gobject-Value-arrays.html +644 -0
  1029. data/vendor/local/share/gtk-doc/html/gobject/gobject-Varargs-Value-Collection.html +309 -0
  1030. data/vendor/local/share/gtk-doc/html/gobject/gobject-memory.html +234 -0
  1031. data/vendor/local/share/gtk-doc/html/gobject/gobject-properties.html +392 -0
  1032. data/vendor/local/share/gtk-doc/html/gobject/gobject-query.html +128 -0
  1033. data/vendor/local/share/gtk-doc/html/gobject/gobject.devhelp2 +838 -0
  1034. data/vendor/local/share/gtk-doc/html/gobject/gtype-conventions.html +141 -0
  1035. data/vendor/local/share/gtk-doc/html/gobject/gtype-instantiable-classed.html +288 -0
  1036. data/vendor/local/share/gtk-doc/html/gobject/gtype-non-instantiable-classed.html +378 -0
  1037. data/vendor/local/share/gtk-doc/html/gobject/gtype-non-instantiable.html +76 -0
  1038. data/vendor/local/share/gtk-doc/html/gobject/home.png +0 -0
  1039. data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-chainup.html +98 -0
  1040. data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-code.html +88 -0
  1041. data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-construction.html +172 -0
  1042. data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-destruction.html +117 -0
  1043. data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-methods.html +250 -0
  1044. data/vendor/local/share/gtk-doc/html/gobject/howto-gobject.html +270 -0
  1045. data/vendor/local/share/gtk-doc/html/gobject/howto-interface-implement.html +137 -0
  1046. data/vendor/local/share/gtk-doc/html/gobject/howto-interface-override.html +133 -0
  1047. data/vendor/local/share/gtk-doc/html/gobject/howto-interface-prerequisite.html +123 -0
  1048. data/vendor/local/share/gtk-doc/html/gobject/howto-interface-properties.html +153 -0
  1049. data/vendor/local/share/gtk-doc/html/gobject/howto-interface.html +149 -0
  1050. data/vendor/local/share/gtk-doc/html/gobject/howto-signals.html +121 -0
  1051. data/vendor/local/share/gtk-doc/html/gobject/index.html +201 -0
  1052. data/vendor/local/share/gtk-doc/html/gobject/index.sgml +869 -0
  1053. data/vendor/local/share/gtk-doc/html/gobject/left-insensitive.png +0 -0
  1054. data/vendor/local/share/gtk-doc/html/gobject/left.png +0 -0
  1055. data/vendor/local/share/gtk-doc/html/gobject/pr01.html +72 -0
  1056. data/vendor/local/share/gtk-doc/html/gobject/pt01.html +80 -0
  1057. data/vendor/local/share/gtk-doc/html/gobject/pt02.html +67 -0
  1058. data/vendor/local/share/gtk-doc/html/gobject/pt03.html +55 -0
  1059. data/vendor/local/share/gtk-doc/html/gobject/right-insensitive.png +0 -0
  1060. data/vendor/local/share/gtk-doc/html/gobject/right.png +0 -0
  1061. data/vendor/local/share/gtk-doc/html/gobject/rn01.html +85 -0
  1062. data/vendor/local/share/gtk-doc/html/gobject/rn02.html +47 -0
  1063. data/vendor/local/share/gtk-doc/html/gobject/signal.html +378 -0
  1064. data/vendor/local/share/gtk-doc/html/gobject/style.css +476 -0
  1065. data/vendor/local/share/gtk-doc/html/gobject/tools-ginspector.html +35 -0
  1066. data/vendor/local/share/gtk-doc/html/gobject/tools-gob.html +40 -0
  1067. data/vendor/local/share/gtk-doc/html/gobject/tools-gtkdoc.html +63 -0
  1068. data/vendor/local/share/gtk-doc/html/gobject/tools-refdb.html +48 -0
  1069. data/vendor/local/share/gtk-doc/html/gobject/tools-vala.html +43 -0
  1070. data/vendor/local/share/gtk-doc/html/gobject/up-insensitive.png +0 -0
  1071. data/vendor/local/share/gtk-doc/html/gobject/up.png +0 -0
  1072. data/vendor/local/share/info/autosprintf.info +133 -0
  1073. data/vendor/local/share/info/dir +43 -0
  1074. data/vendor/local/share/info/gmp.info +181 -0
  1075. data/vendor/local/share/info/gmp.info-1 +7073 -0
  1076. data/vendor/local/share/info/gmp.info-2 +3865 -0
  1077. data/vendor/local/share/info/gnutls-client-server-use-case.png +0 -0
  1078. data/vendor/local/share/info/gnutls-guile.info +1589 -0
  1079. data/vendor/local/share/info/gnutls-handshake-sequence.png +0 -0
  1080. data/vendor/local/share/info/gnutls-handshake-state.png +0 -0
  1081. data/vendor/local/share/info/gnutls-internals.png +0 -0
  1082. data/vendor/local/share/info/gnutls-layers.png +0 -0
  1083. data/vendor/local/share/info/gnutls-logo.png +0 -0
  1084. data/vendor/local/share/info/gnutls-modauth.png +0 -0
  1085. data/vendor/local/share/info/gnutls-pgp.png +0 -0
  1086. data/vendor/local/share/info/gnutls-x509.png +0 -0
  1087. data/vendor/local/share/info/gnutls.info +1371 -0
  1088. data/vendor/local/share/info/gnutls.info-1 +7371 -0
  1089. data/vendor/local/share/info/gnutls.info-2 +7842 -0
  1090. data/vendor/local/share/info/gnutls.info-3 +11715 -0
  1091. data/vendor/local/share/info/gnutls.info-4 +6737 -0
  1092. data/vendor/local/share/info/gnutls.info-5 +2308 -0
  1093. data/vendor/local/share/info/libffi.info +765 -0
  1094. data/vendor/local/share/info/pkcs11-vision.png +0 -0
  1095. data/vendor/local/share/license/gettext/AUTHORS +2 -0
  1096. data/vendor/local/share/license/gettext/COPYING +13 -0
  1097. data/vendor/local/share/license/glib-networking/AUTHORS +0 -0
  1098. data/vendor/local/share/license/glib-networking/COPYING +481 -0
  1099. data/vendor/local/share/license/glib/AUTHORS +40 -0
  1100. data/vendor/local/share/license/glib/COPYING +482 -0
  1101. data/vendor/local/share/license/gmp/AUTHORS +100 -0
  1102. data/vendor/local/share/license/gmp/COPYING +674 -0
  1103. data/vendor/local/share/license/gnutls/AUTHORS +92 -0
  1104. data/vendor/local/share/license/gnutls/COPYING +674 -0
  1105. data/vendor/local/share/license/libiconv/AUTHORS +1 -0
  1106. data/vendor/local/share/license/libiconv/COPYING +674 -0
  1107. data/vendor/local/share/license/libiconv/COPYING.LIB +482 -0
  1108. data/vendor/local/share/license/nettle/AUTHORS +1 -0
  1109. data/vendor/local/share/license/nettle/COPYING.LIB +510 -0
  1110. data/vendor/local/share/locale/af/LC_MESSAGES/glib20.mo +0 -0
  1111. data/vendor/local/share/locale/am/LC_MESSAGES/glib20.mo +0 -0
  1112. data/vendor/local/share/locale/an/LC_MESSAGES/glib-networking.mo +0 -0
  1113. data/vendor/local/share/locale/an/LC_MESSAGES/glib20.mo +0 -0
  1114. data/vendor/local/share/locale/ar/LC_MESSAGES/glib-networking.mo +0 -0
  1115. data/vendor/local/share/locale/ar/LC_MESSAGES/glib20.mo +0 -0
  1116. data/vendor/local/share/locale/as/LC_MESSAGES/glib-networking.mo +0 -0
  1117. data/vendor/local/share/locale/as/LC_MESSAGES/glib20.mo +0 -0
  1118. data/vendor/local/share/locale/ast/LC_MESSAGES/glib20.mo +0 -0
  1119. data/vendor/local/share/locale/az/LC_MESSAGES/glib20.mo +0 -0
  1120. data/vendor/local/share/locale/be/LC_MESSAGES/gettext-runtime.mo +0 -0
  1121. data/vendor/local/share/locale/be/LC_MESSAGES/glib-networking.mo +0 -0
  1122. data/vendor/local/share/locale/be/LC_MESSAGES/glib20.mo +0 -0
  1123. data/vendor/local/share/locale/be@latin/LC_MESSAGES/glib20.mo +0 -0
  1124. data/vendor/local/share/locale/bg/LC_MESSAGES/gettext-runtime.mo +0 -0
  1125. data/vendor/local/share/locale/bg/LC_MESSAGES/glib-networking.mo +0 -0
  1126. data/vendor/local/share/locale/bg/LC_MESSAGES/glib20.mo +0 -0
  1127. data/vendor/local/share/locale/bn/LC_MESSAGES/glib20.mo +0 -0
  1128. data/vendor/local/share/locale/bn_IN/LC_MESSAGES/glib-networking.mo +0 -0
  1129. data/vendor/local/share/locale/bn_IN/LC_MESSAGES/glib20.mo +0 -0
  1130. data/vendor/local/share/locale/bs/LC_MESSAGES/glib20.mo +0 -0
  1131. data/vendor/local/share/locale/ca/LC_MESSAGES/gettext-runtime.mo +0 -0
  1132. data/vendor/local/share/locale/ca/LC_MESSAGES/glib-networking.mo +0 -0
  1133. data/vendor/local/share/locale/ca/LC_MESSAGES/glib20.mo +0 -0
  1134. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/glib-networking.mo +0 -0
  1135. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/glib20.mo +0 -0
  1136. data/vendor/local/share/locale/cs/LC_MESSAGES/gettext-runtime.mo +0 -0
  1137. data/vendor/local/share/locale/cs/LC_MESSAGES/glib-networking.mo +0 -0
  1138. data/vendor/local/share/locale/cs/LC_MESSAGES/glib20.mo +0 -0
  1139. data/vendor/local/share/locale/cs/LC_MESSAGES/gnutls.mo +0 -0
  1140. data/vendor/local/share/locale/cy/LC_MESSAGES/glib20.mo +0 -0
  1141. data/vendor/local/share/locale/da/LC_MESSAGES/gettext-runtime.mo +0 -0
  1142. data/vendor/local/share/locale/da/LC_MESSAGES/glib-networking.mo +0 -0
  1143. data/vendor/local/share/locale/da/LC_MESSAGES/glib20.mo +0 -0
  1144. data/vendor/local/share/locale/de/LC_MESSAGES/gettext-runtime.mo +0 -0
  1145. data/vendor/local/share/locale/de/LC_MESSAGES/glib-networking.mo +0 -0
  1146. data/vendor/local/share/locale/de/LC_MESSAGES/glib20.mo +0 -0
  1147. data/vendor/local/share/locale/de/LC_MESSAGES/gnutls.mo +0 -0
  1148. data/vendor/local/share/locale/dz/LC_MESSAGES/glib20.mo +0 -0
  1149. data/vendor/local/share/locale/el/LC_MESSAGES/gettext-runtime.mo +0 -0
  1150. data/vendor/local/share/locale/el/LC_MESSAGES/glib-networking.mo +0 -0
  1151. data/vendor/local/share/locale/el/LC_MESSAGES/glib20.mo +0 -0
  1152. data/vendor/local/share/locale/en@boldquot/LC_MESSAGES/gettext-runtime.mo +0 -0
  1153. data/vendor/local/share/locale/en@boldquot/LC_MESSAGES/gnutls.mo +0 -0
  1154. data/vendor/local/share/locale/en@quot/LC_MESSAGES/gettext-runtime.mo +0 -0
  1155. data/vendor/local/share/locale/en@quot/LC_MESSAGES/gnutls.mo +0 -0
  1156. data/vendor/local/share/locale/en@shaw/LC_MESSAGES/glib20.mo +0 -0
  1157. data/vendor/local/share/locale/en_CA/LC_MESSAGES/glib-networking.mo +0 -0
  1158. data/vendor/local/share/locale/en_CA/LC_MESSAGES/glib20.mo +0 -0
  1159. data/vendor/local/share/locale/en_GB/LC_MESSAGES/glib-networking.mo +0 -0
  1160. data/vendor/local/share/locale/en_GB/LC_MESSAGES/glib20.mo +0 -0
  1161. data/vendor/local/share/locale/eo/LC_MESSAGES/gettext-runtime.mo +0 -0
  1162. data/vendor/local/share/locale/eo/LC_MESSAGES/glib-networking.mo +0 -0
  1163. data/vendor/local/share/locale/eo/LC_MESSAGES/glib20.mo +0 -0
  1164. data/vendor/local/share/locale/eo/LC_MESSAGES/gnutls.mo +0 -0
  1165. data/vendor/local/share/locale/es/LC_MESSAGES/gettext-runtime.mo +0 -0
  1166. data/vendor/local/share/locale/es/LC_MESSAGES/glib-networking.mo +0 -0
  1167. data/vendor/local/share/locale/es/LC_MESSAGES/glib20.mo +0 -0
  1168. data/vendor/local/share/locale/et/LC_MESSAGES/gettext-runtime.mo +0 -0
  1169. data/vendor/local/share/locale/et/LC_MESSAGES/glib-networking.mo +0 -0
  1170. data/vendor/local/share/locale/et/LC_MESSAGES/glib20.mo +0 -0
  1171. data/vendor/local/share/locale/eu/LC_MESSAGES/glib-networking.mo +0 -0
  1172. data/vendor/local/share/locale/eu/LC_MESSAGES/glib20.mo +0 -0
  1173. data/vendor/local/share/locale/fa/LC_MESSAGES/glib-networking.mo +0 -0
  1174. data/vendor/local/share/locale/fa/LC_MESSAGES/glib20.mo +0 -0
  1175. data/vendor/local/share/locale/fi/LC_MESSAGES/gettext-runtime.mo +0 -0
  1176. data/vendor/local/share/locale/fi/LC_MESSAGES/glib-networking.mo +0 -0
  1177. data/vendor/local/share/locale/fi/LC_MESSAGES/glib20.mo +0 -0
  1178. data/vendor/local/share/locale/fi/LC_MESSAGES/gnutls.mo +0 -0
  1179. data/vendor/local/share/locale/fr/LC_MESSAGES/gettext-runtime.mo +0 -0
  1180. data/vendor/local/share/locale/fr/LC_MESSAGES/glib-networking.mo +0 -0
  1181. data/vendor/local/share/locale/fr/LC_MESSAGES/glib20.mo +0 -0
  1182. data/vendor/local/share/locale/fr/LC_MESSAGES/gnutls.mo +0 -0
  1183. data/vendor/local/share/locale/fur/LC_MESSAGES/glib-networking.mo +0 -0
  1184. data/vendor/local/share/locale/ga/LC_MESSAGES/gettext-runtime.mo +0 -0
  1185. data/vendor/local/share/locale/ga/LC_MESSAGES/glib20.mo +0 -0
  1186. data/vendor/local/share/locale/gl/LC_MESSAGES/gettext-runtime.mo +0 -0
  1187. data/vendor/local/share/locale/gl/LC_MESSAGES/glib-networking.mo +0 -0
  1188. data/vendor/local/share/locale/gl/LC_MESSAGES/glib20.mo +0 -0
  1189. data/vendor/local/share/locale/gu/LC_MESSAGES/glib-networking.mo +0 -0
  1190. data/vendor/local/share/locale/gu/LC_MESSAGES/glib20.mo +0 -0
  1191. data/vendor/local/share/locale/he/LC_MESSAGES/glib-networking.mo +0 -0
  1192. data/vendor/local/share/locale/he/LC_MESSAGES/glib20.mo +0 -0
  1193. data/vendor/local/share/locale/hi/LC_MESSAGES/glib-networking.mo +0 -0
  1194. data/vendor/local/share/locale/hi/LC_MESSAGES/glib20.mo +0 -0
  1195. data/vendor/local/share/locale/hr/LC_MESSAGES/gettext-runtime.mo +0 -0
  1196. data/vendor/local/share/locale/hr/LC_MESSAGES/glib20.mo +0 -0
  1197. data/vendor/local/share/locale/hu/LC_MESSAGES/gettext-runtime.mo +0 -0
  1198. data/vendor/local/share/locale/hu/LC_MESSAGES/glib-networking.mo +0 -0
  1199. data/vendor/local/share/locale/hu/LC_MESSAGES/glib20.mo +0 -0
  1200. data/vendor/local/share/locale/hy/LC_MESSAGES/glib20.mo +0 -0
  1201. data/vendor/local/share/locale/id/LC_MESSAGES/gettext-runtime.mo +0 -0
  1202. data/vendor/local/share/locale/id/LC_MESSAGES/glib-networking.mo +0 -0
  1203. data/vendor/local/share/locale/id/LC_MESSAGES/glib20.mo +0 -0
  1204. data/vendor/local/share/locale/is/LC_MESSAGES/glib20.mo +0 -0
  1205. data/vendor/local/share/locale/it/LC_MESSAGES/gettext-runtime.mo +0 -0
  1206. data/vendor/local/share/locale/it/LC_MESSAGES/glib-networking.mo +0 -0
  1207. data/vendor/local/share/locale/it/LC_MESSAGES/glib20.mo +0 -0
  1208. data/vendor/local/share/locale/it/LC_MESSAGES/gnutls.mo +0 -0
  1209. data/vendor/local/share/locale/ja/LC_MESSAGES/gettext-runtime.mo +0 -0
  1210. data/vendor/local/share/locale/ja/LC_MESSAGES/glib-networking.mo +0 -0
  1211. data/vendor/local/share/locale/ja/LC_MESSAGES/glib20.mo +0 -0
  1212. data/vendor/local/share/locale/ka/LC_MESSAGES/glib20.mo +0 -0
  1213. data/vendor/local/share/locale/kk/LC_MESSAGES/glib-networking.mo +0 -0
  1214. data/vendor/local/share/locale/kk/LC_MESSAGES/glib20.mo +0 -0
  1215. data/vendor/local/share/locale/km/LC_MESSAGES/glib-networking.mo +0 -0
  1216. data/vendor/local/share/locale/kn/LC_MESSAGES/glib-networking.mo +0 -0
  1217. data/vendor/local/share/locale/kn/LC_MESSAGES/glib20.mo +0 -0
  1218. data/vendor/local/share/locale/ko/LC_MESSAGES/gettext-runtime.mo +0 -0
  1219. data/vendor/local/share/locale/ko/LC_MESSAGES/glib-networking.mo +0 -0
  1220. data/vendor/local/share/locale/ko/LC_MESSAGES/glib20.mo +0 -0
  1221. data/vendor/local/share/locale/ku/LC_MESSAGES/glib20.mo +0 -0
  1222. data/vendor/local/share/locale/locale.alias +75 -0
  1223. data/vendor/local/share/locale/lt/LC_MESSAGES/glib-networking.mo +0 -0
  1224. data/vendor/local/share/locale/lt/LC_MESSAGES/glib20.mo +0 -0
  1225. data/vendor/local/share/locale/lv/LC_MESSAGES/glib-networking.mo +0 -0
  1226. data/vendor/local/share/locale/lv/LC_MESSAGES/glib20.mo +0 -0
  1227. data/vendor/local/share/locale/mai/LC_MESSAGES/glib20.mo +0 -0
  1228. data/vendor/local/share/locale/mg/LC_MESSAGES/glib20.mo +0 -0
  1229. data/vendor/local/share/locale/mk/LC_MESSAGES/glib20.mo +0 -0
  1230. data/vendor/local/share/locale/ml/LC_MESSAGES/glib-networking.mo +0 -0
  1231. data/vendor/local/share/locale/ml/LC_MESSAGES/glib20.mo +0 -0
  1232. data/vendor/local/share/locale/mn/LC_MESSAGES/glib20.mo +0 -0
  1233. data/vendor/local/share/locale/mr/LC_MESSAGES/glib-networking.mo +0 -0
  1234. data/vendor/local/share/locale/mr/LC_MESSAGES/glib20.mo +0 -0
  1235. data/vendor/local/share/locale/ms/LC_MESSAGES/glib20.mo +0 -0
  1236. data/vendor/local/share/locale/ms/LC_MESSAGES/gnutls.mo +0 -0
  1237. data/vendor/local/share/locale/nb/LC_MESSAGES/gettext-runtime.mo +0 -0
  1238. data/vendor/local/share/locale/nb/LC_MESSAGES/glib-networking.mo +0 -0
  1239. data/vendor/local/share/locale/nb/LC_MESSAGES/glib20.mo +0 -0
  1240. data/vendor/local/share/locale/nds/LC_MESSAGES/glib20.mo +0 -0
  1241. data/vendor/local/share/locale/ne/LC_MESSAGES/glib20.mo +0 -0
  1242. data/vendor/local/share/locale/nl/LC_MESSAGES/gettext-runtime.mo +0 -0
  1243. data/vendor/local/share/locale/nl/LC_MESSAGES/glib-networking.mo +0 -0
  1244. data/vendor/local/share/locale/nl/LC_MESSAGES/glib20.mo +0 -0
  1245. data/vendor/local/share/locale/nl/LC_MESSAGES/gnutls.mo +0 -0
  1246. data/vendor/local/share/locale/nn/LC_MESSAGES/gettext-runtime.mo +0 -0
  1247. data/vendor/local/share/locale/nn/LC_MESSAGES/glib20.mo +0 -0
  1248. data/vendor/local/share/locale/oc/LC_MESSAGES/glib20.mo +0 -0
  1249. data/vendor/local/share/locale/or/LC_MESSAGES/glib-networking.mo +0 -0
  1250. data/vendor/local/share/locale/or/LC_MESSAGES/glib20.mo +0 -0
  1251. data/vendor/local/share/locale/pa/LC_MESSAGES/glib-networking.mo +0 -0
  1252. data/vendor/local/share/locale/pa/LC_MESSAGES/glib20.mo +0 -0
  1253. data/vendor/local/share/locale/pl/LC_MESSAGES/gettext-runtime.mo +0 -0
  1254. data/vendor/local/share/locale/pl/LC_MESSAGES/glib-networking.mo +0 -0
  1255. data/vendor/local/share/locale/pl/LC_MESSAGES/glib20.mo +0 -0
  1256. data/vendor/local/share/locale/pl/LC_MESSAGES/gnutls.mo +0 -0
  1257. data/vendor/local/share/locale/ps/LC_MESSAGES/glib20.mo +0 -0
  1258. data/vendor/local/share/locale/pt/LC_MESSAGES/gettext-runtime.mo +0 -0
  1259. data/vendor/local/share/locale/pt/LC_MESSAGES/glib-networking.mo +0 -0
  1260. data/vendor/local/share/locale/pt/LC_MESSAGES/glib20.mo +0 -0
  1261. data/vendor/local/share/locale/pt_BR/LC_MESSAGES/gettext-runtime.mo +0 -0
  1262. data/vendor/local/share/locale/pt_BR/LC_MESSAGES/glib-networking.mo +0 -0
  1263. data/vendor/local/share/locale/pt_BR/LC_MESSAGES/glib20.mo +0 -0
  1264. data/vendor/local/share/locale/ro/LC_MESSAGES/gettext-runtime.mo +0 -0
  1265. data/vendor/local/share/locale/ro/LC_MESSAGES/glib-networking.mo +0 -0
  1266. data/vendor/local/share/locale/ro/LC_MESSAGES/glib20.mo +0 -0
  1267. data/vendor/local/share/locale/ru/LC_MESSAGES/gettext-runtime.mo +0 -0
  1268. data/vendor/local/share/locale/ru/LC_MESSAGES/glib-networking.mo +0 -0
  1269. data/vendor/local/share/locale/ru/LC_MESSAGES/glib20.mo +0 -0
  1270. data/vendor/local/share/locale/rw/LC_MESSAGES/glib20.mo +0 -0
  1271. data/vendor/local/share/locale/si/LC_MESSAGES/glib20.mo +0 -0
  1272. data/vendor/local/share/locale/sk/LC_MESSAGES/gettext-runtime.mo +0 -0
  1273. data/vendor/local/share/locale/sk/LC_MESSAGES/glib-networking.mo +0 -0
  1274. data/vendor/local/share/locale/sk/LC_MESSAGES/glib20.mo +0 -0
  1275. data/vendor/local/share/locale/sl/LC_MESSAGES/gettext-runtime.mo +0 -0
  1276. data/vendor/local/share/locale/sl/LC_MESSAGES/glib-networking.mo +0 -0
  1277. data/vendor/local/share/locale/sl/LC_MESSAGES/glib20.mo +0 -0
  1278. data/vendor/local/share/locale/sq/LC_MESSAGES/glib20.mo +0 -0
  1279. data/vendor/local/share/locale/sr/LC_MESSAGES/gettext-runtime.mo +0 -0
  1280. data/vendor/local/share/locale/sr/LC_MESSAGES/glib-networking.mo +0 -0
  1281. data/vendor/local/share/locale/sr/LC_MESSAGES/glib20.mo +0 -0
  1282. data/vendor/local/share/locale/sr@ije/LC_MESSAGES/glib20.mo +0 -0
  1283. data/vendor/local/share/locale/sr@latin/LC_MESSAGES/glib-networking.mo +0 -0
  1284. data/vendor/local/share/locale/sr@latin/LC_MESSAGES/glib20.mo +0 -0
  1285. data/vendor/local/share/locale/sv/LC_MESSAGES/gettext-runtime.mo +0 -0
  1286. data/vendor/local/share/locale/sv/LC_MESSAGES/glib-networking.mo +0 -0
  1287. data/vendor/local/share/locale/sv/LC_MESSAGES/glib20.mo +0 -0
  1288. data/vendor/local/share/locale/sv/LC_MESSAGES/gnutls.mo +0 -0
  1289. data/vendor/local/share/locale/ta/LC_MESSAGES/glib-networking.mo +0 -0
  1290. data/vendor/local/share/locale/ta/LC_MESSAGES/glib20.mo +0 -0
  1291. data/vendor/local/share/locale/te/LC_MESSAGES/glib-networking.mo +0 -0
  1292. data/vendor/local/share/locale/te/LC_MESSAGES/glib20.mo +0 -0
  1293. data/vendor/local/share/locale/tg/LC_MESSAGES/glib-networking.mo +0 -0
  1294. data/vendor/local/share/locale/tg/LC_MESSAGES/glib20.mo +0 -0
  1295. data/vendor/local/share/locale/th/LC_MESSAGES/glib-networking.mo +0 -0
  1296. data/vendor/local/share/locale/th/LC_MESSAGES/glib20.mo +0 -0
  1297. data/vendor/local/share/locale/tl/LC_MESSAGES/glib20.mo +0 -0
  1298. data/vendor/local/share/locale/tr/LC_MESSAGES/gettext-runtime.mo +0 -0
  1299. data/vendor/local/share/locale/tr/LC_MESSAGES/glib-networking.mo +0 -0
  1300. data/vendor/local/share/locale/tr/LC_MESSAGES/glib20.mo +0 -0
  1301. data/vendor/local/share/locale/tt/LC_MESSAGES/glib20.mo +0 -0
  1302. data/vendor/local/share/locale/ug/LC_MESSAGES/glib-networking.mo +0 -0
  1303. data/vendor/local/share/locale/ug/LC_MESSAGES/glib20.mo +0 -0
  1304. data/vendor/local/share/locale/uk/LC_MESSAGES/gettext-runtime.mo +0 -0
  1305. data/vendor/local/share/locale/uk/LC_MESSAGES/glib-networking.mo +0 -0
  1306. data/vendor/local/share/locale/uk/LC_MESSAGES/glib20.mo +0 -0
  1307. data/vendor/local/share/locale/uk/LC_MESSAGES/gnutls.mo +0 -0
  1308. data/vendor/local/share/locale/vi/LC_MESSAGES/gettext-runtime.mo +0 -0
  1309. data/vendor/local/share/locale/vi/LC_MESSAGES/glib-networking.mo +0 -0
  1310. data/vendor/local/share/locale/vi/LC_MESSAGES/glib20.mo +0 -0
  1311. data/vendor/local/share/locale/vi/LC_MESSAGES/gnutls.mo +0 -0
  1312. data/vendor/local/share/locale/wa/LC_MESSAGES/glib20.mo +0 -0
  1313. data/vendor/local/share/locale/xh/LC_MESSAGES/glib20.mo +0 -0
  1314. data/vendor/local/share/locale/yi/LC_MESSAGES/glib20.mo +0 -0
  1315. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/gettext-runtime.mo +0 -0
  1316. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/glib-networking.mo +0 -0
  1317. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/glib20.mo +0 -0
  1318. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/gnutls.mo +0 -0
  1319. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/gettext-runtime.mo +0 -0
  1320. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/glib-networking.mo +0 -0
  1321. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/glib20.mo +0 -0
  1322. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/gettext-runtime.mo +0 -0
  1323. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/glib-networking.mo +0 -0
  1324. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/glib20.mo +0 -0
  1325. data/vendor/local/share/man/man1/certtool.1 +741 -0
  1326. data/vendor/local/share/man/man1/envsubst.1 +54 -0
  1327. data/vendor/local/share/man/man1/gettext.1 +69 -0
  1328. data/vendor/local/share/man/man1/gnutls-cli-debug.1 +165 -0
  1329. data/vendor/local/share/man/man1/gnutls-cli.1 +420 -0
  1330. data/vendor/local/share/man/man1/gnutls-serv.1 +453 -0
  1331. data/vendor/local/share/man/man1/iconv.1 +108 -0
  1332. data/vendor/local/share/man/man1/ngettext.1 +68 -0
  1333. data/vendor/local/share/man/man1/ocsptool.1 +335 -0
  1334. data/vendor/local/share/man/man1/p11tool.1 +320 -0
  1335. data/vendor/local/share/man/man1/psktool.1 +129 -0
  1336. data/vendor/local/share/man/man1/srptool.1 +164 -0
  1337. data/vendor/local/share/man/man1/tpmtool.1 +223 -0
  1338. data/vendor/local/share/man/man3/bind_textdomain_codeset.3 +72 -0
  1339. data/vendor/local/share/man/man3/bindtextdomain.3 +69 -0
  1340. data/vendor/local/share/man/man3/dcgettext.3 +1 -0
  1341. data/vendor/local/share/man/man3/dcngettext.3 +1 -0
  1342. data/vendor/local/share/man/man3/dgettext.3 +1 -0
  1343. data/vendor/local/share/man/man3/dngettext.3 +1 -0
  1344. data/vendor/local/share/man/man3/ffi.3 +41 -0
  1345. data/vendor/local/share/man/man3/ffi_call.3 +103 -0
  1346. data/vendor/local/share/man/man3/ffi_prep_cif.3 +68 -0
  1347. data/vendor/local/share/man/man3/ffi_prep_cif_var.3 +73 -0
  1348. data/vendor/local/share/man/man3/gettext.3 +99 -0
  1349. data/vendor/local/share/man/man3/gnutls_alert_get.3 +40 -0
  1350. data/vendor/local/share/man/man3/gnutls_alert_get_name.3 +36 -0
  1351. data/vendor/local/share/man/man3/gnutls_alert_get_strname.3 +37 -0
  1352. data/vendor/local/share/man/man3/gnutls_alert_send.3 +47 -0
  1353. data/vendor/local/share/man/man3/gnutls_alert_send_appropriate.3 +46 -0
  1354. data/vendor/local/share/man/man3/gnutls_alpn_get_selected_protocol.3 +42 -0
  1355. data/vendor/local/share/man/man3/gnutls_alpn_set_protocols.3 +48 -0
  1356. data/vendor/local/share/man/man3/gnutls_anon_allocate_client_credentials.3 +36 -0
  1357. data/vendor/local/share/man/man3/gnutls_anon_allocate_server_credentials.3 +36 -0
  1358. data/vendor/local/share/man/man3/gnutls_anon_free_client_credentials.3 +34 -0
  1359. data/vendor/local/share/man/man3/gnutls_anon_free_server_credentials.3 +34 -0
  1360. data/vendor/local/share/man/man3/gnutls_anon_set_params_function.3 +37 -0
  1361. data/vendor/local/share/man/man3/gnutls_anon_set_server_dh_params.3 +37 -0
  1362. data/vendor/local/share/man/man3/gnutls_anon_set_server_params_function.3 +37 -0
  1363. data/vendor/local/share/man/man3/gnutls_auth_client_get_type.3 +38 -0
  1364. data/vendor/local/share/man/man3/gnutls_auth_get_type.3 +42 -0
  1365. data/vendor/local/share/man/man3/gnutls_auth_server_get_type.3 +38 -0
  1366. data/vendor/local/share/man/man3/gnutls_bye.3 +60 -0
  1367. data/vendor/local/share/man/man3/gnutls_certificate_activation_time_peers.3 +38 -0
  1368. data/vendor/local/share/man/man3/gnutls_certificate_allocate_credentials.3 +36 -0
  1369. data/vendor/local/share/man/man3/gnutls_certificate_client_get_request_status.3 +37 -0
  1370. data/vendor/local/share/man/man3/gnutls_certificate_client_set_retrieve_function.3 +62 -0
  1371. data/vendor/local/share/man/man3/gnutls_certificate_expiration_time_peers.3 +37 -0
  1372. data/vendor/local/share/man/man3/gnutls_certificate_free_ca_names.3 +41 -0
  1373. data/vendor/local/share/man/man3/gnutls_certificate_free_cas.3 +36 -0
  1374. data/vendor/local/share/man/man3/gnutls_certificate_free_credentials.3 +38 -0
  1375. data/vendor/local/share/man/man3/gnutls_certificate_free_crls.3 +34 -0
  1376. data/vendor/local/share/man/man3/gnutls_certificate_free_keys.3 +35 -0
  1377. data/vendor/local/share/man/man3/gnutls_certificate_get_crt_raw.3 +48 -0
  1378. data/vendor/local/share/man/man3/gnutls_certificate_get_issuer.3 +44 -0
  1379. data/vendor/local/share/man/man3/gnutls_certificate_get_ours.3 +39 -0
  1380. data/vendor/local/share/man/man3/gnutls_certificate_get_peers.3 +46 -0
  1381. data/vendor/local/share/man/man3/gnutls_certificate_get_peers_subkey_id.3 +41 -0
  1382. data/vendor/local/share/man/man3/gnutls_certificate_send_x509_rdn_sequence.3 +42 -0
  1383. data/vendor/local/share/man/man3/gnutls_certificate_server_set_request.3 +39 -0
  1384. data/vendor/local/share/man/man3/gnutls_certificate_server_set_retrieve_function.3 +50 -0
  1385. data/vendor/local/share/man/man3/gnutls_certificate_set_dh_params.3 +39 -0
  1386. data/vendor/local/share/man/man3/gnutls_certificate_set_key.3 +56 -0
  1387. data/vendor/local/share/man/man3/gnutls_certificate_set_ocsp_status_request_file.3 +47 -0
  1388. data/vendor/local/share/man/man3/gnutls_certificate_set_ocsp_status_request_function.3 +56 -0
  1389. data/vendor/local/share/man/man3/gnutls_certificate_set_openpgp_key.3 +47 -0
  1390. data/vendor/local/share/man/man3/gnutls_certificate_set_openpgp_key_file.3 +43 -0
  1391. data/vendor/local/share/man/man3/gnutls_certificate_set_openpgp_key_file2.3 +51 -0
  1392. data/vendor/local/share/man/man3/gnutls_certificate_set_openpgp_key_mem.3 +43 -0
  1393. data/vendor/local/share/man/man3/gnutls_certificate_set_openpgp_key_mem2.3 +51 -0
  1394. data/vendor/local/share/man/man3/gnutls_certificate_set_openpgp_keyring_file.3 +43 -0
  1395. data/vendor/local/share/man/man3/gnutls_certificate_set_openpgp_keyring_mem.3 +45 -0
  1396. data/vendor/local/share/man/man3/gnutls_certificate_set_params_function.3 +37 -0
  1397. data/vendor/local/share/man/man3/gnutls_certificate_set_pin_function.3 +44 -0
  1398. data/vendor/local/share/man/man3/gnutls_certificate_set_retrieve_function.3 +65 -0
  1399. data/vendor/local/share/man/man3/gnutls_certificate_set_retrieve_function2.3 +68 -0
  1400. data/vendor/local/share/man/man3/gnutls_certificate_set_rsa_export_params.3 +37 -0
  1401. data/vendor/local/share/man/man3/gnutls_certificate_set_trust_list.3 +45 -0
  1402. data/vendor/local/share/man/man3/gnutls_certificate_set_verify_flags.3 +37 -0
  1403. data/vendor/local/share/man/man3/gnutls_certificate_set_verify_function.3 +51 -0
  1404. data/vendor/local/share/man/man3/gnutls_certificate_set_verify_limits.3 +40 -0
  1405. data/vendor/local/share/man/man3/gnutls_certificate_set_x509_crl.3 +45 -0
  1406. data/vendor/local/share/man/man3/gnutls_certificate_set_x509_crl_file.3 +43 -0
  1407. data/vendor/local/share/man/man3/gnutls_certificate_set_x509_crl_mem.3 +43 -0
  1408. data/vendor/local/share/man/man3/gnutls_certificate_set_x509_key.3 +51 -0
  1409. data/vendor/local/share/man/man3/gnutls_certificate_set_x509_key_file.3 +58 -0
  1410. data/vendor/local/share/man/man3/gnutls_certificate_set_x509_key_file2.3 +62 -0
  1411. data/vendor/local/share/man/man3/gnutls_certificate_set_x509_key_mem.3 +54 -0
  1412. data/vendor/local/share/man/man3/gnutls_certificate_set_x509_key_mem2.3 +58 -0
  1413. data/vendor/local/share/man/man3/gnutls_certificate_set_x509_simple_pkcs12_file.3 +63 -0
  1414. data/vendor/local/share/man/man3/gnutls_certificate_set_x509_simple_pkcs12_mem.3 +64 -0
  1415. data/vendor/local/share/man/man3/gnutls_certificate_set_x509_system_trust.3 +42 -0
  1416. data/vendor/local/share/man/man3/gnutls_certificate_set_x509_trust.3 +50 -0
  1417. data/vendor/local/share/man/man3/gnutls_certificate_set_x509_trust_file.3 +52 -0
  1418. data/vendor/local/share/man/man3/gnutls_certificate_set_x509_trust_mem.3 +48 -0
  1419. data/vendor/local/share/man/man3/gnutls_certificate_type_get.3 +37 -0
  1420. data/vendor/local/share/man/man3/gnutls_certificate_type_get_id.3 +36 -0
  1421. data/vendor/local/share/man/man3/gnutls_certificate_type_get_name.3 +36 -0
  1422. data/vendor/local/share/man/man3/gnutls_certificate_type_list.3 +36 -0
  1423. data/vendor/local/share/man/man3/gnutls_certificate_type_set_priority.3 +42 -0
  1424. data/vendor/local/share/man/man3/gnutls_certificate_verification_status_print.3 +47 -0
  1425. data/vendor/local/share/man/man3/gnutls_certificate_verify_peers2.3 +51 -0
  1426. data/vendor/local/share/man/man3/gnutls_certificate_verify_peers3.3 +55 -0
  1427. data/vendor/local/share/man/man3/gnutls_check_version.3 +41 -0
  1428. data/vendor/local/share/man/man3/gnutls_cipher_add_auth.3 +44 -0
  1429. data/vendor/local/share/man/man3/gnutls_cipher_decrypt.3 +45 -0
  1430. data/vendor/local/share/man/man3/gnutls_cipher_decrypt2.3 +49 -0
  1431. data/vendor/local/share/man/man3/gnutls_cipher_deinit.3 +36 -0
  1432. data/vendor/local/share/man/man3/gnutls_cipher_encrypt.3 +42 -0
  1433. data/vendor/local/share/man/man3/gnutls_cipher_encrypt2.3 +46 -0
  1434. data/vendor/local/share/man/man3/gnutls_cipher_get.3 +36 -0
  1435. data/vendor/local/share/man/man3/gnutls_cipher_get_block_size.3 +35 -0
  1436. data/vendor/local/share/man/man3/gnutls_cipher_get_id.3 +36 -0
  1437. data/vendor/local/share/man/man3/gnutls_cipher_get_iv_size.3 +37 -0
  1438. data/vendor/local/share/man/man3/gnutls_cipher_get_key_size.3 +36 -0
  1439. data/vendor/local/share/man/man3/gnutls_cipher_get_name.3 +36 -0
  1440. data/vendor/local/share/man/man3/gnutls_cipher_get_tag_size.3 +35 -0
  1441. data/vendor/local/share/man/man3/gnutls_cipher_init.3 +46 -0
  1442. data/vendor/local/share/man/man3/gnutls_cipher_list.3 +41 -0
  1443. data/vendor/local/share/man/man3/gnutls_cipher_set_iv.3 +40 -0
  1444. data/vendor/local/share/man/man3/gnutls_cipher_set_priority.3 +41 -0
  1445. data/vendor/local/share/man/man3/gnutls_cipher_suite_get_name.3 +41 -0
  1446. data/vendor/local/share/man/man3/gnutls_cipher_suite_info.3 +50 -0
  1447. data/vendor/local/share/man/man3/gnutls_cipher_tag.3 +43 -0
  1448. data/vendor/local/share/man/man3/gnutls_compression_get.3 +36 -0
  1449. data/vendor/local/share/man/man3/gnutls_compression_get_id.3 +36 -0
  1450. data/vendor/local/share/man/man3/gnutls_compression_get_name.3 +36 -0
  1451. data/vendor/local/share/man/man3/gnutls_compression_list.3 +36 -0
  1452. data/vendor/local/share/man/man3/gnutls_compression_set_priority.3 +46 -0
  1453. data/vendor/local/share/man/man3/gnutls_credentials_clear.3 +33 -0
  1454. data/vendor/local/share/man/man3/gnutls_credentials_set.3 +59 -0
  1455. data/vendor/local/share/man/man3/gnutls_db_check_entry.3 +38 -0
  1456. data/vendor/local/share/man/man3/gnutls_db_check_entry_time.3 +36 -0
  1457. data/vendor/local/share/man/man3/gnutls_db_get_default_cache_expiration.3 +35 -0
  1458. data/vendor/local/share/man/man3/gnutls_db_get_ptr.3 +36 -0
  1459. data/vendor/local/share/man/man3/gnutls_db_remove_session.3 +39 -0
  1460. data/vendor/local/share/man/man3/gnutls_db_set_cache_expiration.3 +36 -0
  1461. data/vendor/local/share/man/man3/gnutls_db_set_ptr.3 +36 -0
  1462. data/vendor/local/share/man/man3/gnutls_db_set_remove_function.3 +39 -0
  1463. data/vendor/local/share/man/man3/gnutls_db_set_retrieve_function.3 +44 -0
  1464. data/vendor/local/share/man/man3/gnutls_db_set_store_function.3 +39 -0
  1465. data/vendor/local/share/man/man3/gnutls_deinit.3 +35 -0
  1466. data/vendor/local/share/man/man3/gnutls_dh_get_group.3 +44 -0
  1467. data/vendor/local/share/man/man3/gnutls_dh_get_peers_public_bits.3 +37 -0
  1468. data/vendor/local/share/man/man3/gnutls_dh_get_prime_bits.3 +41 -0
  1469. data/vendor/local/share/man/man3/gnutls_dh_get_pubkey.3 +41 -0
  1470. data/vendor/local/share/man/man3/gnutls_dh_get_secret_bits.3 +38 -0
  1471. data/vendor/local/share/man/man3/gnutls_dh_params_cpy.3 +39 -0
  1472. data/vendor/local/share/man/man3/gnutls_dh_params_deinit.3 +33 -0
  1473. data/vendor/local/share/man/man3/gnutls_dh_params_export2_pkcs3.3 +47 -0
  1474. data/vendor/local/share/man/man3/gnutls_dh_params_export_pkcs3.3 +48 -0
  1475. data/vendor/local/share/man/man3/gnutls_dh_params_export_raw.3 +45 -0
  1476. data/vendor/local/share/man/man3/gnutls_dh_params_generate2.3 +47 -0
  1477. data/vendor/local/share/man/man3/gnutls_dh_params_import_pkcs3.3 +44 -0
  1478. data/vendor/local/share/man/man3/gnutls_dh_params_import_raw.3 +42 -0
  1479. data/vendor/local/share/man/man3/gnutls_dh_params_init.3 +36 -0
  1480. data/vendor/local/share/man/man3/gnutls_dh_set_prime_bits.3 +52 -0
  1481. data/vendor/local/share/man/man3/gnutls_digest_get_id.3 +37 -0
  1482. data/vendor/local/share/man/man3/gnutls_digest_get_name.3 +36 -0
  1483. data/vendor/local/share/man/man3/gnutls_digest_list.3 +38 -0
  1484. data/vendor/local/share/man/man3/gnutls_dtls_cookie_send.3 +56 -0
  1485. data/vendor/local/share/man/man3/gnutls_dtls_cookie_verify.3 +52 -0
  1486. data/vendor/local/share/man/man3/gnutls_dtls_get_data_mtu.3 +39 -0
  1487. data/vendor/local/share/man/man3/gnutls_dtls_get_mtu.3 +40 -0
  1488. data/vendor/local/share/man/man3/gnutls_dtls_get_timeout.3 +41 -0
  1489. data/vendor/local/share/man/man3/gnutls_dtls_prestate_set.3 +42 -0
  1490. data/vendor/local/share/man/man3/gnutls_dtls_set_data_mtu.3 +48 -0
  1491. data/vendor/local/share/man/man3/gnutls_dtls_set_mtu.3 +41 -0
  1492. data/vendor/local/share/man/man3/gnutls_dtls_set_timeouts.3 +51 -0
  1493. data/vendor/local/share/man/man3/gnutls_ecc_curve_get.3 +39 -0
  1494. data/vendor/local/share/man/man3/gnutls_ecc_curve_get_name.3 +38 -0
  1495. data/vendor/local/share/man/man3/gnutls_ecc_curve_get_size.3 +37 -0
  1496. data/vendor/local/share/man/man3/gnutls_ecc_curve_list.3 +38 -0
  1497. data/vendor/local/share/man/man3/gnutls_error_is_fatal.3 +46 -0
  1498. data/vendor/local/share/man/man3/gnutls_error_to_alert.3 +44 -0
  1499. data/vendor/local/share/man/man3/gnutls_est_record_overhead_size.3 +49 -0
  1500. data/vendor/local/share/man/man3/gnutls_fingerprint.3 +50 -0
  1501. data/vendor/local/share/man/man3/gnutls_global_deinit.3 +37 -0
  1502. data/vendor/local/share/man/man3/gnutls_global_init.3 +54 -0
  1503. data/vendor/local/share/man/man3/gnutls_global_set_audit_log_function.3 +42 -0
  1504. data/vendor/local/share/man/man3/gnutls_global_set_log_function.3 +39 -0
  1505. data/vendor/local/share/man/man3/gnutls_global_set_log_level.3 +38 -0
  1506. data/vendor/local/share/man/man3/gnutls_global_set_mem_functions.3 +48 -0
  1507. data/vendor/local/share/man/man3/gnutls_global_set_mutex.3 +47 -0
  1508. data/vendor/local/share/man/man3/gnutls_global_set_time_function.3 +37 -0
  1509. data/vendor/local/share/man/man3/gnutls_handshake.3 +61 -0
  1510. data/vendor/local/share/man/man3/gnutls_handshake_description_get_name.3 +36 -0
  1511. data/vendor/local/share/man/man3/gnutls_handshake_get_last_in.3 +41 -0
  1512. data/vendor/local/share/man/man3/gnutls_handshake_get_last_out.3 +41 -0
  1513. data/vendor/local/share/man/man3/gnutls_handshake_set_hook_function.3 +55 -0
  1514. data/vendor/local/share/man/man3/gnutls_handshake_set_max_packet_length.3 +42 -0
  1515. data/vendor/local/share/man/man3/gnutls_handshake_set_post_client_hello_function.3 +49 -0
  1516. data/vendor/local/share/man/man3/gnutls_handshake_set_private_extensions.3 +42 -0
  1517. data/vendor/local/share/man/man3/gnutls_handshake_set_random.3 +46 -0
  1518. data/vendor/local/share/man/man3/gnutls_handshake_set_timeout.3 +41 -0
  1519. data/vendor/local/share/man/man3/gnutls_hash.3 +42 -0
  1520. data/vendor/local/share/man/man3/gnutls_hash_deinit.3 +38 -0
  1521. data/vendor/local/share/man/man3/gnutls_hash_fast.3 +44 -0
  1522. data/vendor/local/share/man/man3/gnutls_hash_get_len.3 +38 -0
  1523. data/vendor/local/share/man/man3/gnutls_hash_init.3 +42 -0
  1524. data/vendor/local/share/man/man3/gnutls_hash_output.3 +38 -0
  1525. data/vendor/local/share/man/man3/gnutls_heartbeat_allowed.3 +40 -0
  1526. data/vendor/local/share/man/man3/gnutls_heartbeat_enable.3 +42 -0
  1527. data/vendor/local/share/man/man3/gnutls_heartbeat_get_timeout.3 +41 -0
  1528. data/vendor/local/share/man/man3/gnutls_heartbeat_ping.3 +48 -0
  1529. data/vendor/local/share/man/man3/gnutls_heartbeat_pong.3 +39 -0
  1530. data/vendor/local/share/man/man3/gnutls_heartbeat_set_timeouts.3 +46 -0
  1531. data/vendor/local/share/man/man3/gnutls_hex2bin.3 +44 -0
  1532. data/vendor/local/share/man/man3/gnutls_hex_decode.3 +43 -0
  1533. data/vendor/local/share/man/man3/gnutls_hex_encode.3 +43 -0
  1534. data/vendor/local/share/man/man3/gnutls_hmac.3 +42 -0
  1535. data/vendor/local/share/man/man3/gnutls_hmac_deinit.3 +38 -0
  1536. data/vendor/local/share/man/man3/gnutls_hmac_fast.3 +48 -0
  1537. data/vendor/local/share/man/man3/gnutls_hmac_get_len.3 +38 -0
  1538. data/vendor/local/share/man/man3/gnutls_hmac_init.3 +49 -0
  1539. data/vendor/local/share/man/man3/gnutls_hmac_output.3 +38 -0
  1540. data/vendor/local/share/man/man3/gnutls_hmac_set_nonce.3 +39 -0
  1541. data/vendor/local/share/man/man3/gnutls_init.3 +54 -0
  1542. data/vendor/local/share/man/man3/gnutls_key_generate.3 +41 -0
  1543. data/vendor/local/share/man/man3/gnutls_kx_get.3 +36 -0
  1544. data/vendor/local/share/man/man3/gnutls_kx_get_id.3 +37 -0
  1545. data/vendor/local/share/man/man3/gnutls_kx_get_name.3 +36 -0
  1546. data/vendor/local/share/man/man3/gnutls_kx_list.3 +38 -0
  1547. data/vendor/local/share/man/man3/gnutls_kx_set_priority.3 +42 -0
  1548. data/vendor/local/share/man/man3/gnutls_load_file.3 +42 -0
  1549. data/vendor/local/share/man/man3/gnutls_mac_get.3 +36 -0
  1550. data/vendor/local/share/man/man3/gnutls_mac_get_id.3 +37 -0
  1551. data/vendor/local/share/man/man3/gnutls_mac_get_key_size.3 +36 -0
  1552. data/vendor/local/share/man/man3/gnutls_mac_get_name.3 +36 -0
  1553. data/vendor/local/share/man/man3/gnutls_mac_get_nonce_size.3 +37 -0
  1554. data/vendor/local/share/man/man3/gnutls_mac_list.3 +38 -0
  1555. data/vendor/local/share/man/man3/gnutls_mac_set_priority.3 +42 -0
  1556. data/vendor/local/share/man/man3/gnutls_ocsp_req_add_cert.3 +46 -0
  1557. data/vendor/local/share/man/man3/gnutls_ocsp_req_add_cert_id.3 +57 -0
  1558. data/vendor/local/share/man/man3/gnutls_ocsp_req_deinit.3 +33 -0
  1559. data/vendor/local/share/man/man3/gnutls_ocsp_req_export.3 +38 -0
  1560. data/vendor/local/share/man/man3/gnutls_ocsp_req_get_cert_id.3 +61 -0
  1561. data/vendor/local/share/man/man3/gnutls_ocsp_req_get_extension.3 +54 -0
  1562. data/vendor/local/share/man/man3/gnutls_ocsp_req_get_nonce.3 +43 -0
  1563. data/vendor/local/share/man/man3/gnutls_ocsp_req_get_version.3 +36 -0
  1564. data/vendor/local/share/man/man3/gnutls_ocsp_req_import.3 +40 -0
  1565. data/vendor/local/share/man/man3/gnutls_ocsp_req_init.3 +36 -0
  1566. data/vendor/local/share/man/man3/gnutls_ocsp_req_print.3 +46 -0
  1567. data/vendor/local/share/man/man3/gnutls_ocsp_req_randomize_nonce.3 +37 -0
  1568. data/vendor/local/share/man/man3/gnutls_ocsp_req_set_extension.3 +44 -0
  1569. data/vendor/local/share/man/man3/gnutls_ocsp_req_set_nonce.3 +42 -0
  1570. data/vendor/local/share/man/man3/gnutls_ocsp_resp_check_crt.3 +43 -0
  1571. data/vendor/local/share/man/man3/gnutls_ocsp_resp_deinit.3 +33 -0
  1572. data/vendor/local/share/man/man3/gnutls_ocsp_resp_export.3 +38 -0
  1573. data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_certs.3 +51 -0
  1574. data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_extension.3 +54 -0
  1575. data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_nonce.3 +44 -0
  1576. data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_produced.3 +36 -0
  1577. data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_responder.3 +44 -0
  1578. data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_response.3 +49 -0
  1579. data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_signature.3 +38 -0
  1580. data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_signature_algorithm.3 +38 -0
  1581. data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_single.3 +64 -0
  1582. data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_status.3 +37 -0
  1583. data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_version.3 +37 -0
  1584. data/vendor/local/share/man/man3/gnutls_ocsp_resp_import.3 +40 -0
  1585. data/vendor/local/share/man/man3/gnutls_ocsp_resp_init.3 +36 -0
  1586. data/vendor/local/share/man/man3/gnutls_ocsp_resp_print.3 +46 -0
  1587. data/vendor/local/share/man/man3/gnutls_ocsp_resp_verify.3 +59 -0
  1588. data/vendor/local/share/man/man3/gnutls_ocsp_resp_verify_direct.3 +53 -0
  1589. data/vendor/local/share/man/man3/gnutls_ocsp_status_request_enable_client.3 +47 -0
  1590. data/vendor/local/share/man/man3/gnutls_ocsp_status_request_get.3 +43 -0
  1591. data/vendor/local/share/man/man3/gnutls_ocsp_status_request_is_checked.3 +42 -0
  1592. data/vendor/local/share/man/man3/gnutls_openpgp_crt_check_hostname.3 +39 -0
  1593. data/vendor/local/share/man/man3/gnutls_openpgp_crt_deinit.3 +33 -0
  1594. data/vendor/local/share/man/man3/gnutls_openpgp_crt_export.3 +44 -0
  1595. data/vendor/local/share/man/man3/gnutls_openpgp_crt_export2.3 +42 -0
  1596. data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_auth_subkey.3 +42 -0
  1597. data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_creation_time.3 +35 -0
  1598. data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_expiration_time.3 +36 -0
  1599. data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_fingerprint.3 +40 -0
  1600. data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_key_id.3 +39 -0
  1601. data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_key_usage.3 +39 -0
  1602. data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_name.3 +45 -0
  1603. data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_pk_algorithm.3 +43 -0
  1604. data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_pk_dsa_raw.3 +47 -0
  1605. data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_pk_rsa_raw.3 +43 -0
  1606. data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_preferred_key_id.3 +38 -0
  1607. data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_revoked_status.3 +38 -0
  1608. data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_count.3 +38 -0
  1609. data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_creation_time.3 +39 -0
  1610. data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_expiration_time.3 +40 -0
  1611. data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_fingerprint.3 +44 -0
  1612. data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_id.3 +39 -0
  1613. data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_idx.3 +39 -0
  1614. data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_pk_algorithm.3 +47 -0
  1615. data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_pk_dsa_raw.3 +49 -0
  1616. data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_pk_rsa_raw.3 +45 -0
  1617. data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_revoked_status.3 +40 -0
  1618. data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_usage.3 +45 -0
  1619. data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_version.3 +35 -0
  1620. data/vendor/local/share/man/man3/gnutls_openpgp_crt_import.3 +41 -0
  1621. data/vendor/local/share/man/man3/gnutls_openpgp_crt_init.3 +35 -0
  1622. data/vendor/local/share/man/man3/gnutls_openpgp_crt_print.3 +44 -0
  1623. data/vendor/local/share/man/man3/gnutls_openpgp_crt_set_preferred_key_id.3 +42 -0
  1624. data/vendor/local/share/man/man3/gnutls_openpgp_crt_verify_ring.3 +50 -0
  1625. data/vendor/local/share/man/man3/gnutls_openpgp_crt_verify_self.3 +41 -0
  1626. data/vendor/local/share/man/man3/gnutls_openpgp_keyring_check_id.3 +40 -0
  1627. data/vendor/local/share/man/man3/gnutls_openpgp_keyring_deinit.3 +33 -0
  1628. data/vendor/local/share/man/man3/gnutls_openpgp_keyring_get_crt.3 +42 -0
  1629. data/vendor/local/share/man/man3/gnutls_openpgp_keyring_get_crt_count.3 +36 -0
  1630. data/vendor/local/share/man/man3/gnutls_openpgp_keyring_import.3 +41 -0
  1631. data/vendor/local/share/man/man3/gnutls_openpgp_keyring_init.3 +35 -0
  1632. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_deinit.3 +33 -0
  1633. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_export.3 +50 -0
  1634. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_export2.3 +46 -0
  1635. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_export_dsa_raw.3 +49 -0
  1636. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_export_rsa_raw.3 +51 -0
  1637. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_export_subkey_dsa_raw.3 +51 -0
  1638. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_export_subkey_rsa_raw.3 +53 -0
  1639. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_fingerprint.3 +42 -0
  1640. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_key_id.3 +39 -0
  1641. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_pk_algorithm.3 +45 -0
  1642. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_preferred_key_id.3 +38 -0
  1643. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_revoked_status.3 +38 -0
  1644. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_subkey_count.3 +38 -0
  1645. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_subkey_creation_time.3 +39 -0
  1646. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_subkey_expiration_time.3 +40 -0
  1647. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_subkey_fingerprint.3 +44 -0
  1648. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_subkey_id.3 +41 -0
  1649. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_subkey_idx.3 +39 -0
  1650. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_subkey_pk_algorithm.3 +47 -0
  1651. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_subkey_revoked_status.3 +40 -0
  1652. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_import.3 +45 -0
  1653. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_init.3 +35 -0
  1654. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_sec_param.3 +39 -0
  1655. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_set_preferred_key_id.3 +42 -0
  1656. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_sign_hash.3 +44 -0
  1657. data/vendor/local/share/man/man3/gnutls_openpgp_send_cert.3 +38 -0
  1658. data/vendor/local/share/man/man3/gnutls_openpgp_set_recv_key_function.3 +39 -0
  1659. data/vendor/local/share/man/man3/gnutls_pcert_deinit.3 +35 -0
  1660. data/vendor/local/share/man/man3/gnutls_pcert_import_openpgp.3 +44 -0
  1661. data/vendor/local/share/man/man3/gnutls_pcert_import_openpgp_raw.3 +48 -0
  1662. data/vendor/local/share/man/man3/gnutls_pcert_import_x509.3 +44 -0
  1663. data/vendor/local/share/man/man3/gnutls_pcert_import_x509_raw.3 +46 -0
  1664. data/vendor/local/share/man/man3/gnutls_pcert_list_import_x509_raw.3 +50 -0
  1665. data/vendor/local/share/man/man3/gnutls_pem_base64_decode.3 +46 -0
  1666. data/vendor/local/share/man/man3/gnutls_pem_base64_decode_alloc.3 +46 -0
  1667. data/vendor/local/share/man/man3/gnutls_pem_base64_encode.3 +47 -0
  1668. data/vendor/local/share/man/man3/gnutls_pem_base64_encode_alloc.3 +45 -0
  1669. data/vendor/local/share/man/man3/gnutls_perror.3 +34 -0
  1670. data/vendor/local/share/man/man3/gnutls_pk_algorithm_get_name.3 +36 -0
  1671. data/vendor/local/share/man/man3/gnutls_pk_bits_to_sec_param.3 +41 -0
  1672. data/vendor/local/share/man/man3/gnutls_pk_get_id.3 +40 -0
  1673. data/vendor/local/share/man/man3/gnutls_pk_get_name.3 +38 -0
  1674. data/vendor/local/share/man/man3/gnutls_pk_list.3 +40 -0
  1675. data/vendor/local/share/man/man3/gnutls_pk_to_sign.3 +38 -0
  1676. data/vendor/local/share/man/man3/gnutls_pkcs11_add_provider.3 +42 -0
  1677. data/vendor/local/share/man/man3/gnutls_pkcs11_copy_secret_key.3 +47 -0
  1678. data/vendor/local/share/man/man3/gnutls_pkcs11_copy_x509_crt.3 +45 -0
  1679. data/vendor/local/share/man/man3/gnutls_pkcs11_copy_x509_privkey.3 +48 -0
  1680. data/vendor/local/share/man/man3/gnutls_pkcs11_deinit.3 +35 -0
  1681. data/vendor/local/share/man/man3/gnutls_pkcs11_delete_url.3 +41 -0
  1682. data/vendor/local/share/man/man3/gnutls_pkcs11_get_pin_function.3 +38 -0
  1683. data/vendor/local/share/man/man3/gnutls_pkcs11_get_raw_issuer.3 +49 -0
  1684. data/vendor/local/share/man/man3/gnutls_pkcs11_init.3 +48 -0
  1685. data/vendor/local/share/man/man3/gnutls_pkcs11_obj_deinit.3 +35 -0
  1686. data/vendor/local/share/man/man3/gnutls_pkcs11_obj_export.3 +49 -0
  1687. data/vendor/local/share/man/man3/gnutls_pkcs11_obj_export2.3 +44 -0
  1688. data/vendor/local/share/man/man3/gnutls_pkcs11_obj_export3.3 +46 -0
  1689. data/vendor/local/share/man/man3/gnutls_pkcs11_obj_export_url.3 +42 -0
  1690. data/vendor/local/share/man/man3/gnutls_pkcs11_obj_get_info.3 +46 -0
  1691. data/vendor/local/share/man/man3/gnutls_pkcs11_obj_get_type.3 +38 -0
  1692. data/vendor/local/share/man/man3/gnutls_pkcs11_obj_import_url.3 +45 -0
  1693. data/vendor/local/share/man/man3/gnutls_pkcs11_obj_init.3 +38 -0
  1694. data/vendor/local/share/man/man3/gnutls_pkcs11_obj_list_import_url.3 +47 -0
  1695. data/vendor/local/share/man/man3/gnutls_pkcs11_obj_list_import_url2.3 +48 -0
  1696. data/vendor/local/share/man/man3/gnutls_pkcs11_obj_set_pin_function.3 +41 -0
  1697. data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_deinit.3 +33 -0
  1698. data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_export_url.3 +40 -0
  1699. data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_generate.3 +48 -0
  1700. data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_generate2.3 +58 -0
  1701. data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_get_info.3 +44 -0
  1702. data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_get_pk_algorithm.3 +39 -0
  1703. data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_import_url.3 +43 -0
  1704. data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_init.3 +36 -0
  1705. data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_set_pin_function.3 +41 -0
  1706. data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_status.3 +38 -0
  1707. data/vendor/local/share/man/man3/gnutls_pkcs11_reinit.3 +40 -0
  1708. data/vendor/local/share/man/man3/gnutls_pkcs11_set_pin_function.3 +39 -0
  1709. data/vendor/local/share/man/man3/gnutls_pkcs11_set_token_function.3 +38 -0
  1710. data/vendor/local/share/man/man3/gnutls_pkcs11_token_get_flags.3 +41 -0
  1711. data/vendor/local/share/man/man3/gnutls_pkcs11_token_get_info.3 +45 -0
  1712. data/vendor/local/share/man/man3/gnutls_pkcs11_token_get_mechanism.3 +43 -0
  1713. data/vendor/local/share/man/man3/gnutls_pkcs11_token_get_random.3 +42 -0
  1714. data/vendor/local/share/man/man3/gnutls_pkcs11_token_get_url.3 +44 -0
  1715. data/vendor/local/share/man/man3/gnutls_pkcs11_token_init.3 +42 -0
  1716. data/vendor/local/share/man/man3/gnutls_pkcs11_token_set_pin.3 +44 -0
  1717. data/vendor/local/share/man/man3/gnutls_pkcs11_type_get_name.3 +40 -0
  1718. data/vendor/local/share/man/man3/gnutls_pkcs12_bag_decrypt.3 +39 -0
  1719. data/vendor/local/share/man/man3/gnutls_pkcs12_bag_deinit.3 +33 -0
  1720. data/vendor/local/share/man/man3/gnutls_pkcs12_bag_encrypt.3 +40 -0
  1721. data/vendor/local/share/man/man3/gnutls_pkcs12_bag_get_count.3 +36 -0
  1722. data/vendor/local/share/man/man3/gnutls_pkcs12_bag_get_data.3 +42 -0
  1723. data/vendor/local/share/man/man3/gnutls_pkcs12_bag_get_friendly_name.3 +42 -0
  1724. data/vendor/local/share/man/man3/gnutls_pkcs12_bag_get_key_id.3 +42 -0
  1725. data/vendor/local/share/man/man3/gnutls_pkcs12_bag_get_type.3 +37 -0
  1726. data/vendor/local/share/man/man3/gnutls_pkcs12_bag_init.3 +38 -0
  1727. data/vendor/local/share/man/man3/gnutls_pkcs12_bag_set_crl.3 +39 -0
  1728. data/vendor/local/share/man/man3/gnutls_pkcs12_bag_set_crt.3 +39 -0
  1729. data/vendor/local/share/man/man3/gnutls_pkcs12_bag_set_data.3 +41 -0
  1730. data/vendor/local/share/man/man3/gnutls_pkcs12_bag_set_friendly_name.3 +43 -0
  1731. data/vendor/local/share/man/man3/gnutls_pkcs12_bag_set_key_id.3 +43 -0
  1732. data/vendor/local/share/man/man3/gnutls_pkcs12_deinit.3 +33 -0
  1733. data/vendor/local/share/man/man3/gnutls_pkcs12_export.3 +50 -0
  1734. data/vendor/local/share/man/man3/gnutls_pkcs12_export2.3 +47 -0
  1735. data/vendor/local/share/man/man3/gnutls_pkcs12_generate_mac.3 +38 -0
  1736. data/vendor/local/share/man/man3/gnutls_pkcs12_get_bag.3 +43 -0
  1737. data/vendor/local/share/man/man3/gnutls_pkcs12_import.3 +45 -0
  1738. data/vendor/local/share/man/man3/gnutls_pkcs12_init.3 +38 -0
  1739. data/vendor/local/share/man/man3/gnutls_pkcs12_set_bag.3 +38 -0
  1740. data/vendor/local/share/man/man3/gnutls_pkcs12_simple_parse.3 +84 -0
  1741. data/vendor/local/share/man/man3/gnutls_pkcs12_verify_mac.3 +38 -0
  1742. data/vendor/local/share/man/man3/gnutls_pkcs7_deinit.3 +33 -0
  1743. data/vendor/local/share/man/man3/gnutls_pkcs7_delete_crl.3 +39 -0
  1744. data/vendor/local/share/man/man3/gnutls_pkcs7_delete_crt.3 +39 -0
  1745. data/vendor/local/share/man/man3/gnutls_pkcs7_export.3 +50 -0
  1746. data/vendor/local/share/man/man3/gnutls_pkcs7_export2.3 +47 -0
  1747. data/vendor/local/share/man/man3/gnutls_pkcs7_get_crl_count.3 +37 -0
  1748. data/vendor/local/share/man/man3/gnutls_pkcs7_get_crl_raw.3 +45 -0
  1749. data/vendor/local/share/man/man3/gnutls_pkcs7_get_crt_count.3 +37 -0
  1750. data/vendor/local/share/man/man3/gnutls_pkcs7_get_crt_raw.3 +49 -0
  1751. data/vendor/local/share/man/man3/gnutls_pkcs7_import.3 +44 -0
  1752. data/vendor/local/share/man/man3/gnutls_pkcs7_init.3 +38 -0
  1753. data/vendor/local/share/man/man3/gnutls_pkcs7_set_crl.3 +39 -0
  1754. data/vendor/local/share/man/man3/gnutls_pkcs7_set_crl_raw.3 +38 -0
  1755. data/vendor/local/share/man/man3/gnutls_pkcs7_set_crt.3 +40 -0
  1756. data/vendor/local/share/man/man3/gnutls_pkcs7_set_crt_raw.3 +39 -0
  1757. data/vendor/local/share/man/man3/gnutls_prf.3 +64 -0
  1758. data/vendor/local/share/man/man3/gnutls_prf_raw.3 +62 -0
  1759. data/vendor/local/share/man/man3/gnutls_priority_certificate_type_list.3 +40 -0
  1760. data/vendor/local/share/man/man3/gnutls_priority_cipher_list.3 +40 -0
  1761. data/vendor/local/share/man/man3/gnutls_priority_compression_list.3 +40 -0
  1762. data/vendor/local/share/man/man3/gnutls_priority_deinit.3 +33 -0
  1763. data/vendor/local/share/man/man3/gnutls_priority_ecc_curve_list.3 +40 -0
  1764. data/vendor/local/share/man/man3/gnutls_priority_get_cipher_suite_index.3 +45 -0
  1765. data/vendor/local/share/man/man3/gnutls_priority_init.3 +102 -0
  1766. data/vendor/local/share/man/man3/gnutls_priority_kx_list.3 +40 -0
  1767. data/vendor/local/share/man/man3/gnutls_priority_mac_list.3 +40 -0
  1768. data/vendor/local/share/man/man3/gnutls_priority_protocol_list.3 +40 -0
  1769. data/vendor/local/share/man/man3/gnutls_priority_set.3 +38 -0
  1770. data/vendor/local/share/man/man3/gnutls_priority_set_direct.3 +45 -0
  1771. data/vendor/local/share/man/man3/gnutls_priority_sign_list.3 +40 -0
  1772. data/vendor/local/share/man/man3/gnutls_privkey_decrypt_data.3 +45 -0
  1773. data/vendor/local/share/man/man3/gnutls_privkey_deinit.3 +35 -0
  1774. data/vendor/local/share/man/man3/gnutls_privkey_get_pk_algorithm.3 +42 -0
  1775. data/vendor/local/share/man/man3/gnutls_privkey_get_type.3 +39 -0
  1776. data/vendor/local/share/man/man3/gnutls_privkey_import_ext.3 +52 -0
  1777. data/vendor/local/share/man/man3/gnutls_privkey_import_ext2.3 +58 -0
  1778. data/vendor/local/share/man/man3/gnutls_privkey_import_openpgp.3 +50 -0
  1779. data/vendor/local/share/man/man3/gnutls_privkey_import_openpgp_raw.3 +47 -0
  1780. data/vendor/local/share/man/man3/gnutls_privkey_import_pkcs11.3 +49 -0
  1781. data/vendor/local/share/man/man3/gnutls_privkey_import_pkcs11_url.3 +41 -0
  1782. data/vendor/local/share/man/man3/gnutls_privkey_import_tpm_raw.3 +51 -0
  1783. data/vendor/local/share/man/man3/gnutls_privkey_import_tpm_url.3 +55 -0
  1784. data/vendor/local/share/man/man3/gnutls_privkey_import_url.3 +44 -0
  1785. data/vendor/local/share/man/man3/gnutls_privkey_import_x509.3 +49 -0
  1786. data/vendor/local/share/man/man3/gnutls_privkey_import_x509_raw.3 +50 -0
  1787. data/vendor/local/share/man/man3/gnutls_privkey_init.3 +38 -0
  1788. data/vendor/local/share/man/man3/gnutls_privkey_set_pin_function.3 +44 -0
  1789. data/vendor/local/share/man/man3/gnutls_privkey_sign_data.3 +52 -0
  1790. data/vendor/local/share/man/man3/gnutls_privkey_sign_hash.3 +55 -0
  1791. data/vendor/local/share/man/man3/gnutls_privkey_sign_raw_data.3 +51 -0
  1792. data/vendor/local/share/man/man3/gnutls_privkey_status.3 +41 -0
  1793. data/vendor/local/share/man/man3/gnutls_protocol_get_id.3 +36 -0
  1794. data/vendor/local/share/man/man3/gnutls_protocol_get_name.3 +36 -0
  1795. data/vendor/local/share/man/man3/gnutls_protocol_get_version.3 +35 -0
  1796. data/vendor/local/share/man/man3/gnutls_protocol_list.3 +38 -0
  1797. data/vendor/local/share/man/man3/gnutls_protocol_set_priority.3 +39 -0
  1798. data/vendor/local/share/man/man3/gnutls_psk_allocate_client_credentials.3 +37 -0
  1799. data/vendor/local/share/man/man3/gnutls_psk_allocate_server_credentials.3 +37 -0
  1800. data/vendor/local/share/man/man3/gnutls_psk_client_get_hint.3 +39 -0
  1801. data/vendor/local/share/man/man3/gnutls_psk_free_client_credentials.3 +34 -0
  1802. data/vendor/local/share/man/man3/gnutls_psk_free_server_credentials.3 +34 -0
  1803. data/vendor/local/share/man/man3/gnutls_psk_server_get_username.3 +36 -0
  1804. data/vendor/local/share/man/man3/gnutls_psk_set_client_credentials.3 +48 -0
  1805. data/vendor/local/share/man/man3/gnutls_psk_set_client_credentials_function.3 +48 -0
  1806. data/vendor/local/share/man/man3/gnutls_psk_set_params_function.3 +37 -0
  1807. data/vendor/local/share/man/man3/gnutls_psk_set_server_credentials_file.3 +40 -0
  1808. data/vendor/local/share/man/man3/gnutls_psk_set_server_credentials_function.3 +48 -0
  1809. data/vendor/local/share/man/man3/gnutls_psk_set_server_credentials_hint.3 +43 -0
  1810. data/vendor/local/share/man/man3/gnutls_psk_set_server_dh_params.3 +37 -0
  1811. data/vendor/local/share/man/man3/gnutls_psk_set_server_params_function.3 +37 -0
  1812. data/vendor/local/share/man/man3/gnutls_pubkey_deinit.3 +35 -0
  1813. data/vendor/local/share/man/man3/gnutls_pubkey_encrypt_data.3 +45 -0
  1814. data/vendor/local/share/man/man3/gnutls_pubkey_export.3 +54 -0
  1815. data/vendor/local/share/man/man3/gnutls_pubkey_export2.3 +49 -0
  1816. data/vendor/local/share/man/man3/gnutls_pubkey_get_key_id.3 +52 -0
  1817. data/vendor/local/share/man/man3/gnutls_pubkey_get_key_usage.3 +40 -0
  1818. data/vendor/local/share/man/man3/gnutls_pubkey_get_openpgp_key_id.3 +56 -0
  1819. data/vendor/local/share/man/man3/gnutls_pubkey_get_pk_algorithm.3 +42 -0
  1820. data/vendor/local/share/man/man3/gnutls_pubkey_get_pk_dsa_raw.3 +47 -0
  1821. data/vendor/local/share/man/man3/gnutls_pubkey_get_pk_ecc_raw.3 +45 -0
  1822. data/vendor/local/share/man/man3/gnutls_pubkey_get_pk_ecc_x962.3 +43 -0
  1823. data/vendor/local/share/man/man3/gnutls_pubkey_get_pk_rsa_raw.3 +43 -0
  1824. data/vendor/local/share/man/man3/gnutls_pubkey_get_preferred_hash_algorithm.3 +47 -0
  1825. data/vendor/local/share/man/man3/gnutls_pubkey_get_verify_algorithm.3 +43 -0
  1826. data/vendor/local/share/man/man3/gnutls_pubkey_import.3 +46 -0
  1827. data/vendor/local/share/man/man3/gnutls_pubkey_import_dsa_raw.3 +48 -0
  1828. data/vendor/local/share/man/man3/gnutls_pubkey_import_ecc_raw.3 +45 -0
  1829. data/vendor/local/share/man/man3/gnutls_pubkey_import_ecc_x962.3 +43 -0
  1830. data/vendor/local/share/man/man3/gnutls_pubkey_import_openpgp.3 +45 -0
  1831. data/vendor/local/share/man/man3/gnutls_pubkey_import_openpgp_raw.3 +47 -0
  1832. data/vendor/local/share/man/man3/gnutls_pubkey_import_pkcs11.3 +43 -0
  1833. data/vendor/local/share/man/man3/gnutls_pubkey_import_pkcs11_url.3 +43 -0
  1834. data/vendor/local/share/man/man3/gnutls_pubkey_import_privkey.3 +45 -0
  1835. data/vendor/local/share/man/man3/gnutls_pubkey_import_rsa_raw.3 +43 -0
  1836. data/vendor/local/share/man/man3/gnutls_pubkey_import_tpm_raw.3 +50 -0
  1837. data/vendor/local/share/man/man3/gnutls_pubkey_import_tpm_url.3 +51 -0
  1838. data/vendor/local/share/man/man3/gnutls_pubkey_import_url.3 +43 -0
  1839. data/vendor/local/share/man/man3/gnutls_pubkey_import_x509.3 +43 -0
  1840. data/vendor/local/share/man/man3/gnutls_pubkey_import_x509_crq.3 +43 -0
  1841. data/vendor/local/share/man/man3/gnutls_pubkey_import_x509_raw.3 +45 -0
  1842. data/vendor/local/share/man/man3/gnutls_pubkey_init.3 +38 -0
  1843. data/vendor/local/share/man/man3/gnutls_pubkey_print.3 +48 -0
  1844. data/vendor/local/share/man/man3/gnutls_pubkey_set_key_usage.3 +42 -0
  1845. data/vendor/local/share/man/man3/gnutls_pubkey_set_pin_function.3 +44 -0
  1846. data/vendor/local/share/man/man3/gnutls_pubkey_verify_data.3 +48 -0
  1847. data/vendor/local/share/man/man3/gnutls_pubkey_verify_data2.3 +47 -0
  1848. data/vendor/local/share/man/man3/gnutls_pubkey_verify_hash.3 +48 -0
  1849. data/vendor/local/share/man/man3/gnutls_pubkey_verify_hash2.3 +47 -0
  1850. data/vendor/local/share/man/man3/gnutls_random_art.3 +47 -0
  1851. data/vendor/local/share/man/man3/gnutls_range_split.3 +47 -0
  1852. data/vendor/local/share/man/man3/gnutls_record_can_use_length_hiding.3 +42 -0
  1853. data/vendor/local/share/man/man3/gnutls_record_check_corked.3 +38 -0
  1854. data/vendor/local/share/man/man3/gnutls_record_check_pending.3 +38 -0
  1855. data/vendor/local/share/man/man3/gnutls_record_cork.3 +39 -0
  1856. data/vendor/local/share/man/man3/gnutls_record_disable_padding.3 +39 -0
  1857. data/vendor/local/share/man/man3/gnutls_record_get_direction.3 +44 -0
  1858. data/vendor/local/share/man/man3/gnutls_record_get_discarded.3 +38 -0
  1859. data/vendor/local/share/man/man3/gnutls_record_get_max_size.3 +36 -0
  1860. data/vendor/local/share/man/man3/gnutls_record_overhead_size.3 +36 -0
  1861. data/vendor/local/share/man/man3/gnutls_record_recv.3 +56 -0
  1862. data/vendor/local/share/man/man3/gnutls_record_recv_seq.3 +50 -0
  1863. data/vendor/local/share/man/man3/gnutls_record_send.3 +64 -0
  1864. data/vendor/local/share/man/man3/gnutls_record_send_range.3 +51 -0
  1865. data/vendor/local/share/man/man3/gnutls_record_set_max_empty_records.3 +41 -0
  1866. data/vendor/local/share/man/man3/gnutls_record_set_max_size.3 +48 -0
  1867. data/vendor/local/share/man/man3/gnutls_record_set_timeout.3 +43 -0
  1868. data/vendor/local/share/man/man3/gnutls_record_uncork.3 +49 -0
  1869. data/vendor/local/share/man/man3/gnutls_rehandshake.3 +56 -0
  1870. data/vendor/local/share/man/man3/gnutls_rnd.3 +42 -0
  1871. data/vendor/local/share/man/man3/gnutls_rnd_refresh.3 +38 -0
  1872. data/vendor/local/share/man/man3/gnutls_rsa_export_get_modulus_bits.3 +36 -0
  1873. data/vendor/local/share/man/man3/gnutls_rsa_export_get_pubkey.3 +42 -0
  1874. data/vendor/local/share/man/man3/gnutls_rsa_params_cpy.3 +38 -0
  1875. data/vendor/local/share/man/man3/gnutls_rsa_params_deinit.3 +33 -0
  1876. data/vendor/local/share/man/man3/gnutls_rsa_params_export_pkcs1.3 +46 -0
  1877. data/vendor/local/share/man/man3/gnutls_rsa_params_export_raw.3 +51 -0
  1878. data/vendor/local/share/man/man3/gnutls_rsa_params_generate2.3 +44 -0
  1879. data/vendor/local/share/man/man3/gnutls_rsa_params_import_pkcs1.3 +43 -0
  1880. data/vendor/local/share/man/man3/gnutls_rsa_params_import_raw.3 +49 -0
  1881. data/vendor/local/share/man/man3/gnutls_rsa_params_init.3 +35 -0
  1882. data/vendor/local/share/man/man3/gnutls_safe_renegotiation_status.3 +39 -0
  1883. data/vendor/local/share/man/man3/gnutls_sec_param_get_name.3 +38 -0
  1884. data/vendor/local/share/man/man3/gnutls_sec_param_to_pk_bits.3 +43 -0
  1885. data/vendor/local/share/man/man3/gnutls_server_name_get.3 +59 -0
  1886. data/vendor/local/share/man/man3/gnutls_server_name_set.3 +50 -0
  1887. data/vendor/local/share/man/man3/gnutls_session_channel_binding.3 +45 -0
  1888. data/vendor/local/share/man/man3/gnutls_session_enable_compatibility_mode.3 +42 -0
  1889. data/vendor/local/share/man/man3/gnutls_session_force_valid.3 +37 -0
  1890. data/vendor/local/share/man/man3/gnutls_session_get_data.3 +43 -0
  1891. data/vendor/local/share/man/man3/gnutls_session_get_data2.3 +42 -0
  1892. data/vendor/local/share/man/man3/gnutls_session_get_desc.3 +38 -0
  1893. data/vendor/local/share/man/man3/gnutls_session_get_id.3 +47 -0
  1894. data/vendor/local/share/man/man3/gnutls_session_get_id2.3 +41 -0
  1895. data/vendor/local/share/man/man3/gnutls_session_get_ptr.3 +37 -0
  1896. data/vendor/local/share/man/man3/gnutls_session_get_random.3 +44 -0
  1897. data/vendor/local/share/man/man3/gnutls_session_is_resumed.3 +36 -0
  1898. data/vendor/local/share/man/man3/gnutls_session_resumption_requested.3 +36 -0
  1899. data/vendor/local/share/man/man3/gnutls_session_set_data.3 +47 -0
  1900. data/vendor/local/share/man/man3/gnutls_session_set_id.3 +42 -0
  1901. data/vendor/local/share/man/man3/gnutls_session_set_premaster.3 +55 -0
  1902. data/vendor/local/share/man/man3/gnutls_session_set_ptr.3 +37 -0
  1903. data/vendor/local/share/man/man3/gnutls_session_ticket_enable_client.3 +39 -0
  1904. data/vendor/local/share/man/man3/gnutls_session_ticket_enable_server.3 +42 -0
  1905. data/vendor/local/share/man/man3/gnutls_session_ticket_key_generate.3 +40 -0
  1906. data/vendor/local/share/man/man3/gnutls_set_default_export_priority.3 +46 -0
  1907. data/vendor/local/share/man/man3/gnutls_set_default_priority.3 +45 -0
  1908. data/vendor/local/share/man/man3/gnutls_sign_algorithm_get.3 +38 -0
  1909. data/vendor/local/share/man/man3/gnutls_sign_algorithm_get_client.3 +38 -0
  1910. data/vendor/local/share/man/man3/gnutls_sign_algorithm_get_requested.3 +50 -0
  1911. data/vendor/local/share/man/man3/gnutls_sign_callback_get.3 +40 -0
  1912. data/vendor/local/share/man/man3/gnutls_sign_callback_set.3 +50 -0
  1913. data/vendor/local/share/man/man3/gnutls_sign_get_hash_algorithm.3 +38 -0
  1914. data/vendor/local/share/man/man3/gnutls_sign_get_id.3 +36 -0
  1915. data/vendor/local/share/man/man3/gnutls_sign_get_name.3 +36 -0
  1916. data/vendor/local/share/man/man3/gnutls_sign_get_pk_algorithm.3 +38 -0
  1917. data/vendor/local/share/man/man3/gnutls_sign_is_secure.3 +33 -0
  1918. data/vendor/local/share/man/man3/gnutls_sign_list.3 +36 -0
  1919. data/vendor/local/share/man/man3/gnutls_srp_allocate_client_credentials.3 +37 -0
  1920. data/vendor/local/share/man/man3/gnutls_srp_allocate_server_credentials.3 +37 -0
  1921. data/vendor/local/share/man/man3/gnutls_srp_base64_decode.3 +46 -0
  1922. data/vendor/local/share/man/man3/gnutls_srp_base64_decode_alloc.3 +44 -0
  1923. data/vendor/local/share/man/man3/gnutls_srp_base64_encode.3 +46 -0
  1924. data/vendor/local/share/man/man3/gnutls_srp_base64_encode_alloc.3 +45 -0
  1925. data/vendor/local/share/man/man3/gnutls_srp_free_client_credentials.3 +34 -0
  1926. data/vendor/local/share/man/man3/gnutls_srp_free_server_credentials.3 +34 -0
  1927. data/vendor/local/share/man/man3/gnutls_srp_server_get_username.3 +37 -0
  1928. data/vendor/local/share/man/man3/gnutls_srp_set_client_credentials.3 +44 -0
  1929. data/vendor/local/share/man/man3/gnutls_srp_set_client_credentials_function.3 +53 -0
  1930. data/vendor/local/share/man/man3/gnutls_srp_set_prime_bits.3 +45 -0
  1931. data/vendor/local/share/man/man3/gnutls_srp_set_server_credentials_file.3 +43 -0
  1932. data/vendor/local/share/man/man3/gnutls_srp_set_server_credentials_function.3 +56 -0
  1933. data/vendor/local/share/man/man3/gnutls_srp_verifier.3 +51 -0
  1934. data/vendor/local/share/man/man3/gnutls_srtp_get_keys.3 +54 -0
  1935. data/vendor/local/share/man/man3/gnutls_srtp_get_mki.3 +42 -0
  1936. data/vendor/local/share/man/man3/gnutls_srtp_get_profile_id.3 +40 -0
  1937. data/vendor/local/share/man/man3/gnutls_srtp_get_profile_name.3 +39 -0
  1938. data/vendor/local/share/man/man3/gnutls_srtp_get_selected_profile.3 +40 -0
  1939. data/vendor/local/share/man/man3/gnutls_srtp_set_mki.3 +41 -0
  1940. data/vendor/local/share/man/man3/gnutls_srtp_set_profile.3 +41 -0
  1941. data/vendor/local/share/man/man3/gnutls_srtp_set_profile_direct.3 +44 -0
  1942. data/vendor/local/share/man/man3/gnutls_store_commitment.3 +60 -0
  1943. data/vendor/local/share/man/man3/gnutls_store_pubkey.3 +58 -0
  1944. data/vendor/local/share/man/man3/gnutls_strerror.3 +39 -0
  1945. data/vendor/local/share/man/man3/gnutls_strerror_name.3 +40 -0
  1946. data/vendor/local/share/man/man3/gnutls_supplemental_get_name.3 +37 -0
  1947. data/vendor/local/share/man/man3/gnutls_tdb_deinit.3 +33 -0
  1948. data/vendor/local/share/man/man3/gnutls_tdb_init.3 +36 -0
  1949. data/vendor/local/share/man/man3/gnutls_tdb_set_store_commitment_func.3 +40 -0
  1950. data/vendor/local/share/man/man3/gnutls_tdb_set_store_func.3 +40 -0
  1951. data/vendor/local/share/man/man3/gnutls_tdb_set_verify_func.3 +39 -0
  1952. data/vendor/local/share/man/man3/gnutls_tpm_get_registered.3 +39 -0
  1953. data/vendor/local/share/man/man3/gnutls_tpm_key_list_deinit.3 +35 -0
  1954. data/vendor/local/share/man/man3/gnutls_tpm_key_list_get_url.3 +47 -0
  1955. data/vendor/local/share/man/man3/gnutls_tpm_privkey_delete.3 +41 -0
  1956. data/vendor/local/share/man/man3/gnutls_tpm_privkey_generate.3 +64 -0
  1957. data/vendor/local/share/man/man3/gnutls_transport_get_int.3 +39 -0
  1958. data/vendor/local/share/man/man3/gnutls_transport_get_int2.3 +41 -0
  1959. data/vendor/local/share/man/man3/gnutls_transport_get_ptr.3 +37 -0
  1960. data/vendor/local/share/man/man3/gnutls_transport_get_ptr2.3 +39 -0
  1961. data/vendor/local/share/man/man3/gnutls_transport_set_errno.3 +43 -0
  1962. data/vendor/local/share/man/man3/gnutls_transport_set_errno_function.3 +42 -0
  1963. data/vendor/local/share/man/man3/gnutls_transport_set_int.3 +38 -0
  1964. data/vendor/local/share/man/man3/gnutls_transport_set_int2.3 +42 -0
  1965. data/vendor/local/share/man/man3/gnutls_transport_set_ptr.3 +37 -0
  1966. data/vendor/local/share/man/man3/gnutls_transport_set_ptr2.3 +40 -0
  1967. data/vendor/local/share/man/man3/gnutls_transport_set_pull_function.3 +42 -0
  1968. data/vendor/local/share/man/man3/gnutls_transport_set_pull_timeout_function.3 +48 -0
  1969. data/vendor/local/share/man/man3/gnutls_transport_set_push_function.3 +44 -0
  1970. data/vendor/local/share/man/man3/gnutls_transport_set_vec_push_function.3 +43 -0
  1971. data/vendor/local/share/man/man3/gnutls_url_is_supported.3 +39 -0
  1972. data/vendor/local/share/man/man3/gnutls_verify_stored_pubkey.3 +67 -0
  1973. data/vendor/local/share/man/man3/gnutls_x509_crl_check_issuer.3 +39 -0
  1974. data/vendor/local/share/man/man3/gnutls_x509_crl_deinit.3 +33 -0
  1975. data/vendor/local/share/man/man3/gnutls_x509_crl_export.3 +49 -0
  1976. data/vendor/local/share/man/man3/gnutls_x509_crl_export2.3 +47 -0
  1977. data/vendor/local/share/man/man3/gnutls_x509_crl_get_authority_key_gn_serial.3 +57 -0
  1978. data/vendor/local/share/man/man3/gnutls_x509_crl_get_authority_key_id.3 +51 -0
  1979. data/vendor/local/share/man/man3/gnutls_x509_crl_get_crt_count.3 +36 -0
  1980. data/vendor/local/share/man/man3/gnutls_x509_crl_get_crt_serial.3 +45 -0
  1981. data/vendor/local/share/man/man3/gnutls_x509_crl_get_dn_oid.3 +46 -0
  1982. data/vendor/local/share/man/man3/gnutls_x509_crl_get_extension_data.3 +53 -0
  1983. data/vendor/local/share/man/man3/gnutls_x509_crl_get_extension_info.3 +56 -0
  1984. data/vendor/local/share/man/man3/gnutls_x509_crl_get_extension_oid.3 +48 -0
  1985. data/vendor/local/share/man/man3/gnutls_x509_crl_get_issuer_dn.3 +46 -0
  1986. data/vendor/local/share/man/man3/gnutls_x509_crl_get_issuer_dn2.3 +43 -0
  1987. data/vendor/local/share/man/man3/gnutls_x509_crl_get_issuer_dn_by_oid.3 +58 -0
  1988. data/vendor/local/share/man/man3/gnutls_x509_crl_get_next_update.3 +37 -0
  1989. data/vendor/local/share/man/man3/gnutls_x509_crl_get_number.3 +46 -0
  1990. data/vendor/local/share/man/man3/gnutls_x509_crl_get_raw_issuer_dn.3 +40 -0
  1991. data/vendor/local/share/man/man3/gnutls_x509_crl_get_signature.3 +40 -0
  1992. data/vendor/local/share/man/man3/gnutls_x509_crl_get_signature_algorithm.3 +37 -0
  1993. data/vendor/local/share/man/man3/gnutls_x509_crl_get_this_update.3 +35 -0
  1994. data/vendor/local/share/man/man3/gnutls_x509_crl_get_version.3 +35 -0
  1995. data/vendor/local/share/man/man3/gnutls_x509_crl_import.3 +43 -0
  1996. data/vendor/local/share/man/man3/gnutls_x509_crl_init.3 +40 -0
  1997. data/vendor/local/share/man/man3/gnutls_x509_crl_list_import.3 +49 -0
  1998. data/vendor/local/share/man/man3/gnutls_x509_crl_list_import2.3 +50 -0
  1999. data/vendor/local/share/man/man3/gnutls_x509_crl_print.3 +43 -0
  2000. data/vendor/local/share/man/man3/gnutls_x509_crl_privkey_sign.3 +50 -0
  2001. data/vendor/local/share/man/man3/gnutls_x509_crl_set_authority_key_id.3 +45 -0
  2002. data/vendor/local/share/man/man3/gnutls_x509_crl_set_crt.3 +40 -0
  2003. data/vendor/local/share/man/man3/gnutls_x509_crl_set_crt_serial.3 +42 -0
  2004. data/vendor/local/share/man/man3/gnutls_x509_crl_set_next_update.3 +38 -0
  2005. data/vendor/local/share/man/man3/gnutls_x509_crl_set_number.3 +44 -0
  2006. data/vendor/local/share/man/man3/gnutls_x509_crl_set_this_update.3 +38 -0
  2007. data/vendor/local/share/man/man3/gnutls_x509_crl_set_version.3 +40 -0
  2008. data/vendor/local/share/man/man3/gnutls_x509_crl_sign.3 +43 -0
  2009. data/vendor/local/share/man/man3/gnutls_x509_crl_sign2.3 +48 -0
  2010. data/vendor/local/share/man/man3/gnutls_x509_crl_verify.3 +51 -0
  2011. data/vendor/local/share/man/man3/gnutls_x509_crq_deinit.3 +34 -0
  2012. data/vendor/local/share/man/man3/gnutls_x509_crq_export.3 +51 -0
  2013. data/vendor/local/share/man/man3/gnutls_x509_crq_export2.3 +48 -0
  2014. data/vendor/local/share/man/man3/gnutls_x509_crq_get_attribute_by_oid.3 +50 -0
  2015. data/vendor/local/share/man/man3/gnutls_x509_crq_get_attribute_data.3 +53 -0
  2016. data/vendor/local/share/man/man3/gnutls_x509_crq_get_attribute_info.3 +54 -0
  2017. data/vendor/local/share/man/man3/gnutls_x509_crq_get_basic_constraints.3 +52 -0
  2018. data/vendor/local/share/man/man3/gnutls_x509_crq_get_challenge_password.3 +42 -0
  2019. data/vendor/local/share/man/man3/gnutls_x509_crq_get_dn.3 +45 -0
  2020. data/vendor/local/share/man/man3/gnutls_x509_crq_get_dn2.3 +43 -0
  2021. data/vendor/local/share/man/man3/gnutls_x509_crq_get_dn_by_oid.3 +57 -0
  2022. data/vendor/local/share/man/man3/gnutls_x509_crq_get_dn_oid.3 +44 -0
  2023. data/vendor/local/share/man/man3/gnutls_x509_crq_get_extension_by_oid.3 +53 -0
  2024. data/vendor/local/share/man/man3/gnutls_x509_crq_get_extension_data.3 +53 -0
  2025. data/vendor/local/share/man/man3/gnutls_x509_crq_get_extension_info.3 +56 -0
  2026. data/vendor/local/share/man/man3/gnutls_x509_crq_get_key_id.3 +52 -0
  2027. data/vendor/local/share/man/man3/gnutls_x509_crq_get_key_purpose_oid.3 +50 -0
  2028. data/vendor/local/share/man/man3/gnutls_x509_crq_get_key_rsa_raw.3 +44 -0
  2029. data/vendor/local/share/man/man3/gnutls_x509_crq_get_key_usage.3 +50 -0
  2030. data/vendor/local/share/man/man3/gnutls_x509_crq_get_pk_algorithm.3 +43 -0
  2031. data/vendor/local/share/man/man3/gnutls_x509_crq_get_private_key_usage_period.3 +43 -0
  2032. data/vendor/local/share/man/man3/gnutls_x509_crq_get_subject_alt_name.3 +60 -0
  2033. data/vendor/local/share/man/man3/gnutls_x509_crq_get_subject_alt_othername_oid.3 +58 -0
  2034. data/vendor/local/share/man/man3/gnutls_x509_crq_get_version.3 +37 -0
  2035. data/vendor/local/share/man/man3/gnutls_x509_crq_import.3 +45 -0
  2036. data/vendor/local/share/man/man3/gnutls_x509_crq_init.3 +37 -0
  2037. data/vendor/local/share/man/man3/gnutls_x509_crq_print.3 +45 -0
  2038. data/vendor/local/share/man/man3/gnutls_x509_crq_privkey_sign.3 +52 -0
  2039. data/vendor/local/share/man/man3/gnutls_x509_crq_set_attribute_by_oid.3 +47 -0
  2040. data/vendor/local/share/man/man3/gnutls_x509_crq_set_basic_constraints.3 +44 -0
  2041. data/vendor/local/share/man/man3/gnutls_x509_crq_set_challenge_password.3 +39 -0
  2042. data/vendor/local/share/man/man3/gnutls_x509_crq_set_dn.3 +41 -0
  2043. data/vendor/local/share/man/man3/gnutls_x509_crq_set_dn_by_oid.3 +52 -0
  2044. data/vendor/local/share/man/man3/gnutls_x509_crq_set_key.3 +39 -0
  2045. data/vendor/local/share/man/man3/gnutls_x509_crq_set_key_purpose_oid.3 +46 -0
  2046. data/vendor/local/share/man/man3/gnutls_x509_crq_set_key_rsa_raw.3 +43 -0
  2047. data/vendor/local/share/man/man3/gnutls_x509_crq_set_key_usage.3 +40 -0
  2048. data/vendor/local/share/man/man3/gnutls_x509_crq_set_private_key_usage_period.3 +40 -0
  2049. data/vendor/local/share/man/man3/gnutls_x509_crq_set_pubkey.3 +41 -0
  2050. data/vendor/local/share/man/man3/gnutls_x509_crq_set_subject_alt_name.3 +48 -0
  2051. data/vendor/local/share/man/man3/gnutls_x509_crq_set_version.3 +39 -0
  2052. data/vendor/local/share/man/man3/gnutls_x509_crq_sign.3 +41 -0
  2053. data/vendor/local/share/man/man3/gnutls_x509_crq_sign2.3 +50 -0
  2054. data/vendor/local/share/man/man3/gnutls_x509_crq_verify.3 +41 -0
  2055. data/vendor/local/share/man/man3/gnutls_x509_crt_check_hostname.3 +52 -0
  2056. data/vendor/local/share/man/man3/gnutls_x509_crt_check_issuer.3 +40 -0
  2057. data/vendor/local/share/man/man3/gnutls_x509_crt_check_revocation.3 +41 -0
  2058. data/vendor/local/share/man/man3/gnutls_x509_crt_cpy_crl_dist_points.3 +40 -0
  2059. data/vendor/local/share/man/man3/gnutls_x509_crt_deinit.3 +33 -0
  2060. data/vendor/local/share/man/man3/gnutls_x509_crt_export.3 +50 -0
  2061. data/vendor/local/share/man/man3/gnutls_x509_crt_export2.3 +46 -0
  2062. data/vendor/local/share/man/man3/gnutls_x509_crt_get_activation_time.3 +36 -0
  2063. data/vendor/local/share/man/man3/gnutls_x509_crt_get_authority_info_access.3 +100 -0
  2064. data/vendor/local/share/man/man3/gnutls_x509_crt_get_authority_key_gn_serial.3 +58 -0
  2065. data/vendor/local/share/man/man3/gnutls_x509_crt_get_authority_key_id.3 +48 -0
  2066. data/vendor/local/share/man/man3/gnutls_x509_crt_get_basic_constraints.3 +50 -0
  2067. data/vendor/local/share/man/man3/gnutls_x509_crt_get_ca_status.3 +45 -0
  2068. data/vendor/local/share/man/man3/gnutls_x509_crt_get_crl_dist_points.3 +53 -0
  2069. data/vendor/local/share/man/man3/gnutls_x509_crt_get_dn.3 +46 -0
  2070. data/vendor/local/share/man/man3/gnutls_x509_crt_get_dn2.3 +43 -0
  2071. data/vendor/local/share/man/man3/gnutls_x509_crt_get_dn_by_oid.3 +60 -0
  2072. data/vendor/local/share/man/man3/gnutls_x509_crt_get_dn_oid.3 +48 -0
  2073. data/vendor/local/share/man/man3/gnutls_x509_crt_get_expiration_time.3 +39 -0
  2074. data/vendor/local/share/man/man3/gnutls_x509_crt_get_extension_by_oid.3 +50 -0
  2075. data/vendor/local/share/man/man3/gnutls_x509_crt_get_extension_data.3 +51 -0
  2076. data/vendor/local/share/man/man3/gnutls_x509_crt_get_extension_info.3 +55 -0
  2077. data/vendor/local/share/man/man3/gnutls_x509_crt_get_extension_oid.3 +48 -0
  2078. data/vendor/local/share/man/man3/gnutls_x509_crt_get_fingerprint.3 +46 -0
  2079. data/vendor/local/share/man/man3/gnutls_x509_crt_get_issuer.3 +42 -0
  2080. data/vendor/local/share/man/man3/gnutls_x509_crt_get_issuer_alt_name.3 +64 -0
  2081. data/vendor/local/share/man/man3/gnutls_x509_crt_get_issuer_alt_name2.3 +58 -0
  2082. data/vendor/local/share/man/man3/gnutls_x509_crt_get_issuer_alt_othername_oid.3 +61 -0
  2083. data/vendor/local/share/man/man3/gnutls_x509_crt_get_issuer_dn.3 +46 -0
  2084. data/vendor/local/share/man/man3/gnutls_x509_crt_get_issuer_dn2.3 +43 -0
  2085. data/vendor/local/share/man/man3/gnutls_x509_crt_get_issuer_dn_by_oid.3 +60 -0
  2086. data/vendor/local/share/man/man3/gnutls_x509_crt_get_issuer_dn_oid.3 +48 -0
  2087. data/vendor/local/share/man/man3/gnutls_x509_crt_get_issuer_unique_id.3 +47 -0
  2088. data/vendor/local/share/man/man3/gnutls_x509_crt_get_key_id.3 +50 -0
  2089. data/vendor/local/share/man/man3/gnutls_x509_crt_get_key_purpose_oid.3 +51 -0
  2090. data/vendor/local/share/man/man3/gnutls_x509_crt_get_key_usage.3 +48 -0
  2091. data/vendor/local/share/man/man3/gnutls_x509_crt_get_pk_algorithm.3 +44 -0
  2092. data/vendor/local/share/man/man3/gnutls_x509_crt_get_pk_dsa_raw.3 +45 -0
  2093. data/vendor/local/share/man/man3/gnutls_x509_crt_get_pk_rsa_raw.3 +41 -0
  2094. data/vendor/local/share/man/man3/gnutls_x509_crt_get_policy.3 +48 -0
  2095. data/vendor/local/share/man/man3/gnutls_x509_crt_get_preferred_hash_algorithm.3 +46 -0
  2096. data/vendor/local/share/man/man3/gnutls_x509_crt_get_private_key_usage_period.3 +44 -0
  2097. data/vendor/local/share/man/man3/gnutls_x509_crt_get_proxy.3 +49 -0
  2098. data/vendor/local/share/man/man3/gnutls_x509_crt_get_raw_dn.3 +39 -0
  2099. data/vendor/local/share/man/man3/gnutls_x509_crt_get_raw_issuer_dn.3 +39 -0
  2100. data/vendor/local/share/man/man3/gnutls_x509_crt_get_serial.3 +43 -0
  2101. data/vendor/local/share/man/man3/gnutls_x509_crt_get_signature.3 +40 -0
  2102. data/vendor/local/share/man/man3/gnutls_x509_crt_get_signature_algorithm.3 +38 -0
  2103. data/vendor/local/share/man/man3/gnutls_x509_crt_get_subject.3 +42 -0
  2104. data/vendor/local/share/man/man3/gnutls_x509_crt_get_subject_alt_name.3 +61 -0
  2105. data/vendor/local/share/man/man3/gnutls_x509_crt_get_subject_alt_name2.3 +56 -0
  2106. data/vendor/local/share/man/man3/gnutls_x509_crt_get_subject_alt_othername_oid.3 +59 -0
  2107. data/vendor/local/share/man/man3/gnutls_x509_crt_get_subject_key_id.3 +44 -0
  2108. data/vendor/local/share/man/man3/gnutls_x509_crt_get_subject_unique_id.3 +45 -0
  2109. data/vendor/local/share/man/man3/gnutls_x509_crt_get_verify_algorithm.3 +45 -0
  2110. data/vendor/local/share/man/man3/gnutls_x509_crt_get_version.3 +35 -0
  2111. data/vendor/local/share/man/man3/gnutls_x509_crt_import.3 +45 -0
  2112. data/vendor/local/share/man/man3/gnutls_x509_crt_import_pkcs11.3 +41 -0
  2113. data/vendor/local/share/man/man3/gnutls_x509_crt_import_pkcs11_url.3 +44 -0
  2114. data/vendor/local/share/man/man3/gnutls_x509_crt_init.3 +36 -0
  2115. data/vendor/local/share/man/man3/gnutls_x509_crt_list_import.3 +54 -0
  2116. data/vendor/local/share/man/man3/gnutls_x509_crt_list_import2.3 +53 -0
  2117. data/vendor/local/share/man/man3/gnutls_x509_crt_list_import_pkcs11.3 +45 -0
  2118. data/vendor/local/share/man/man3/gnutls_x509_crt_list_verify.3 +62 -0
  2119. data/vendor/local/share/man/man3/gnutls_x509_crt_print.3 +48 -0
  2120. data/vendor/local/share/man/man3/gnutls_x509_crt_privkey_sign.3 +48 -0
  2121. data/vendor/local/share/man/man3/gnutls_x509_crt_set_activation_time.3 +39 -0
  2122. data/vendor/local/share/man/man3/gnutls_x509_crt_set_authority_info_access.3 +50 -0
  2123. data/vendor/local/share/man/man3/gnutls_x509_crt_set_authority_key_id.3 +41 -0
  2124. data/vendor/local/share/man/man3/gnutls_x509_crt_set_basic_constraints.3 +42 -0
  2125. data/vendor/local/share/man/man3/gnutls_x509_crt_set_ca_status.3 +40 -0
  2126. data/vendor/local/share/man/man3/gnutls_x509_crt_set_crl_dist_points.3 +42 -0
  2127. data/vendor/local/share/man/man3/gnutls_x509_crt_set_crl_dist_points2.3 +46 -0
  2128. data/vendor/local/share/man/man3/gnutls_x509_crt_set_crq.3 +40 -0
  2129. data/vendor/local/share/man/man3/gnutls_x509_crt_set_crq_extensions.3 +41 -0
  2130. data/vendor/local/share/man/man3/gnutls_x509_crt_set_dn.3 +41 -0
  2131. data/vendor/local/share/man/man3/gnutls_x509_crt_set_dn_by_oid.3 +52 -0
  2132. data/vendor/local/share/man/man3/gnutls_x509_crt_set_expiration_time.3 +40 -0
  2133. data/vendor/local/share/man/man3/gnutls_x509_crt_set_extension_by_oid.3 +46 -0
  2134. data/vendor/local/share/man/man3/gnutls_x509_crt_set_issuer_dn.3 +41 -0
  2135. data/vendor/local/share/man/man3/gnutls_x509_crt_set_issuer_dn_by_oid.3 +56 -0
  2136. data/vendor/local/share/man/man3/gnutls_x509_crt_set_key.3 +40 -0
  2137. data/vendor/local/share/man/man3/gnutls_x509_crt_set_key_purpose_oid.3 +44 -0
  2138. data/vendor/local/share/man/man3/gnutls_x509_crt_set_key_usage.3 +38 -0
  2139. data/vendor/local/share/man/man3/gnutls_x509_crt_set_pin_function.3 +44 -0
  2140. data/vendor/local/share/man/man3/gnutls_x509_crt_set_policy.3 +47 -0
  2141. data/vendor/local/share/man/man3/gnutls_x509_crt_set_private_key_usage_period.3 +40 -0
  2142. data/vendor/local/share/man/man3/gnutls_x509_crt_set_proxy.3 +46 -0
  2143. data/vendor/local/share/man/man3/gnutls_x509_crt_set_proxy_dn.3 +47 -0
  2144. data/vendor/local/share/man/man3/gnutls_x509_crt_set_pubkey.3 +41 -0
  2145. data/vendor/local/share/man/man3/gnutls_x509_crt_set_serial.3 +45 -0
  2146. data/vendor/local/share/man/man3/gnutls_x509_crt_set_subject_alt_name.3 +47 -0
  2147. data/vendor/local/share/man/man3/gnutls_x509_crt_set_subject_alternative_name.3 +45 -0
  2148. data/vendor/local/share/man/man3/gnutls_x509_crt_set_subject_key_id.3 +41 -0
  2149. data/vendor/local/share/man/man3/gnutls_x509_crt_set_version.3 +45 -0
  2150. data/vendor/local/share/man/man3/gnutls_x509_crt_sign.3 +41 -0
  2151. data/vendor/local/share/man/man3/gnutls_x509_crt_sign2.3 +48 -0
  2152. data/vendor/local/share/man/man3/gnutls_x509_crt_verify.3 +46 -0
  2153. data/vendor/local/share/man/man3/gnutls_x509_crt_verify_data.3 +46 -0
  2154. data/vendor/local/share/man/man3/gnutls_x509_crt_verify_hash.3 +46 -0
  2155. data/vendor/local/share/man/man3/gnutls_x509_dn_deinit.3 +36 -0
  2156. data/vendor/local/share/man/man3/gnutls_x509_dn_export.3 +50 -0
  2157. data/vendor/local/share/man/man3/gnutls_x509_dn_export2.3 +47 -0
  2158. data/vendor/local/share/man/man3/gnutls_x509_dn_get_rdn_ava.3 +58 -0
  2159. data/vendor/local/share/man/man3/gnutls_x509_dn_import.3 +43 -0
  2160. data/vendor/local/share/man/man3/gnutls_x509_dn_init.3 +41 -0
  2161. data/vendor/local/share/man/man3/gnutls_x509_dn_oid_known.3 +41 -0
  2162. data/vendor/local/share/man/man3/gnutls_x509_dn_oid_name.3 +42 -0
  2163. data/vendor/local/share/man/man3/gnutls_x509_policy_release.3 +36 -0
  2164. data/vendor/local/share/man/man3/gnutls_x509_privkey_cpy.3 +39 -0
  2165. data/vendor/local/share/man/man3/gnutls_x509_privkey_deinit.3 +33 -0
  2166. data/vendor/local/share/man/man3/gnutls_x509_privkey_export.3 +52 -0
  2167. data/vendor/local/share/man/man3/gnutls_x509_privkey_export2.3 +49 -0
  2168. data/vendor/local/share/man/man3/gnutls_x509_privkey_export2_pkcs8.3 +58 -0
  2169. data/vendor/local/share/man/man3/gnutls_x509_privkey_export_dsa_raw.3 +48 -0
  2170. data/vendor/local/share/man/man3/gnutls_x509_privkey_export_ecc_raw.3 +48 -0
  2171. data/vendor/local/share/man/man3/gnutls_x509_privkey_export_pkcs8.3 +61 -0
  2172. data/vendor/local/share/man/man3/gnutls_x509_privkey_export_rsa_raw.3 +50 -0
  2173. data/vendor/local/share/man/man3/gnutls_x509_privkey_export_rsa_raw2.3 +56 -0
  2174. data/vendor/local/share/man/man3/gnutls_x509_privkey_fix.3 +37 -0
  2175. data/vendor/local/share/man/man3/gnutls_x509_privkey_generate.3 +49 -0
  2176. data/vendor/local/share/man/man3/gnutls_x509_privkey_get_key_id.3 +50 -0
  2177. data/vendor/local/share/man/man3/gnutls_x509_privkey_get_pk_algorithm.3 +37 -0
  2178. data/vendor/local/share/man/man3/gnutls_x509_privkey_get_pk_algorithm2.3 +39 -0
  2179. data/vendor/local/share/man/man3/gnutls_x509_privkey_import.3 +46 -0
  2180. data/vendor/local/share/man/man3/gnutls_x509_privkey_import2.3 +52 -0
  2181. data/vendor/local/share/man/man3/gnutls_x509_privkey_import_dsa_raw.3 +48 -0
  2182. data/vendor/local/share/man/man3/gnutls_x509_privkey_import_ecc_raw.3 +48 -0
  2183. data/vendor/local/share/man/man3/gnutls_x509_privkey_import_openssl.3 +48 -0
  2184. data/vendor/local/share/man/man3/gnutls_x509_privkey_import_pkcs8.3 +59 -0
  2185. data/vendor/local/share/man/man3/gnutls_x509_privkey_import_rsa_raw.3 +50 -0
  2186. data/vendor/local/share/man/man3/gnutls_x509_privkey_import_rsa_raw2.3 +54 -0
  2187. data/vendor/local/share/man/man3/gnutls_x509_privkey_init.3 +36 -0
  2188. data/vendor/local/share/man/man3/gnutls_x509_privkey_sec_param.3 +39 -0
  2189. data/vendor/local/share/man/man3/gnutls_x509_privkey_sign_data.3 +59 -0
  2190. data/vendor/local/share/man/man3/gnutls_x509_privkey_sign_hash.3 +45 -0
  2191. data/vendor/local/share/man/man3/gnutls_x509_privkey_verify_params.3 +36 -0
  2192. data/vendor/local/share/man/man3/gnutls_x509_rdn_get.3 +44 -0
  2193. data/vendor/local/share/man/man3/gnutls_x509_rdn_get_by_oid.3 +51 -0
  2194. data/vendor/local/share/man/man3/gnutls_x509_rdn_get_oid.3 +47 -0
  2195. data/vendor/local/share/man/man3/gnutls_x509_trust_list_add_cas.3 +45 -0
  2196. data/vendor/local/share/man/man3/gnutls_x509_trust_list_add_crls.3 +50 -0
  2197. data/vendor/local/share/man/man3/gnutls_x509_trust_list_add_named_crt.3 +56 -0
  2198. data/vendor/local/share/man/man3/gnutls_x509_trust_list_add_system_trust.3 +43 -0
  2199. data/vendor/local/share/man/man3/gnutls_x509_trust_list_add_trust_file.3 +49 -0
  2200. data/vendor/local/share/man/man3/gnutls_x509_trust_list_add_trust_mem.3 +48 -0
  2201. data/vendor/local/share/man/man3/gnutls_x509_trust_list_deinit.3 +37 -0
  2202. data/vendor/local/share/man/man3/gnutls_x509_trust_list_get_issuer.3 +45 -0
  2203. data/vendor/local/share/man/man3/gnutls_x509_trust_list_init.3 +40 -0
  2204. data/vendor/local/share/man/man3/gnutls_x509_trust_list_remove_cas.3 +48 -0
  2205. data/vendor/local/share/man/man3/gnutls_x509_trust_list_remove_trust_file.3 +46 -0
  2206. data/vendor/local/share/man/man3/gnutls_x509_trust_list_remove_trust_mem.3 +44 -0
  2207. data/vendor/local/share/man/man3/gnutls_x509_trust_list_verify_crt.3 +50 -0
  2208. data/vendor/local/share/man/man3/gnutls_x509_trust_list_verify_named_crt.3 +53 -0
  2209. data/vendor/local/share/man/man3/iconv.3 +92 -0
  2210. data/vendor/local/share/man/man3/iconv_close.3 +31 -0
  2211. data/vendor/local/share/man/man3/iconv_open.3 +205 -0
  2212. data/vendor/local/share/man/man3/iconv_open_into.3 +47 -0
  2213. data/vendor/local/share/man/man3/iconvctl.3 +67 -0
  2214. data/vendor/local/share/man/man3/ngettext.3 +60 -0
  2215. data/vendor/local/share/man/man3/textdomain.3 +57 -0
  2216. data/vendor/local/share/man/man3/xssl_client_init.3 +56 -0
  2217. data/vendor/local/share/man/man3/xssl_cred_deinit.3 +37 -0
  2218. data/vendor/local/share/man/man3/xssl_cred_init.3 +48 -0
  2219. data/vendor/local/share/man/man3/xssl_deinit.3 +36 -0
  2220. data/vendor/local/share/man/man3/xssl_flush.3 +39 -0
  2221. data/vendor/local/share/man/man3/xssl_get_session.3 +35 -0
  2222. data/vendor/local/share/man/man3/xssl_getdelim.3 +49 -0
  2223. data/vendor/local/share/man/man3/xssl_printf.3 +45 -0
  2224. data/vendor/local/share/man/man3/xssl_read.3 +43 -0
  2225. data/vendor/local/share/man/man3/xssl_server_init.3 +50 -0
  2226. data/vendor/local/share/man/man3/xssl_sinit.3 +44 -0
  2227. data/vendor/local/share/man/man3/xssl_write.3 +47 -0
  2228. metadata +2311 -0
@@ -0,0 +1,3865 @@
1
+ This is ../../gmp/doc/gmp.info, produced by makeinfo version 4.13 from
2
+ ../../gmp/doc/gmp.texi.
3
+
4
+ This manual describes how to install and use the GNU multiple precision
5
+ arithmetic library, version 6.0.0.
6
+
7
+ Copyright 1991, 1993-2014 Free Software Foundation, Inc.
8
+
9
+ Permission is granted to copy, distribute and/or modify this
10
+ document under the terms of the GNU Free Documentation License, Version
11
+ 1.3 or any later version published by the Free Software Foundation;
12
+ with no Invariant Sections, with the Front-Cover Texts being "A GNU
13
+ Manual", and with the Back-Cover Texts being "You have freedom to copy
14
+ and modify this GNU Manual, like GNU software". A copy of the license
15
+ is included in *note GNU Free Documentation License::.
16
+
17
+ INFO-DIR-SECTION GNU libraries
18
+ START-INFO-DIR-ENTRY
19
+ * gmp: (gmp). GNU Multiple Precision Arithmetic Library.
20
+ END-INFO-DIR-ENTRY
21
+
22
+ 
23
+ File: gmp.info, Node: Exact Remainder, Next: Small Quotient Division, Prev: Exact Division, Up: Division Algorithms
24
+
25
+ 15.2.6 Exact Remainder
26
+ ----------------------
27
+
28
+ If the exact division algorithm is done with a full subtraction at each
29
+ stage and the dividend isn't a multiple of the divisor, then low zero
30
+ limbs are produced but with a remainder in the high limbs. For
31
+ dividend a, divisor d, quotient q, and b = 2^mp_bits_per_limb, this
32
+ remainder r is of the form
33
+
34
+ a = q*d + r*b^n
35
+
36
+ n represents the number of zero limbs produced by the subtractions,
37
+ that being the number of limbs produced for q. r will be in the range
38
+ 0<=r<d and can be viewed as a remainder, but one shifted up by a factor
39
+ of b^n.
40
+
41
+ Carrying out full subtractions at each stage means the same number
42
+ of cross products must be done as a normal division, but there's still
43
+ some single limb divisions saved. When d is a single limb some
44
+ simplifications arise, providing good speedups on a number of
45
+ processors.
46
+
47
+ The functions `mpn_divexact_by3', `mpn_modexact_1_odd' and the
48
+ internal `mpn_redc_X' functions differ subtly in how they return r,
49
+ leading to some negations in the above formula, but all are essentially
50
+ the same.
51
+
52
+ Clearly r is zero when a is a multiple of d, and this leads to
53
+ divisibility or congruence tests which are potentially more efficient
54
+ than a normal division.
55
+
56
+ The factor of b^n on r can be ignored in a GCD when d is odd, hence
57
+ the use of `mpn_modexact_1_odd' by `mpn_gcd_1' and `mpz_kronecker_ui'
58
+ etc (*note Greatest Common Divisor Algorithms::).
59
+
60
+ Montgomery's REDC method for modular multiplications uses operands
61
+ of the form of x*b^-n and y*b^-n and on calculating (x*b^-n)*(y*b^-n)
62
+ uses the factor of b^n in the exact remainder to reach a product in the
63
+ same form (x*y)*b^-n (*note Modular Powering Algorithm::).
64
+
65
+ Notice that r generally gives no useful information about the
66
+ ordinary remainder a mod d since b^n mod d could be anything. If
67
+ however b^n == 1 mod d, then r is the negative of the ordinary
68
+ remainder. This occurs whenever d is a factor of b^n-1, as for example
69
+ with 3 in `mpn_divexact_by3'. For a 32 or 64 bit limb other such
70
+ factors include 5, 17 and 257, but no particular use has been found for
71
+ this.
72
+
73
+ 
74
+ File: gmp.info, Node: Small Quotient Division, Prev: Exact Remainder, Up: Division Algorithms
75
+
76
+ 15.2.7 Small Quotient Division
77
+ ------------------------------
78
+
79
+ An NxM division where the number of quotient limbs Q=N-M is small can
80
+ be optimized somewhat.
81
+
82
+ An ordinary basecase division normalizes the divisor by shifting it
83
+ to make the high bit set, shifting the dividend accordingly, and
84
+ shifting the remainder back down at the end of the calculation. This
85
+ is wasteful if only a few quotient limbs are to be formed. Instead a
86
+ division of just the top 2*Q limbs of the dividend by the top Q limbs
87
+ of the divisor can be used to form a trial quotient. This requires
88
+ only those limbs normalized, not the whole of the divisor and dividend.
89
+
90
+ A multiply and subtract then applies the trial quotient to the M-Q
91
+ unused limbs of the divisor and N-Q dividend limbs (which includes Q
92
+ limbs remaining from the trial quotient division). The starting trial
93
+ quotient can be 1 or 2 too big, but all cases of 2 too big and most
94
+ cases of 1 too big are detected by first comparing the most significant
95
+ limbs that will arise from the subtraction. An addback is done if the
96
+ quotient still turns out to be 1 too big.
97
+
98
+ This whole procedure is essentially the same as one step of the
99
+ basecase algorithm done in a Q limb base, though with the trial
100
+ quotient test done only with the high limbs, not an entire Q limb
101
+ "digit" product. The correctness of this weaker test can be
102
+ established by following the argument of Knuth section 4.3.1 exercise
103
+ 20 but with the v2*q>b*r+u2 condition appropriately relaxed.
104
+
105
+ 
106
+ File: gmp.info, Node: Greatest Common Divisor Algorithms, Next: Powering Algorithms, Prev: Division Algorithms, Up: Algorithms
107
+
108
+ 15.3 Greatest Common Divisor
109
+ ============================
110
+
111
+ * Menu:
112
+
113
+ * Binary GCD::
114
+ * Lehmer's Algorithm::
115
+ * Subquadratic GCD::
116
+ * Extended GCD::
117
+ * Jacobi Symbol::
118
+
119
+ 
120
+ File: gmp.info, Node: Binary GCD, Next: Lehmer's Algorithm, Prev: Greatest Common Divisor Algorithms, Up: Greatest Common Divisor Algorithms
121
+
122
+ 15.3.1 Binary GCD
123
+ -----------------
124
+
125
+ At small sizes GMP uses an O(N^2) binary style GCD. This is described
126
+ in many textbooks, for example Knuth section 4.5.2 algorithm B. It
127
+ simply consists of successively reducing odd operands a and b using
128
+
129
+ a,b = abs(a-b),min(a,b)
130
+ strip factors of 2 from a
131
+
132
+ The Euclidean GCD algorithm, as per Knuth algorithms E and A,
133
+ repeatedly computes the quotient q = floor(a/b) and replaces a,b by v,
134
+ u - q v. The binary algorithm has so far been found to be faster than
135
+ the Euclidean algorithm everywhere. One reason the binary method does
136
+ well is that the implied quotient at each step is usually small, so
137
+ often only one or two subtractions are needed to get the same effect as
138
+ a division. Quotients 1, 2 and 3 for example occur 67.7% of the time,
139
+ see Knuth section 4.5.3 Theorem E.
140
+
141
+ When the implied quotient is large, meaning b is much smaller than
142
+ a, then a division is worthwhile. This is the basis for the initial a
143
+ mod b reductions in `mpn_gcd' and `mpn_gcd_1' (the latter for both Nx1
144
+ and 1x1 cases). But after that initial reduction, big quotients occur
145
+ too rarely to make it worth checking for them.
146
+
147
+
148
+ The final 1x1 GCD in `mpn_gcd_1' is done in the generic C code as
149
+ described above. For two N-bit operands, the algorithm takes about
150
+ 0.68 iterations per bit. For optimum performance some attention needs
151
+ to be paid to the way the factors of 2 are stripped from a.
152
+
153
+ Firstly it may be noted that in twos complement the number of low
154
+ zero bits on a-b is the same as b-a, so counting or testing can begin on
155
+ a-b without waiting for abs(a-b) to be determined.
156
+
157
+ A loop stripping low zero bits tends not to branch predict well,
158
+ since the condition is data dependent. But on average there's only a
159
+ few low zeros, so an option is to strip one or two bits arithmetically
160
+ then loop for more (as done for AMD K6). Or use a lookup table to get
161
+ a count for several bits then loop for more (as done for AMD K7). An
162
+ alternative approach is to keep just one of a or b odd and iterate
163
+
164
+ a,b = abs(a-b), min(a,b)
165
+ a = a/2 if even
166
+ b = b/2 if even
167
+
168
+ This requires about 1.25 iterations per bit, but stripping of a
169
+ single bit at each step avoids any branching. Repeating the bit strip
170
+ reduces to about 0.9 iterations per bit, which may be a worthwhile
171
+ tradeoff.
172
+
173
+ Generally with the above approaches a speed of perhaps 6 cycles per
174
+ bit can be achieved, which is still not terribly fast with for instance
175
+ a 64-bit GCD taking nearly 400 cycles. It's this sort of time which
176
+ means it's not usually advantageous to combine a set of divisibility
177
+ tests into a GCD.
178
+
179
+ Currently, the binary algorithm is used for GCD only when N < 3.
180
+
181
+ 
182
+ File: gmp.info, Node: Lehmer's Algorithm, Next: Subquadratic GCD, Prev: Binary GCD, Up: Greatest Common Divisor Algorithms
183
+
184
+ 15.3.2 Lehmer's algorithm
185
+ -------------------------
186
+
187
+ Lehmer's improvement of the Euclidean algorithms is based on the
188
+ observation that the initial part of the quotient sequence depends only
189
+ on the most significant parts of the inputs. The variant of Lehmer's
190
+ algorithm used in GMP splits off the most significant two limbs, as
191
+ suggested, e.g., in "A Double-Digit Lehmer-Euclid Algorithm" by
192
+ Jebelean (*note References::). The quotients of two double-limb inputs
193
+ are collected as a 2 by 2 matrix with single-limb elements. This is
194
+ done by the function `mpn_hgcd2'. The resulting matrix is applied to
195
+ the inputs using `mpn_mul_1' and `mpn_submul_1'. Each iteration usually
196
+ reduces the inputs by almost one limb. In the rare case of a large
197
+ quotient, no progress can be made by examining just the most
198
+ significant two limbs, and the quotient is computed using plain
199
+ division.
200
+
201
+ The resulting algorithm is asymptotically O(N^2), just as the
202
+ Euclidean algorithm and the binary algorithm. The quadratic part of the
203
+ work are the calls to `mpn_mul_1' and `mpn_submul_1'. For small sizes,
204
+ the linear work is also significant. There are roughly N calls to the
205
+ `mpn_hgcd2' function. This function uses a couple of important
206
+ optimizations:
207
+
208
+ * It uses the same relaxed notion of correctness as `mpn_hgcd' (see
209
+ next section). This means that when called with the most
210
+ significant two limbs of two large numbers, the returned matrix
211
+ does not always correspond exactly to the initial quotient
212
+ sequence for the two large numbers; the final quotient may
213
+ sometimes be one off.
214
+
215
+ * It takes advantage of the fact the quotients are usually small.
216
+ The division operator is not used, since the corresponding
217
+ assembler instruction is very slow on most architectures. (This
218
+ code could probably be improved further, it uses many branches
219
+ that are unfriendly to prediction).
220
+
221
+ * It switches from double-limb calculations to single-limb
222
+ calculations half-way through, when the input numbers have been
223
+ reduced in size from two limbs to one and a half.
224
+
225
+
226
+ 
227
+ File: gmp.info, Node: Subquadratic GCD, Next: Extended GCD, Prev: Lehmer's Algorithm, Up: Greatest Common Divisor Algorithms
228
+
229
+ 15.3.3 Subquadratic GCD
230
+ -----------------------
231
+
232
+ For inputs larger than `GCD_DC_THRESHOLD', GCD is computed via the HGCD
233
+ (Half GCD) function, as a generalization to Lehmer's algorithm.
234
+
235
+ Let the inputs a,b be of size N limbs each. Put S = floor(N/2) + 1.
236
+ Then HGCD(a,b) returns a transformation matrix T with non-negative
237
+ elements, and reduced numbers (c;d) = T^-1 (a;b). The reduced numbers
238
+ c,d must be larger than S limbs, while their difference abs(c-d) must
239
+ fit in S limbs. The matrix elements will also be of size roughly N/2.
240
+
241
+ The HGCD base case uses Lehmer's algorithm, but with the above stop
242
+ condition that returns reduced numbers and the corresponding
243
+ transformation matrix half-way through. For inputs larger than
244
+ `HGCD_THRESHOLD', HGCD is computed recursively, using the divide and
245
+ conquer algorithm in "On Sch�nhage's algorithm and subquadratic integer
246
+ GCD computation" by M�ller (*note References::). The recursive
247
+ algorithm consists of these main steps.
248
+
249
+ * Call HGCD recursively, on the most significant N/2 limbs. Apply the
250
+ resulting matrix T_1 to the full numbers, reducing them to a size
251
+ just above 3N/2.
252
+
253
+ * Perform a small number of division or subtraction steps to reduce
254
+ the numbers to size below 3N/2. This is essential mainly for the
255
+ unlikely case of large quotients.
256
+
257
+ * Call HGCD recursively, on the most significant N/2 limbs of the
258
+ reduced numbers. Apply the resulting matrix T_2 to the full
259
+ numbers, reducing them to a size just above N/2.
260
+
261
+ * Compute T = T_1 T_2.
262
+
263
+ * Perform a small number of division and subtraction steps to
264
+ satisfy the requirements, and return.
265
+
266
+ GCD is then implemented as a loop around HGCD, similarly to Lehmer's
267
+ algorithm. Where Lehmer repeatedly chops off the top two limbs, calls
268
+ `mpn_hgcd2', and applies the resulting matrix to the full numbers, the
269
+ subquadratic GCD chops off the most significant third of the limbs (the
270
+ proportion is a tuning parameter, and 1/3 seems to be more efficient
271
+ than, e.g, 1/2), calls `mpn_hgcd', and applies the resulting matrix.
272
+ Once the input numbers are reduced to size below `GCD_DC_THRESHOLD',
273
+ Lehmer's algorithm is used for the rest of the work.
274
+
275
+ The asymptotic running time of both HGCD and GCD is O(M(N)*log(N)),
276
+ where M(N) is the time for multiplying two N-limb numbers.
277
+
278
+ 
279
+ File: gmp.info, Node: Extended GCD, Next: Jacobi Symbol, Prev: Subquadratic GCD, Up: Greatest Common Divisor Algorithms
280
+
281
+ 15.3.4 Extended GCD
282
+ -------------------
283
+
284
+ The extended GCD function, or GCDEXT, calculates gcd(a,b) and also
285
+ cofactors x and y satisfying a*x+b*y=gcd(a,b). All the algorithms used
286
+ for plain GCD are extended to handle this case. The binary algorithm is
287
+ used only for single-limb GCDEXT. Lehmer's algorithm is used for sizes
288
+ up to `GCDEXT_DC_THRESHOLD'. Above this threshold, GCDEXT is
289
+ implemented as a loop around HGCD, but with more book-keeping to keep
290
+ track of the cofactors. This gives the same asymptotic running time as
291
+ for GCD and HGCD, O(M(N)*log(N))
292
+
293
+ One difference to plain GCD is that while the inputs a and b are
294
+ reduced as the algorithm proceeds, the cofactors x and y grow in size.
295
+ This makes the tuning of the chopping-point more difficult. The current
296
+ code chops off the most significant half of the inputs for the call to
297
+ HGCD in the first iteration, and the most significant two thirds for
298
+ the remaining calls. This strategy could surely be improved. Also the
299
+ stop condition for the loop, where Lehmer's algorithm is invoked once
300
+ the inputs are reduced below `GCDEXT_DC_THRESHOLD', could maybe be
301
+ improved by taking into account the current size of the cofactors.
302
+
303
+ 
304
+ File: gmp.info, Node: Jacobi Symbol, Prev: Extended GCD, Up: Greatest Common Divisor Algorithms
305
+
306
+ 15.3.5 Jacobi Symbol
307
+ --------------------
308
+
309
+ [This section is obsolete. The current Jacobi code actually uses a very
310
+ efficient algorithm.]
311
+
312
+ `mpz_jacobi' and `mpz_kronecker' are currently implemented with a
313
+ simple binary algorithm similar to that described for the GCDs (*note
314
+ Binary GCD::). They're not very fast when both inputs are large.
315
+ Lehmer's multi-step improvement or a binary based multi-step algorithm
316
+ is likely to be better.
317
+
318
+ When one operand fits a single limb, and that includes
319
+ `mpz_kronecker_ui' and friends, an initial reduction is done with
320
+ either `mpn_mod_1' or `mpn_modexact_1_odd', followed by the binary
321
+ algorithm on a single limb. The binary algorithm is well suited to a
322
+ single limb, and the whole calculation in this case is quite efficient.
323
+
324
+ In all the routines sign changes for the result are accumulated
325
+ using some bit twiddling, avoiding table lookups or conditional jumps.
326
+
327
+ 
328
+ File: gmp.info, Node: Powering Algorithms, Next: Root Extraction Algorithms, Prev: Greatest Common Divisor Algorithms, Up: Algorithms
329
+
330
+ 15.4 Powering Algorithms
331
+ ========================
332
+
333
+ * Menu:
334
+
335
+ * Normal Powering Algorithm::
336
+ * Modular Powering Algorithm::
337
+
338
+ 
339
+ File: gmp.info, Node: Normal Powering Algorithm, Next: Modular Powering Algorithm, Prev: Powering Algorithms, Up: Powering Algorithms
340
+
341
+ 15.4.1 Normal Powering
342
+ ----------------------
343
+
344
+ Normal `mpz' or `mpf' powering uses a simple binary algorithm,
345
+ successively squaring and then multiplying by the base when a 1 bit is
346
+ seen in the exponent, as per Knuth section 4.6.3. The "left to right"
347
+ variant described there is used rather than algorithm A, since it's
348
+ just as easy and can be done with somewhat less temporary memory.
349
+
350
+ 
351
+ File: gmp.info, Node: Modular Powering Algorithm, Prev: Normal Powering Algorithm, Up: Powering Algorithms
352
+
353
+ 15.4.2 Modular Powering
354
+ -----------------------
355
+
356
+ Modular powering is implemented using a 2^k-ary sliding window
357
+ algorithm, as per "Handbook of Applied Cryptography" algorithm 14.85
358
+ (*note References::). k is chosen according to the size of the
359
+ exponent. Larger exponents use larger values of k, the choice being
360
+ made to minimize the average number of multiplications that must
361
+ supplement the squaring.
362
+
363
+ The modular multiplies and squarings use either a simple division or
364
+ the REDC method by Montgomery (*note References::). REDC is a little
365
+ faster, essentially saving N single limb divisions in a fashion similar
366
+ to an exact remainder (*note Exact Remainder::).
367
+
368
+ 
369
+ File: gmp.info, Node: Root Extraction Algorithms, Next: Radix Conversion Algorithms, Prev: Powering Algorithms, Up: Algorithms
370
+
371
+ 15.5 Root Extraction Algorithms
372
+ ===============================
373
+
374
+ * Menu:
375
+
376
+ * Square Root Algorithm::
377
+ * Nth Root Algorithm::
378
+ * Perfect Square Algorithm::
379
+ * Perfect Power Algorithm::
380
+
381
+ 
382
+ File: gmp.info, Node: Square Root Algorithm, Next: Nth Root Algorithm, Prev: Root Extraction Algorithms, Up: Root Extraction Algorithms
383
+
384
+ 15.5.1 Square Root
385
+ ------------------
386
+
387
+ Square roots are taken using the "Karatsuba Square Root" algorithm by
388
+ Paul Zimmermann (*note References::).
389
+
390
+ An input n is split into four parts of k bits each, so with b=2^k we
391
+ have n = a3*b^3 + a2*b^2 + a1*b + a0. Part a3 must be "normalized" so
392
+ that either the high or second highest bit is set. In GMP, k is kept
393
+ on a limb boundary and the input is left shifted (by an even number of
394
+ bits) to normalize.
395
+
396
+ The square root of the high two parts is taken, by recursive
397
+ application of the algorithm (bottoming out in a one-limb Newton's
398
+ method),
399
+
400
+ s1,r1 = sqrtrem (a3*b + a2)
401
+
402
+ This is an approximation to the desired root and is extended by a
403
+ division to give s,r,
404
+
405
+ q,u = divrem (r1*b + a1, 2*s1)
406
+ s = s1*b + q
407
+ r = u*b + a0 - q^2
408
+
409
+ The normalization requirement on a3 means at this point s is either
410
+ correct or 1 too big. r is negative in the latter case, so
411
+
412
+ if r < 0 then
413
+ r = r + 2*s - 1
414
+ s = s - 1
415
+
416
+ The algorithm is expressed in a divide and conquer form, but as
417
+ noted in the paper it can also be viewed as a discrete variant of
418
+ Newton's method, or as a variation on the schoolboy method (no longer
419
+ taught) for square roots two digits at a time.
420
+
421
+ If the remainder r is not required then usually only a few high limbs
422
+ of r and u need to be calculated to determine whether an adjustment to
423
+ s is required. This optimization is not currently implemented.
424
+
425
+ In the Karatsuba multiplication range this algorithm is
426
+ O(1.5*M(N/2)), where M(n) is the time to multiply two numbers of n
427
+ limbs. In the FFT multiplication range this grows to a bound of
428
+ O(6*M(N/2)). In practice a factor of about 1.5 to 1.8 is found in the
429
+ Karatsuba and Toom-3 ranges, growing to 2 or 3 in the FFT range.
430
+
431
+ The algorithm does all its calculations in integers and the resulting
432
+ `mpn_sqrtrem' is used for both `mpz_sqrt' and `mpf_sqrt'. The extended
433
+ precision given by `mpf_sqrt_ui' is obtained by padding with zero limbs.
434
+
435
+ 
436
+ File: gmp.info, Node: Nth Root Algorithm, Next: Perfect Square Algorithm, Prev: Square Root Algorithm, Up: Root Extraction Algorithms
437
+
438
+ 15.5.2 Nth Root
439
+ ---------------
440
+
441
+ Integer Nth roots are taken using Newton's method with the following
442
+ iteration, where A is the input and n is the root to be taken.
443
+
444
+ 1 A
445
+ a[i+1] = - * ( --------- + (n-1)*a[i] )
446
+ n a[i]^(n-1)
447
+
448
+ The initial approximation a[1] is generated bitwise by successively
449
+ powering a trial root with or without new 1 bits, aiming to be just
450
+ above the true root. The iteration converges quadratically when
451
+ started from a good approximation. When n is large more initial bits
452
+ are needed to get good convergence. The current implementation is not
453
+ particularly well optimized.
454
+
455
+ 
456
+ File: gmp.info, Node: Perfect Square Algorithm, Next: Perfect Power Algorithm, Prev: Nth Root Algorithm, Up: Root Extraction Algorithms
457
+
458
+ 15.5.3 Perfect Square
459
+ ---------------------
460
+
461
+ A significant fraction of non-squares can be quickly identified by
462
+ checking whether the input is a quadratic residue modulo small integers.
463
+
464
+ `mpz_perfect_square_p' first tests the input mod 256, which means
465
+ just examining the low byte. Only 44 different values occur for
466
+ squares mod 256, so 82.8% of inputs can be immediately identified as
467
+ non-squares.
468
+
469
+ On a 32-bit system similar tests are done mod 9, 5, 7, 13 and 17,
470
+ for a total 99.25% of inputs identified as non-squares. On a 64-bit
471
+ system 97 is tested too, for a total 99.62%.
472
+
473
+ These moduli are chosen because they're factors of 2^24-1 (or 2^48-1
474
+ for 64-bits), and such a remainder can be quickly taken just using
475
+ additions (see `mpn_mod_34lsub1').
476
+
477
+ When nails are in use moduli are instead selected by the `gen-psqr.c'
478
+ program and applied with an `mpn_mod_1'. The same 2^24-1 or 2^48-1
479
+ could be done with nails using some extra bit shifts, but this is not
480
+ currently implemented.
481
+
482
+ In any case each modulus is applied to the `mpn_mod_34lsub1' or
483
+ `mpn_mod_1' remainder and a table lookup identifies non-squares. By
484
+ using a "modexact" style calculation, and suitably permuted tables,
485
+ just one multiply each is required, see the code for details. Moduli
486
+ are also combined to save operations, so long as the lookup tables
487
+ don't become too big. `gen-psqr.c' does all the pre-calculations.
488
+
489
+ A square root must still be taken for any value that passes these
490
+ tests, to verify it's really a square and not one of the small fraction
491
+ of non-squares that get through (i.e. a pseudo-square to all the tested
492
+ bases).
493
+
494
+ Clearly more residue tests could be done, `mpz_perfect_square_p' only
495
+ uses a compact and efficient set. Big inputs would probably benefit
496
+ from more residue testing, small inputs might be better off with less.
497
+ The assumed distribution of squares versus non-squares in the input
498
+ would affect such considerations.
499
+
500
+ 
501
+ File: gmp.info, Node: Perfect Power Algorithm, Prev: Perfect Square Algorithm, Up: Root Extraction Algorithms
502
+
503
+ 15.5.4 Perfect Power
504
+ --------------------
505
+
506
+ Detecting perfect powers is required by some factorization algorithms.
507
+ Currently `mpz_perfect_power_p' is implemented using repeated Nth root
508
+ extractions, though naturally only prime roots need to be considered.
509
+ (*Note Nth Root Algorithm::.)
510
+
511
+ If a prime divisor p with multiplicity e can be found, then only
512
+ roots which are divisors of e need to be considered, much reducing the
513
+ work necessary. To this end divisibility by a set of small primes is
514
+ checked.
515
+
516
+ 
517
+ File: gmp.info, Node: Radix Conversion Algorithms, Next: Other Algorithms, Prev: Root Extraction Algorithms, Up: Algorithms
518
+
519
+ 15.6 Radix Conversion
520
+ =====================
521
+
522
+ Radix conversions are less important than other algorithms. A program
523
+ dominated by conversions should probably use a different data
524
+ representation.
525
+
526
+ * Menu:
527
+
528
+ * Binary to Radix::
529
+ * Radix to Binary::
530
+
531
+ 
532
+ File: gmp.info, Node: Binary to Radix, Next: Radix to Binary, Prev: Radix Conversion Algorithms, Up: Radix Conversion Algorithms
533
+
534
+ 15.6.1 Binary to Radix
535
+ ----------------------
536
+
537
+ Conversions from binary to a power-of-2 radix use a simple and fast
538
+ O(N) bit extraction algorithm.
539
+
540
+ Conversions from binary to other radices use one of two algorithms.
541
+ Sizes below `GET_STR_PRECOMPUTE_THRESHOLD' use a basic O(N^2) method.
542
+ Repeated divisions by b^n are made, where b is the radix and n is the
543
+ biggest power that fits in a limb. But instead of simply using the
544
+ remainder r from such divisions, an extra divide step is done to give a
545
+ fractional limb representing r/b^n. The digits of r can then be
546
+ extracted using multiplications by b rather than divisions. Special
547
+ case code is provided for decimal, allowing multiplications by 10 to
548
+ optimize to shifts and adds.
549
+
550
+ Above `GET_STR_PRECOMPUTE_THRESHOLD' a sub-quadratic algorithm is
551
+ used. For an input t, powers b^(n*2^i) of the radix are calculated,
552
+ until a power between t and sqrt(t) is reached. t is then divided by
553
+ that largest power, giving a quotient which is the digits above that
554
+ power, and a remainder which is those below. These two parts are in
555
+ turn divided by the second highest power, and so on recursively. When
556
+ a piece has been divided down to less than `GET_STR_DC_THRESHOLD'
557
+ limbs, the basecase algorithm described above is used.
558
+
559
+ The advantage of this algorithm is that big divisions can make use
560
+ of the sub-quadratic divide and conquer division (*note Divide and
561
+ Conquer Division::), and big divisions tend to have less overheads than
562
+ lots of separate single limb divisions anyway. But in any case the
563
+ cost of calculating the powers b^(n*2^i) must first be overcome.
564
+
565
+ `GET_STR_PRECOMPUTE_THRESHOLD' and `GET_STR_DC_THRESHOLD' represent
566
+ the same basic thing, the point where it becomes worth doing a big
567
+ division to cut the input in half. `GET_STR_PRECOMPUTE_THRESHOLD'
568
+ includes the cost of calculating the radix power required, whereas
569
+ `GET_STR_DC_THRESHOLD' assumes that's already available, which is the
570
+ case when recursing.
571
+
572
+ Since the base case produces digits from least to most significant
573
+ but they want to be stored from most to least, it's necessary to
574
+ calculate in advance how many digits there will be, or at least be sure
575
+ not to underestimate that. For GMP the number of input bits is
576
+ multiplied by `chars_per_bit_exactly' from `mp_bases', rounding up.
577
+ The result is either correct or one too big.
578
+
579
+ Examining some of the high bits of the input could increase the
580
+ chance of getting the exact number of digits, but an exact result every
581
+ time would not be practical, since in general the difference between
582
+ numbers 100... and 99... is only in the last few bits and the work to
583
+ identify 99... might well be almost as much as a full conversion.
584
+
585
+ `mpf_get_str' doesn't currently use the algorithm described here, it
586
+ multiplies or divides by a power of b to move the radix point to the
587
+ just above the highest non-zero digit (or at worst one above that
588
+ location), then multiplies by b^n to bring out digits. This is O(N^2)
589
+ and is certainly not optimal.
590
+
591
+ The r/b^n scheme described above for using multiplications to bring
592
+ out digits might be useful for more than a single limb. Some brief
593
+ experiments with it on the base case when recursing didn't give a
594
+ noticeable improvement, but perhaps that was only due to the
595
+ implementation. Something similar would work for the sub-quadratic
596
+ divisions too, though there would be the cost of calculating a bigger
597
+ radix power.
598
+
599
+ Another possible improvement for the sub-quadratic part would be to
600
+ arrange for radix powers that balanced the sizes of quotient and
601
+ remainder produced, i.e. the highest power would be an b^(n*k)
602
+ approximately equal to sqrt(t), not restricted to a 2^i factor. That
603
+ ought to smooth out a graph of times against sizes, but may or may not
604
+ be a net speedup.
605
+
606
+ 
607
+ File: gmp.info, Node: Radix to Binary, Prev: Binary to Radix, Up: Radix Conversion Algorithms
608
+
609
+ 15.6.2 Radix to Binary
610
+ ----------------------
611
+
612
+ *This section needs to be rewritten, it currently describes the
613
+ algorithms used before GMP 4.3.*
614
+
615
+ Conversions from a power-of-2 radix into binary use a simple and fast
616
+ O(N) bitwise concatenation algorithm.
617
+
618
+ Conversions from other radices use one of two algorithms. Sizes
619
+ below `SET_STR_PRECOMPUTE_THRESHOLD' use a basic O(N^2) method. Groups
620
+ of n digits are converted to limbs, where n is the biggest power of the
621
+ base b which will fit in a limb, then those groups are accumulated into
622
+ the result by multiplying by b^n and adding. This saves
623
+ multi-precision operations, as per Knuth section 4.4 part E (*note
624
+ References::). Some special case code is provided for decimal, giving
625
+ the compiler a chance to optimize multiplications by 10.
626
+
627
+ Above `SET_STR_PRECOMPUTE_THRESHOLD' a sub-quadratic algorithm is
628
+ used. First groups of n digits are converted into limbs. Then adjacent
629
+ limbs are combined into limb pairs with x*b^n+y, where x and y are the
630
+ limbs. Adjacent limb pairs are combined into quads similarly with
631
+ x*b^(2n)+y. This continues until a single block remains, that being
632
+ the result.
633
+
634
+ The advantage of this method is that the multiplications for each x
635
+ are big blocks, allowing Karatsuba and higher algorithms to be used.
636
+ But the cost of calculating the powers b^(n*2^i) must be overcome.
637
+ `SET_STR_PRECOMPUTE_THRESHOLD' usually ends up quite big, around 5000
638
+ digits, and on some processors much bigger still.
639
+
640
+ `SET_STR_PRECOMPUTE_THRESHOLD' is based on the input digits (and
641
+ tuned for decimal), though it might be better based on a limb count, so
642
+ as to be independent of the base. But that sort of count isn't used by
643
+ the base case and so would need some sort of initial calculation or
644
+ estimate.
645
+
646
+ The main reason `SET_STR_PRECOMPUTE_THRESHOLD' is so much bigger
647
+ than the corresponding `GET_STR_PRECOMPUTE_THRESHOLD' is that
648
+ `mpn_mul_1' is much faster than `mpn_divrem_1' (often by a factor of 5,
649
+ or more).
650
+
651
+ 
652
+ File: gmp.info, Node: Other Algorithms, Next: Assembly Coding, Prev: Radix Conversion Algorithms, Up: Algorithms
653
+
654
+ 15.7 Other Algorithms
655
+ =====================
656
+
657
+ * Menu:
658
+
659
+ * Prime Testing Algorithm::
660
+ * Factorial Algorithm::
661
+ * Binomial Coefficients Algorithm::
662
+ * Fibonacci Numbers Algorithm::
663
+ * Lucas Numbers Algorithm::
664
+ * Random Number Algorithms::
665
+
666
+ 
667
+ File: gmp.info, Node: Prime Testing Algorithm, Next: Factorial Algorithm, Prev: Other Algorithms, Up: Other Algorithms
668
+
669
+ 15.7.1 Prime Testing
670
+ --------------------
671
+
672
+ The primality testing in `mpz_probab_prime_p' (*note Number Theoretic
673
+ Functions::) first does some trial division by small factors and then
674
+ uses the Miller-Rabin probabilistic primality testing algorithm, as
675
+ described in Knuth section 4.5.4 algorithm P (*note References::).
676
+
677
+ For an odd input n, and with n = q*2^k+1 where q is odd, this
678
+ algorithm selects a random base x and tests whether x^q mod n is 1 or
679
+ -1, or an x^(q*2^j) mod n is 1, for 1<=j<=k. If so then n is probably
680
+ prime, if not then n is definitely composite.
681
+
682
+ Any prime n will pass the test, but some composites do too. Such
683
+ composites are known as strong pseudoprimes to base x. No n is a
684
+ strong pseudoprime to more than 1/4 of all bases (see Knuth exercise
685
+ 22), hence with x chosen at random there's no more than a 1/4 chance a
686
+ "probable prime" will in fact be composite.
687
+
688
+ In fact strong pseudoprimes are quite rare, making the test much more
689
+ powerful than this analysis would suggest, but 1/4 is all that's proven
690
+ for an arbitrary n.
691
+
692
+ 
693
+ File: gmp.info, Node: Factorial Algorithm, Next: Binomial Coefficients Algorithm, Prev: Prime Testing Algorithm, Up: Other Algorithms
694
+
695
+ 15.7.2 Factorial
696
+ ----------------
697
+
698
+ Factorials are calculated by a combination of two algorithms. An idea is
699
+ shared among them: to compute the odd part of the factorial; a final
700
+ step takes account of the power of 2 term, by shifting.
701
+
702
+ For small n, the odd factor of n! is computed with the simple
703
+ observation that it is equal to the product of all positive odd numbers
704
+ smaller than n times the odd factor of [n/2]!, where [x] is the integer
705
+ part of x, and so on recursively. The procedure can be best illustrated
706
+ with an example,
707
+
708
+ 23! = (23.21.19.17.15.13.11.9.7.5.3)(11.9.7.5.3)(5.3)2^19
709
+
710
+ Current code collects all the factors in a single list, with a loop
711
+ and no recursion, and compute the product, with no special care for
712
+ repeated chunks.
713
+
714
+ When n is larger, computation pass trough prime sieving. An helper
715
+ function is used, as suggested by Peter Luschny:
716
+
717
+ n
718
+ -----
719
+ n! | | L(p,n)
720
+ msf(n) = -------------- = | | p
721
+ [n/2]!^2.2^k p=3
722
+
723
+ Where p ranges on odd prime numbers. The exponent k is chosen to
724
+ obtain an odd integer number: k is the number of 1 bits in the binary
725
+ representation of [n/2]. The function L(p,n) can be defined as zero
726
+ when p is composite, and, for any prime p, it is computed with:
727
+
728
+ ---
729
+ \ n
730
+ L(p,n) = / [---] mod 2 <= log (n) .
731
+ --- p^i p
732
+ i>0
733
+
734
+ With this helper function, we are able to compute the odd part of n!
735
+ using the recursion implied by n!=[n/2]!^2*msf(n)*2^k. The recursion
736
+ stops using the small-n algorithm on some [n/2^i].
737
+
738
+ Both the above algorithms use binary splitting to compute the
739
+ product of many small factors. At first as many products as possible
740
+ are accumulated in a single register, generating a list of factors that
741
+ fit in a machine word. This list is then split into halves, and the
742
+ product is computed recursively.
743
+
744
+ Such splitting is more efficient than repeated Nx1 multiplies since
745
+ it forms big multiplies, allowing Karatsuba and higher algorithms to be
746
+ used. And even below the Karatsuba threshold a big block of work can
747
+ be more efficient for the basecase algorithm.
748
+
749
+ 
750
+ File: gmp.info, Node: Binomial Coefficients Algorithm, Next: Fibonacci Numbers Algorithm, Prev: Factorial Algorithm, Up: Other Algorithms
751
+
752
+ 15.7.3 Binomial Coefficients
753
+ ----------------------------
754
+
755
+ Binomial coefficients C(n,k) are calculated by first arranging k <= n/2
756
+ using C(n,k) = C(n,n-k) if necessary, and then evaluating the following
757
+ product simply from i=2 to i=k.
758
+
759
+ k (n-k+i)
760
+ C(n,k) = (n-k+1) * prod -------
761
+ i=2 i
762
+
763
+ It's easy to show that each denominator i will divide the product so
764
+ far, so the exact division algorithm is used (*note Exact Division::).
765
+
766
+ The numerators n-k+i and denominators i are first accumulated into
767
+ as many fit a limb, to save multi-precision operations, though for
768
+ `mpz_bin_ui' this applies only to the divisors, since n is an `mpz_t'
769
+ and n-k+i in general won't fit in a limb at all.
770
+
771
+ 
772
+ File: gmp.info, Node: Fibonacci Numbers Algorithm, Next: Lucas Numbers Algorithm, Prev: Binomial Coefficients Algorithm, Up: Other Algorithms
773
+
774
+ 15.7.4 Fibonacci Numbers
775
+ ------------------------
776
+
777
+ The Fibonacci functions `mpz_fib_ui' and `mpz_fib2_ui' are designed for
778
+ calculating isolated F[n] or F[n],F[n-1] values efficiently.
779
+
780
+ For small n, a table of single limb values in `__gmp_fib_table' is
781
+ used. On a 32-bit limb this goes up to F[47], or on a 64-bit limb up
782
+ to F[93]. For convenience the table starts at F[-1].
783
+
784
+ Beyond the table, values are generated with a binary powering
785
+ algorithm, calculating a pair F[n] and F[n-1] working from high to low
786
+ across the bits of n. The formulas used are
787
+
788
+ F[2k+1] = 4*F[k]^2 - F[k-1]^2 + 2*(-1)^k
789
+ F[2k-1] = F[k]^2 + F[k-1]^2
790
+
791
+ F[2k] = F[2k+1] - F[2k-1]
792
+
793
+ At each step, k is the high b bits of n. If the next bit of n is 0
794
+ then F[2k],F[2k-1] is used, or if it's a 1 then F[2k+1],F[2k] is used,
795
+ and the process repeated until all bits of n are incorporated. Notice
796
+ these formulas require just two squares per bit of n.
797
+
798
+ It'd be possible to handle the first few n above the single limb
799
+ table with simple additions, using the defining Fibonacci recurrence
800
+ F[k+1]=F[k]+F[k-1], but this is not done since it usually turns out to
801
+ be faster for only about 10 or 20 values of n, and including a block of
802
+ code for just those doesn't seem worthwhile. If they really mattered
803
+ it'd be better to extend the data table.
804
+
805
+ Using a table avoids lots of calculations on small numbers, and
806
+ makes small n go fast. A bigger table would make more small n go fast,
807
+ it's just a question of balancing size against desired speed. For GMP
808
+ the code is kept compact, with the emphasis primarily on a good
809
+ powering algorithm.
810
+
811
+ `mpz_fib2_ui' returns both F[n] and F[n-1], but `mpz_fib_ui' is only
812
+ interested in F[n]. In this case the last step of the algorithm can
813
+ become one multiply instead of two squares. One of the following two
814
+ formulas is used, according as n is odd or even.
815
+
816
+ F[2k] = F[k]*(F[k]+2F[k-1])
817
+
818
+ F[2k+1] = (2F[k]+F[k-1])*(2F[k]-F[k-1]) + 2*(-1)^k
819
+
820
+ F[2k+1] here is the same as above, just rearranged to be a multiply.
821
+ For interest, the 2*(-1)^k term both here and above can be applied just
822
+ to the low limb of the calculation, without a carry or borrow into
823
+ further limbs, which saves some code size. See comments with
824
+ `mpz_fib_ui' and the internal `mpn_fib2_ui' for how this is done.
825
+
826
+ 
827
+ File: gmp.info, Node: Lucas Numbers Algorithm, Next: Random Number Algorithms, Prev: Fibonacci Numbers Algorithm, Up: Other Algorithms
828
+
829
+ 15.7.5 Lucas Numbers
830
+ --------------------
831
+
832
+ `mpz_lucnum2_ui' derives a pair of Lucas numbers from a pair of
833
+ Fibonacci numbers with the following simple formulas.
834
+
835
+ L[k] = F[k] + 2*F[k-1]
836
+ L[k-1] = 2*F[k] - F[k-1]
837
+
838
+ `mpz_lucnum_ui' is only interested in L[n], and some work can be
839
+ saved. Trailing zero bits on n can be handled with a single square
840
+ each.
841
+
842
+ L[2k] = L[k]^2 - 2*(-1)^k
843
+
844
+ And the lowest 1 bit can be handled with one multiply of a pair of
845
+ Fibonacci numbers, similar to what `mpz_fib_ui' does.
846
+
847
+ L[2k+1] = 5*F[k-1]*(2*F[k]+F[k-1]) - 4*(-1)^k
848
+
849
+ 
850
+ File: gmp.info, Node: Random Number Algorithms, Prev: Lucas Numbers Algorithm, Up: Other Algorithms
851
+
852
+ 15.7.6 Random Numbers
853
+ ---------------------
854
+
855
+ For the `urandomb' functions, random numbers are generated simply by
856
+ concatenating bits produced by the generator. As long as the generator
857
+ has good randomness properties this will produce well-distributed N bit
858
+ numbers.
859
+
860
+ For the `urandomm' functions, random numbers in a range 0<=R<N are
861
+ generated by taking values R of ceil(log2(N)) bits each until one
862
+ satisfies R<N. This will normally require only one or two attempts,
863
+ but the attempts are limited in case the generator is somehow
864
+ degenerate and produces only 1 bits or similar.
865
+
866
+ The Mersenne Twister generator is by Matsumoto and Nishimura (*note
867
+ References::). It has a non-repeating period of 2^19937-1, which is a
868
+ Mersenne prime, hence the name of the generator. The state is 624
869
+ words of 32-bits each, which is iterated with one XOR and shift for each
870
+ 32-bit word generated, making the algorithm very fast. Randomness
871
+ properties are also very good and this is the default algorithm used by
872
+ GMP.
873
+
874
+ Linear congruential generators are described in many text books, for
875
+ instance Knuth volume 2 (*note References::). With a modulus M and
876
+ parameters A and C, an integer state S is iterated by the formula S <-
877
+ A*S+C mod M. At each step the new state is a linear function of the
878
+ previous, mod M, hence the name of the generator.
879
+
880
+ In GMP only moduli of the form 2^N are supported, and the current
881
+ implementation is not as well optimized as it could be. Overheads are
882
+ significant when N is small, and when N is large clearly the multiply
883
+ at each step will become slow. This is not a big concern, since the
884
+ Mersenne Twister generator is better in every respect and is therefore
885
+ recommended for all normal applications.
886
+
887
+ For both generators the current state can be deduced by observing
888
+ enough output and applying some linear algebra (over GF(2) in the case
889
+ of the Mersenne Twister). This generally means raw output is
890
+ unsuitable for cryptographic applications without further hashing or
891
+ the like.
892
+
893
+ 
894
+ File: gmp.info, Node: Assembly Coding, Prev: Other Algorithms, Up: Algorithms
895
+
896
+ 15.8 Assembly Coding
897
+ ====================
898
+
899
+ The assembly subroutines in GMP are the most significant source of
900
+ speed at small to moderate sizes. At larger sizes algorithm selection
901
+ becomes more important, but of course speedups in low level routines
902
+ will still speed up everything proportionally.
903
+
904
+ Carry handling and widening multiplies that are important for GMP
905
+ can't be easily expressed in C. GCC `asm' blocks help a lot and are
906
+ provided in `longlong.h', but hand coding low level routines invariably
907
+ offers a speedup over generic C by a factor of anything from 2 to 10.
908
+
909
+ * Menu:
910
+
911
+ * Assembly Code Organisation::
912
+ * Assembly Basics::
913
+ * Assembly Carry Propagation::
914
+ * Assembly Cache Handling::
915
+ * Assembly Functional Units::
916
+ * Assembly Floating Point::
917
+ * Assembly SIMD Instructions::
918
+ * Assembly Software Pipelining::
919
+ * Assembly Loop Unrolling::
920
+ * Assembly Writing Guide::
921
+
922
+ 
923
+ File: gmp.info, Node: Assembly Code Organisation, Next: Assembly Basics, Prev: Assembly Coding, Up: Assembly Coding
924
+
925
+ 15.8.1 Code Organisation
926
+ ------------------------
927
+
928
+ The various `mpn' subdirectories contain machine-dependent code, written
929
+ in C or assembly. The `mpn/generic' subdirectory contains default code,
930
+ used when there's no machine-specific version of a particular file.
931
+
932
+ Each `mpn' subdirectory is for an ISA family. Generally 32-bit and
933
+ 64-bit variants in a family cannot share code and have separate
934
+ directories. Within a family further subdirectories may exist for CPU
935
+ variants.
936
+
937
+ In each directory a `nails' subdirectory may exist, holding code with
938
+ nails support for that CPU variant. A `NAILS_SUPPORT' directive in each
939
+ file indicates the nails values the code handles. Nails code only
940
+ exists where it's faster, or promises to be faster, than plain code.
941
+ There's no effort put into nails if they're not going to enhance a
942
+ given CPU.
943
+
944
+ 
945
+ File: gmp.info, Node: Assembly Basics, Next: Assembly Carry Propagation, Prev: Assembly Code Organisation, Up: Assembly Coding
946
+
947
+ 15.8.2 Assembly Basics
948
+ ----------------------
949
+
950
+ `mpn_addmul_1' and `mpn_submul_1' are the most important routines for
951
+ overall GMP performance. All multiplications and divisions come down to
952
+ repeated calls to these. `mpn_add_n', `mpn_sub_n', `mpn_lshift' and
953
+ `mpn_rshift' are next most important.
954
+
955
+ On some CPUs assembly versions of the internal functions
956
+ `mpn_mul_basecase' and `mpn_sqr_basecase' give significant speedups,
957
+ mainly through avoiding function call overheads. They can also
958
+ potentially make better use of a wide superscalar processor, as can
959
+ bigger primitives like `mpn_addmul_2' or `mpn_addmul_4'.
960
+
961
+ The restrictions on overlaps between sources and destinations (*note
962
+ Low-level Functions::) are designed to facilitate a variety of
963
+ implementations. For example, knowing `mpn_add_n' won't have partly
964
+ overlapping sources and destination means reading can be done far ahead
965
+ of writing on superscalar processors, and loops can be vectorized on a
966
+ vector processor, depending on the carry handling.
967
+
968
+ 
969
+ File: gmp.info, Node: Assembly Carry Propagation, Next: Assembly Cache Handling, Prev: Assembly Basics, Up: Assembly Coding
970
+
971
+ 15.8.3 Carry Propagation
972
+ ------------------------
973
+
974
+ The problem that presents most challenges in GMP is propagating carries
975
+ from one limb to the next. In functions like `mpn_addmul_1' and
976
+ `mpn_add_n', carries are the only dependencies between limb operations.
977
+
978
+ On processors with carry flags, a straightforward CISC style `adc' is
979
+ generally best. AMD K6 `mpn_addmul_1' however is an example of an
980
+ unusual set of circumstances where a branch works out better.
981
+
982
+ On RISC processors generally an add and compare for overflow is
983
+ used. This sort of thing can be seen in `mpn/generic/aors_n.c'. Some
984
+ carry propagation schemes require 4 instructions, meaning at least 4
985
+ cycles per limb, but other schemes may use just 1 or 2. On wide
986
+ superscalar processors performance may be completely determined by the
987
+ number of dependent instructions between carry-in and carry-out for
988
+ each limb.
989
+
990
+ On vector processors good use can be made of the fact that a carry
991
+ bit only very rarely propagates more than one limb. When adding a
992
+ single bit to a limb, there's only a carry out if that limb was
993
+ `0xFF...FF' which on random data will be only 1 in 2^mp_bits_per_limb.
994
+ `mpn/cray/add_n.c' is an example of this, it adds all limbs in
995
+ parallel, adds one set of carry bits in parallel and then only rarely
996
+ needs to fall through to a loop propagating further carries.
997
+
998
+ On the x86s, GCC (as of version 2.95.2) doesn't generate
999
+ particularly good code for the RISC style idioms that are necessary to
1000
+ handle carry bits in C. Often conditional jumps are generated where
1001
+ `adc' or `sbb' forms would be better. And so unfortunately almost any
1002
+ loop involving carry bits needs to be coded in assembly for best
1003
+ results.
1004
+
1005
+ 
1006
+ File: gmp.info, Node: Assembly Cache Handling, Next: Assembly Functional Units, Prev: Assembly Carry Propagation, Up: Assembly Coding
1007
+
1008
+ 15.8.4 Cache Handling
1009
+ ---------------------
1010
+
1011
+ GMP aims to perform well both on operands that fit entirely in L1 cache
1012
+ and those which don't.
1013
+
1014
+ Basic routines like `mpn_add_n' or `mpn_lshift' are often used on
1015
+ large operands, so L2 and main memory performance is important for them.
1016
+ `mpn_mul_1' and `mpn_addmul_1' are mostly used for multiply and square
1017
+ basecases, so L1 performance matters most for them, unless assembly
1018
+ versions of `mpn_mul_basecase' and `mpn_sqr_basecase' exist, in which
1019
+ case the remaining uses are mostly for larger operands.
1020
+
1021
+ For L2 or main memory operands, memory access times will almost
1022
+ certainly be more than the calculation time. The aim therefore is to
1023
+ maximize memory throughput, by starting a load of the next cache line
1024
+ while processing the contents of the previous one. Clearly this is
1025
+ only possible if the chip has a lock-up free cache or some sort of
1026
+ prefetch instruction. Most current chips have both these features.
1027
+
1028
+ Prefetching sources combines well with loop unrolling, since a
1029
+ prefetch can be initiated once per unrolled loop (or more than once if
1030
+ the loop covers more than one cache line).
1031
+
1032
+ On CPUs without write-allocate caches, prefetching destinations will
1033
+ ensure individual stores don't go further down the cache hierarchy,
1034
+ limiting bandwidth. Of course for calculations which are slow anyway,
1035
+ like `mpn_divrem_1', write-throughs might be fine.
1036
+
1037
+ The distance ahead to prefetch will be determined by memory latency
1038
+ versus throughput. The aim of course is to have data arriving
1039
+ continuously, at peak throughput. Some CPUs have limits on the number
1040
+ of fetches or prefetches in progress.
1041
+
1042
+ If a special prefetch instruction doesn't exist then a plain load
1043
+ can be used, but in that case care must be taken not to attempt to read
1044
+ past the end of an operand, since that might produce a segmentation
1045
+ violation.
1046
+
1047
+ Some CPUs or systems have hardware that detects sequential memory
1048
+ accesses and initiates suitable cache movements automatically, making
1049
+ life easy.
1050
+
1051
+ 
1052
+ File: gmp.info, Node: Assembly Functional Units, Next: Assembly Floating Point, Prev: Assembly Cache Handling, Up: Assembly Coding
1053
+
1054
+ 15.8.5 Functional Units
1055
+ -----------------------
1056
+
1057
+ When choosing an approach for an assembly loop, consideration is given
1058
+ to what operations can execute simultaneously and what throughput can
1059
+ thereby be achieved. In some cases an algorithm can be tweaked to
1060
+ accommodate available resources.
1061
+
1062
+ Loop control will generally require a counter and pointer updates,
1063
+ costing as much as 5 instructions, plus any delays a branch introduces.
1064
+ CPU addressing modes might reduce pointer updates, perhaps by allowing
1065
+ just one updating pointer and others expressed as offsets from it, or
1066
+ on CISC chips with all addressing done with the loop counter as a
1067
+ scaled index.
1068
+
1069
+ The final loop control cost can be amortised by processing several
1070
+ limbs in each iteration (*note Assembly Loop Unrolling::). This at
1071
+ least ensures loop control isn't a big fraction the work done.
1072
+
1073
+ Memory throughput is always a limit. If perhaps only one load or
1074
+ one store can be done per cycle then 3 cycles/limb will the top speed
1075
+ for "binary" operations like `mpn_add_n', and any code achieving that
1076
+ is optimal.
1077
+
1078
+ Integer resources can be freed up by having the loop counter in a
1079
+ float register, or by pressing the float units into use for some
1080
+ multiplying, perhaps doing every second limb on the float side (*note
1081
+ Assembly Floating Point::).
1082
+
1083
+ Float resources can be freed up by doing carry propagation on the
1084
+ integer side, or even by doing integer to float conversions in integers
1085
+ using bit twiddling.
1086
+
1087
+ 
1088
+ File: gmp.info, Node: Assembly Floating Point, Next: Assembly SIMD Instructions, Prev: Assembly Functional Units, Up: Assembly Coding
1089
+
1090
+ 15.8.6 Floating Point
1091
+ ---------------------
1092
+
1093
+ Floating point arithmetic is used in GMP for multiplications on CPUs
1094
+ with poor integer multipliers. It's mostly useful for `mpn_mul_1',
1095
+ `mpn_addmul_1' and `mpn_submul_1' on 64-bit machines, and
1096
+ `mpn_mul_basecase' on both 32-bit and 64-bit machines.
1097
+
1098
+ With IEEE 53-bit double precision floats, integer multiplications
1099
+ producing up to 53 bits will give exact results. Breaking a 64x64
1100
+ multiplication into eight 16x32->48 bit pieces is convenient. With
1101
+ some care though six 21x32->53 bit products can be used, if one of the
1102
+ lower two 21-bit pieces also uses the sign bit.
1103
+
1104
+ For the `mpn_mul_1' family of functions on a 64-bit machine, the
1105
+ invariant single limb is split at the start, into 3 or 4 pieces.
1106
+ Inside the loop, the bignum operand is split into 32-bit pieces. Fast
1107
+ conversion of these unsigned 32-bit pieces to floating point is highly
1108
+ machine-dependent. In some cases, reading the data into the integer
1109
+ unit, zero-extending to 64-bits, then transferring to the floating
1110
+ point unit back via memory is the only option.
1111
+
1112
+ Converting partial products back to 64-bit limbs is usually best
1113
+ done as a signed conversion. Since all values are smaller than 2^53,
1114
+ signed and unsigned are the same, but most processors lack unsigned
1115
+ conversions.
1116
+
1117
+
1118
+
1119
+ Here is a diagram showing 16x32 bit products for an `mpn_mul_1' or
1120
+ `mpn_addmul_1' with a 64-bit limb. The single limb operand V is split
1121
+ into four 16-bit parts. The multi-limb operand U is split in the loop
1122
+ into two 32-bit parts.
1123
+
1124
+ +---+---+---+---+
1125
+ |v48|v32|v16|v00| V operand
1126
+ +---+---+---+---+
1127
+
1128
+ +-------+---+---+
1129
+ x | u32 | u00 | U operand (one limb)
1130
+ +---------------+
1131
+
1132
+ ---------------------------------
1133
+
1134
+ +-----------+
1135
+ | u00 x v00 | p00 48-bit products
1136
+ +-----------+
1137
+ +-----------+
1138
+ | u00 x v16 | p16
1139
+ +-----------+
1140
+ +-----------+
1141
+ | u00 x v32 | p32
1142
+ +-----------+
1143
+ +-----------+
1144
+ | u00 x v48 | p48
1145
+ +-----------+
1146
+ +-----------+
1147
+ | u32 x v00 | r32
1148
+ +-----------+
1149
+ +-----------+
1150
+ | u32 x v16 | r48
1151
+ +-----------+
1152
+ +-----------+
1153
+ | u32 x v32 | r64
1154
+ +-----------+
1155
+ +-----------+
1156
+ | u32 x v48 | r80
1157
+ +-----------+
1158
+
1159
+ p32 and r32 can be summed using floating-point addition, and
1160
+ likewise p48 and r48. p00 and p16 can be summed with r64 and r80 from
1161
+ the previous iteration.
1162
+
1163
+ For each loop then, four 49-bit quantities are transferred to the
1164
+ integer unit, aligned as follows,
1165
+
1166
+ |-----64bits----|-----64bits----|
1167
+ +------------+
1168
+ | p00 + r64' | i00
1169
+ +------------+
1170
+ +------------+
1171
+ | p16 + r80' | i16
1172
+ +------------+
1173
+ +------------+
1174
+ | p32 + r32 | i32
1175
+ +------------+
1176
+ +------------+
1177
+ | p48 + r48 | i48
1178
+ +------------+
1179
+
1180
+ The challenge then is to sum these efficiently and add in a carry
1181
+ limb, generating a low 64-bit result limb and a high 33-bit carry limb
1182
+ (i48 extends 33 bits into the high half).
1183
+
1184
+ 
1185
+ File: gmp.info, Node: Assembly SIMD Instructions, Next: Assembly Software Pipelining, Prev: Assembly Floating Point, Up: Assembly Coding
1186
+
1187
+ 15.8.7 SIMD Instructions
1188
+ ------------------------
1189
+
1190
+ The single-instruction multiple-data support in current microprocessors
1191
+ is aimed at signal processing algorithms where each data point can be
1192
+ treated more or less independently. There's generally not much support
1193
+ for propagating the sort of carries that arise in GMP.
1194
+
1195
+ SIMD multiplications of say four 16x16 bit multiplies only do as much
1196
+ work as one 32x32 from GMP's point of view, and need some shifts and
1197
+ adds besides. But of course if say the SIMD form is fully pipelined
1198
+ and uses less instruction decoding then it may still be worthwhile.
1199
+
1200
+ On the x86 chips, MMX has so far found a use in `mpn_rshift' and
1201
+ `mpn_lshift', and is used in a special case for 16-bit multipliers in
1202
+ the P55 `mpn_mul_1'. SSE2 is used for Pentium 4 `mpn_mul_1',
1203
+ `mpn_addmul_1', and `mpn_submul_1'.
1204
+
1205
+ 
1206
+ File: gmp.info, Node: Assembly Software Pipelining, Next: Assembly Loop Unrolling, Prev: Assembly SIMD Instructions, Up: Assembly Coding
1207
+
1208
+ 15.8.8 Software Pipelining
1209
+ --------------------------
1210
+
1211
+ Software pipelining consists of scheduling instructions around the
1212
+ branch point in a loop. For example a loop might issue a load not for
1213
+ use in the present iteration but the next, thereby allowing extra
1214
+ cycles for the data to arrive from memory.
1215
+
1216
+ Naturally this is wanted only when doing things like loads or
1217
+ multiplies that take several cycles to complete, and only where a CPU
1218
+ has multiple functional units so that other work can be done in the
1219
+ meantime.
1220
+
1221
+ A pipeline with several stages will have a data value in progress at
1222
+ each stage and each loop iteration moves them along one stage. This is
1223
+ like juggling.
1224
+
1225
+ If the latency of some instruction is greater than the loop time
1226
+ then it will be necessary to unroll, so one register has a result ready
1227
+ to use while another (or multiple others) are still in progress.
1228
+ (*note Assembly Loop Unrolling::).
1229
+
1230
+ 
1231
+ File: gmp.info, Node: Assembly Loop Unrolling, Next: Assembly Writing Guide, Prev: Assembly Software Pipelining, Up: Assembly Coding
1232
+
1233
+ 15.8.9 Loop Unrolling
1234
+ ---------------------
1235
+
1236
+ Loop unrolling consists of replicating code so that several limbs are
1237
+ processed in each loop. At a minimum this reduces loop overheads by a
1238
+ corresponding factor, but it can also allow better register usage, for
1239
+ example alternately using one register combination and then another.
1240
+ Judicious use of `m4' macros can help avoid lots of duplication in the
1241
+ source code.
1242
+
1243
+ Any amount of unrolling can be handled with a loop counter that's
1244
+ decremented by N each time, stopping when the remaining count is less
1245
+ than the further N the loop will process. Or by subtracting N at the
1246
+ start, the termination condition becomes when the counter C is less
1247
+ than 0 (and the count of remaining limbs is C+N).
1248
+
1249
+ Alternately for a power of 2 unroll the loop count and remainder can
1250
+ be established with a shift and mask. This is convenient if also
1251
+ making a computed jump into the middle of a large loop.
1252
+
1253
+ The limbs not a multiple of the unrolling can be handled in various
1254
+ ways, for example
1255
+
1256
+ * A simple loop at the end (or the start) to process the excess.
1257
+ Care will be wanted that it isn't too much slower than the
1258
+ unrolled part.
1259
+
1260
+ * A set of binary tests, for example after an 8-limb unrolling, test
1261
+ for 4 more limbs to process, then a further 2 more or not, and
1262
+ finally 1 more or not. This will probably take more code space
1263
+ than a simple loop.
1264
+
1265
+ * A `switch' statement, providing separate code for each possible
1266
+ excess, for example an 8-limb unrolling would have separate code
1267
+ for 0 remaining, 1 remaining, etc, up to 7 remaining. This might
1268
+ take a lot of code, but may be the best way to optimize all cases
1269
+ in combination with a deep pipelined loop.
1270
+
1271
+ * A computed jump into the middle of the loop, thus making the first
1272
+ iteration handle the excess. This should make times smoothly
1273
+ increase with size, which is attractive, but setups for the jump
1274
+ and adjustments for pointers can be tricky and could become quite
1275
+ difficult in combination with deep pipelining.
1276
+
1277
+ 
1278
+ File: gmp.info, Node: Assembly Writing Guide, Prev: Assembly Loop Unrolling, Up: Assembly Coding
1279
+
1280
+ 15.8.10 Writing Guide
1281
+ ---------------------
1282
+
1283
+ This is a guide to writing software pipelined loops for processing limb
1284
+ vectors in assembly.
1285
+
1286
+ First determine the algorithm and which instructions are needed.
1287
+ Code it without unrolling or scheduling, to make sure it works. On a
1288
+ 3-operand CPU try to write each new value to a new register, this will
1289
+ greatly simplify later steps.
1290
+
1291
+ Then note for each instruction the functional unit and/or issue port
1292
+ requirements. If an instruction can use either of two units, like U0
1293
+ or U1 then make a category "U0/U1". Count the total using each unit
1294
+ (or combined unit), and count all instructions.
1295
+
1296
+ Figure out from those counts the best possible loop time. The goal
1297
+ will be to find a perfect schedule where instruction latencies are
1298
+ completely hidden. The total instruction count might be the limiting
1299
+ factor, or perhaps a particular functional unit. It might be possible
1300
+ to tweak the instructions to help the limiting factor.
1301
+
1302
+ Suppose the loop time is N, then make N issue buckets, with the
1303
+ final loop branch at the end of the last. Now fill the buckets with
1304
+ dummy instructions using the functional units desired. Run this to
1305
+ make sure the intended speed is reached.
1306
+
1307
+ Now replace the dummy instructions with the real instructions from
1308
+ the slow but correct loop you started with. The first will typically
1309
+ be a load instruction. Then the instruction using that value is placed
1310
+ in a bucket an appropriate distance down. Run the loop again, to check
1311
+ it still runs at target speed.
1312
+
1313
+ Keep placing instructions, frequently measuring the loop. After a
1314
+ few you will need to wrap around from the last bucket back to the top
1315
+ of the loop. If you used the new-register for new-value strategy above
1316
+ then there will be no register conflicts. If not then take care not to
1317
+ clobber something already in use. Changing registers at this time is
1318
+ very error prone.
1319
+
1320
+ The loop will overlap two or more of the original loop iterations,
1321
+ and the computation of one vector element result will be started in one
1322
+ iteration of the new loop, and completed one or several iterations
1323
+ later.
1324
+
1325
+ The final step is to create feed-in and wind-down code for the loop.
1326
+ A good way to do this is to make a copy (or copies) of the loop at the
1327
+ start and delete those instructions which don't have valid antecedents,
1328
+ and at the end replicate and delete those whose results are unwanted
1329
+ (including any further loads).
1330
+
1331
+ The loop will have a minimum number of limbs loaded and processed,
1332
+ so the feed-in code must test if the request size is smaller and skip
1333
+ either to a suitable part of the wind-down or to special code for small
1334
+ sizes.
1335
+
1336
+ 
1337
+ File: gmp.info, Node: Internals, Next: Contributors, Prev: Algorithms, Up: Top
1338
+
1339
+ 16 Internals
1340
+ ************
1341
+
1342
+ *This chapter is provided only for informational purposes and the
1343
+ various internals described here may change in future GMP releases.
1344
+ Applications expecting to be compatible with future releases should use
1345
+ only the documented interfaces described in previous chapters.*
1346
+
1347
+ * Menu:
1348
+
1349
+ * Integer Internals::
1350
+ * Rational Internals::
1351
+ * Float Internals::
1352
+ * Raw Output Internals::
1353
+ * C++ Interface Internals::
1354
+
1355
+ 
1356
+ File: gmp.info, Node: Integer Internals, Next: Rational Internals, Prev: Internals, Up: Internals
1357
+
1358
+ 16.1 Integer Internals
1359
+ ======================
1360
+
1361
+ `mpz_t' variables represent integers using sign and magnitude, in space
1362
+ dynamically allocated and reallocated. The fields are as follows.
1363
+
1364
+ `_mp_size'
1365
+ The number of limbs, or the negative of that when representing a
1366
+ negative integer. Zero is represented by `_mp_size' set to zero,
1367
+ in which case the `_mp_d' data is unused.
1368
+
1369
+ `_mp_d'
1370
+ A pointer to an array of limbs which is the magnitude. These are
1371
+ stored "little endian" as per the `mpn' functions, so `_mp_d[0]'
1372
+ is the least significant limb and `_mp_d[ABS(_mp_size)-1]' is the
1373
+ most significant. Whenever `_mp_size' is non-zero, the most
1374
+ significant limb is non-zero.
1375
+
1376
+ Currently there's always at least one limb allocated, so for
1377
+ instance `mpz_set_ui' never needs to reallocate, and `mpz_get_ui'
1378
+ can fetch `_mp_d[0]' unconditionally (though its value is then
1379
+ only wanted if `_mp_size' is non-zero).
1380
+
1381
+ `_mp_alloc'
1382
+ `_mp_alloc' is the number of limbs currently allocated at `_mp_d',
1383
+ and naturally `_mp_alloc >= ABS(_mp_size)'. When an `mpz' routine
1384
+ is about to (or might be about to) increase `_mp_size', it checks
1385
+ `_mp_alloc' to see whether there's enough space, and reallocates
1386
+ if not. `MPZ_REALLOC' is generally used for this.
1387
+
1388
+ The various bitwise logical functions like `mpz_and' behave as if
1389
+ negative values were twos complement. But sign and magnitude is always
1390
+ used internally, and necessary adjustments are made during the
1391
+ calculations. Sometimes this isn't pretty, but sign and magnitude are
1392
+ best for other routines.
1393
+
1394
+ Some internal temporary variables are setup with `MPZ_TMP_INIT' and
1395
+ these have `_mp_d' space obtained from `TMP_ALLOC' rather than the
1396
+ memory allocation functions. Care is taken to ensure that these are
1397
+ big enough that no reallocation is necessary (since it would have
1398
+ unpredictable consequences).
1399
+
1400
+ `_mp_size' and `_mp_alloc' are `int', although `mp_size_t' is
1401
+ usually a `long'. This is done to make the fields just 32 bits on some
1402
+ 64 bits systems, thereby saving a few bytes of data space but still
1403
+ providing plenty of range.
1404
+
1405
+ 
1406
+ File: gmp.info, Node: Rational Internals, Next: Float Internals, Prev: Integer Internals, Up: Internals
1407
+
1408
+ 16.2 Rational Internals
1409
+ =======================
1410
+
1411
+ `mpq_t' variables represent rationals using an `mpz_t' numerator and
1412
+ denominator (*note Integer Internals::).
1413
+
1414
+ The canonical form adopted is denominator positive (and non-zero),
1415
+ no common factors between numerator and denominator, and zero uniquely
1416
+ represented as 0/1.
1417
+
1418
+ It's believed that casting out common factors at each stage of a
1419
+ calculation is best in general. A GCD is an O(N^2) operation so it's
1420
+ better to do a few small ones immediately than to delay and have to do
1421
+ a big one later. Knowing the numerator and denominator have no common
1422
+ factors can be used for example in `mpq_mul' to make only two cross
1423
+ GCDs necessary, not four.
1424
+
1425
+ This general approach to common factors is badly sub-optimal in the
1426
+ presence of simple factorizations or little prospect for cancellation,
1427
+ but GMP has no way to know when this will occur. As per *note
1428
+ Efficiency::, that's left to applications. The `mpq_t' framework might
1429
+ still suit, with `mpq_numref' and `mpq_denref' for direct access to the
1430
+ numerator and denominator, or of course `mpz_t' variables can be used
1431
+ directly.
1432
+
1433
+ 
1434
+ File: gmp.info, Node: Float Internals, Next: Raw Output Internals, Prev: Rational Internals, Up: Internals
1435
+
1436
+ 16.3 Float Internals
1437
+ ====================
1438
+
1439
+ Efficient calculation is the primary aim of GMP floats and the use of
1440
+ whole limbs and simple rounding facilitates this.
1441
+
1442
+ `mpf_t' floats have a variable precision mantissa and a single
1443
+ machine word signed exponent. The mantissa is represented using sign
1444
+ and magnitude.
1445
+
1446
+ most least
1447
+ significant significant
1448
+ limb limb
1449
+
1450
+ _mp_d
1451
+ |---- _mp_exp ---> |
1452
+ _____ _____ _____ _____ _____
1453
+ |_____|_____|_____|_____|_____|
1454
+ . <------------ radix point
1455
+
1456
+ <-------- _mp_size --------->
1457
+
1458
+ The fields are as follows.
1459
+
1460
+ `_mp_size'
1461
+ The number of limbs currently in use, or the negative of that when
1462
+ representing a negative value. Zero is represented by `_mp_size'
1463
+ and `_mp_exp' both set to zero, and in that case the `_mp_d' data
1464
+ is unused. (In the future `_mp_exp' might be undefined when
1465
+ representing zero.)
1466
+
1467
+ `_mp_prec'
1468
+ The precision of the mantissa, in limbs. In any calculation the
1469
+ aim is to produce `_mp_prec' limbs of result (the most significant
1470
+ being non-zero).
1471
+
1472
+ `_mp_d'
1473
+ A pointer to the array of limbs which is the absolute value of the
1474
+ mantissa. These are stored "little endian" as per the `mpn'
1475
+ functions, so `_mp_d[0]' is the least significant limb and
1476
+ `_mp_d[ABS(_mp_size)-1]' the most significant.
1477
+
1478
+ The most significant limb is always non-zero, but there are no
1479
+ other restrictions on its value, in particular the highest 1 bit
1480
+ can be anywhere within the limb.
1481
+
1482
+ `_mp_prec+1' limbs are allocated to `_mp_d', the extra limb being
1483
+ for convenience (see below). There are no reallocations during a
1484
+ calculation, only in a change of precision with `mpf_set_prec'.
1485
+
1486
+ `_mp_exp'
1487
+ The exponent, in limbs, determining the location of the implied
1488
+ radix point. Zero means the radix point is just above the most
1489
+ significant limb. Positive values mean a radix point offset
1490
+ towards the lower limbs and hence a value >= 1, as for example in
1491
+ the diagram above. Negative exponents mean a radix point further
1492
+ above the highest limb.
1493
+
1494
+ Naturally the exponent can be any value, it doesn't have to fall
1495
+ within the limbs as the diagram shows, it can be a long way above
1496
+ or a long way below. Limbs other than those included in the
1497
+ `{_mp_d,_mp_size}' data are treated as zero.
1498
+
1499
+ The `_mp_size' and `_mp_prec' fields are `int', although the
1500
+ `mp_size_t' type is usually a `long'. The `_mp_exp' field is usually
1501
+ `long'. This is done to make some fields just 32 bits on some 64 bits
1502
+ systems, thereby saving a few bytes of data space but still providing
1503
+ plenty of precision and a very large range.
1504
+
1505
+
1506
+ The following various points should be noted.
1507
+
1508
+ Low Zeros
1509
+ The least significant limbs `_mp_d[0]' etc can be zero, though
1510
+ such low zeros can always be ignored. Routines likely to produce
1511
+ low zeros check and avoid them to save time in subsequent
1512
+ calculations, but for most routines they're quite unlikely and
1513
+ aren't checked.
1514
+
1515
+ Mantissa Size Range
1516
+ The `_mp_size' count of limbs in use can be less than `_mp_prec' if
1517
+ the value can be represented in less. This means low precision
1518
+ values or small integers stored in a high precision `mpf_t' can
1519
+ still be operated on efficiently.
1520
+
1521
+ `_mp_size' can also be greater than `_mp_prec'. Firstly a value is
1522
+ allowed to use all of the `_mp_prec+1' limbs available at `_mp_d',
1523
+ and secondly when `mpf_set_prec_raw' lowers `_mp_prec' it leaves
1524
+ `_mp_size' unchanged and so the size can be arbitrarily bigger than
1525
+ `_mp_prec'.
1526
+
1527
+ Rounding
1528
+ All rounding is done on limb boundaries. Calculating `_mp_prec'
1529
+ limbs with the high non-zero will ensure the application requested
1530
+ minimum precision is obtained.
1531
+
1532
+ The use of simple "trunc" rounding towards zero is efficient,
1533
+ since there's no need to examine extra limbs and increment or
1534
+ decrement.
1535
+
1536
+ Bit Shifts
1537
+ Since the exponent is in limbs, there are no bit shifts in basic
1538
+ operations like `mpf_add' and `mpf_mul'. When differing exponents
1539
+ are encountered all that's needed is to adjust pointers to line up
1540
+ the relevant limbs.
1541
+
1542
+ Of course `mpf_mul_2exp' and `mpf_div_2exp' will require bit
1543
+ shifts, but the choice is between an exponent in limbs which
1544
+ requires shifts there, or one in bits which requires them almost
1545
+ everywhere else.
1546
+
1547
+ Use of `_mp_prec+1' Limbs
1548
+ The extra limb on `_mp_d' (`_mp_prec+1' rather than just
1549
+ `_mp_prec') helps when an `mpf' routine might get a carry from its
1550
+ operation. `mpf_add' for instance will do an `mpn_add' of
1551
+ `_mp_prec' limbs. If there's no carry then that's the result, but
1552
+ if there is a carry then it's stored in the extra limb of space and
1553
+ `_mp_size' becomes `_mp_prec+1'.
1554
+
1555
+ Whenever `_mp_prec+1' limbs are held in a variable, the low limb
1556
+ is not needed for the intended precision, only the `_mp_prec' high
1557
+ limbs. But zeroing it out or moving the rest down is unnecessary.
1558
+ Subsequent routines reading the value will simply take the high
1559
+ limbs they need, and this will be `_mp_prec' if their target has
1560
+ that same precision. This is no more than a pointer adjustment,
1561
+ and must be checked anyway since the destination precision can be
1562
+ different from the sources.
1563
+
1564
+ Copy functions like `mpf_set' will retain a full `_mp_prec+1' limbs
1565
+ if available. This ensures that a variable which has `_mp_size'
1566
+ equal to `_mp_prec+1' will get its full exact value copied.
1567
+ Strictly speaking this is unnecessary since only `_mp_prec' limbs
1568
+ are needed for the application's requested precision, but it's
1569
+ considered that an `mpf_set' from one variable into another of the
1570
+ same precision ought to produce an exact copy.
1571
+
1572
+ Application Precisions
1573
+ `__GMPF_BITS_TO_PREC' converts an application requested precision
1574
+ to an `_mp_prec'. The value in bits is rounded up to a whole limb
1575
+ then an extra limb is added since the most significant limb of
1576
+ `_mp_d' is only non-zero and therefore might contain only one bit.
1577
+
1578
+ `__GMPF_PREC_TO_BITS' does the reverse conversion, and removes the
1579
+ extra limb from `_mp_prec' before converting to bits. The net
1580
+ effect of reading back with `mpf_get_prec' is simply the precision
1581
+ rounded up to a multiple of `mp_bits_per_limb'.
1582
+
1583
+ Note that the extra limb added here for the high only being
1584
+ non-zero is in addition to the extra limb allocated to `_mp_d'.
1585
+ For example with a 32-bit limb, an application request for 250
1586
+ bits will be rounded up to 8 limbs, then an extra added for the
1587
+ high being only non-zero, giving an `_mp_prec' of 9. `_mp_d' then
1588
+ gets 10 limbs allocated. Reading back with `mpf_get_prec' will
1589
+ take `_mp_prec' subtract 1 limb and multiply by 32, giving 256
1590
+ bits.
1591
+
1592
+ Strictly speaking, the fact the high limb has at least one bit
1593
+ means that a float with, say, 3 limbs of 32-bits each will be
1594
+ holding at least 65 bits, but for the purposes of `mpf_t' it's
1595
+ considered simply to be 64 bits, a nice multiple of the limb size.
1596
+
1597
+ 
1598
+ File: gmp.info, Node: Raw Output Internals, Next: C++ Interface Internals, Prev: Float Internals, Up: Internals
1599
+
1600
+ 16.4 Raw Output Internals
1601
+ =========================
1602
+
1603
+ `mpz_out_raw' uses the following format.
1604
+
1605
+ +------+------------------------+
1606
+ | size | data bytes |
1607
+ +------+------------------------+
1608
+
1609
+ The size is 4 bytes written most significant byte first, being the
1610
+ number of subsequent data bytes, or the twos complement negative of
1611
+ that when a negative integer is represented. The data bytes are the
1612
+ absolute value of the integer, written most significant byte first.
1613
+
1614
+ The most significant data byte is always non-zero, so the output is
1615
+ the same on all systems, irrespective of limb size.
1616
+
1617
+ In GMP 1, leading zero bytes were written to pad the data bytes to a
1618
+ multiple of the limb size. `mpz_inp_raw' will still accept this, for
1619
+ compatibility.
1620
+
1621
+ The use of "big endian" for both the size and data fields is
1622
+ deliberate, it makes the data easy to read in a hex dump of a file.
1623
+ Unfortunately it also means that the limb data must be reversed when
1624
+ reading or writing, so neither a big endian nor little endian system
1625
+ can just read and write `_mp_d'.
1626
+
1627
+ 
1628
+ File: gmp.info, Node: C++ Interface Internals, Prev: Raw Output Internals, Up: Internals
1629
+
1630
+ 16.5 C++ Interface Internals
1631
+ ============================
1632
+
1633
+ A system of expression templates is used to ensure something like
1634
+ `a=b+c' turns into a simple call to `mpz_add' etc. For `mpf_class' the
1635
+ scheme also ensures the precision of the final destination is used for
1636
+ any temporaries within a statement like `f=w*x+y*z'. These are
1637
+ important features which a naive implementation cannot provide.
1638
+
1639
+ A simplified description of the scheme follows. The true scheme is
1640
+ complicated by the fact that expressions have different return types.
1641
+ For detailed information, refer to the source code.
1642
+
1643
+ To perform an operation, say, addition, we first define a "function
1644
+ object" evaluating it,
1645
+
1646
+ struct __gmp_binary_plus
1647
+ {
1648
+ static void eval(mpf_t f, const mpf_t g, const mpf_t h)
1649
+ {
1650
+ mpf_add(f, g, h);
1651
+ }
1652
+ };
1653
+
1654
+ And an "additive expression" object,
1655
+
1656
+ __gmp_expr<__gmp_binary_expr<mpf_class, mpf_class, __gmp_binary_plus> >
1657
+ operator+(const mpf_class &f, const mpf_class &g)
1658
+ {
1659
+ return __gmp_expr
1660
+ <__gmp_binary_expr<mpf_class, mpf_class, __gmp_binary_plus> >(f, g);
1661
+ }
1662
+
1663
+ The seemingly redundant `__gmp_expr<__gmp_binary_expr<...>>' is used
1664
+ to encapsulate any possible kind of expression into a single template
1665
+ type. In fact even `mpf_class' etc are `typedef' specializations of
1666
+ `__gmp_expr'.
1667
+
1668
+ Next we define assignment of `__gmp_expr' to `mpf_class'.
1669
+
1670
+ template <class T>
1671
+ mpf_class & mpf_class::operator=(const __gmp_expr<T> &expr)
1672
+ {
1673
+ expr.eval(this->get_mpf_t(), this->precision());
1674
+ return *this;
1675
+ }
1676
+
1677
+ template <class Op>
1678
+ void __gmp_expr<__gmp_binary_expr<mpf_class, mpf_class, Op> >::eval
1679
+ (mpf_t f, mp_bitcnt_t precision)
1680
+ {
1681
+ Op::eval(f, expr.val1.get_mpf_t(), expr.val2.get_mpf_t());
1682
+ }
1683
+
1684
+ where `expr.val1' and `expr.val2' are references to the expression's
1685
+ operands (here `expr' is the `__gmp_binary_expr' stored within the
1686
+ `__gmp_expr').
1687
+
1688
+ This way, the expression is actually evaluated only at the time of
1689
+ assignment, when the required precision (that of `f') is known.
1690
+ Furthermore the target `mpf_t' is now available, thus we can call
1691
+ `mpf_add' directly with `f' as the output argument.
1692
+
1693
+ Compound expressions are handled by defining operators taking
1694
+ subexpressions as their arguments, like this:
1695
+
1696
+ template <class T, class U>
1697
+ __gmp_expr
1698
+ <__gmp_binary_expr<__gmp_expr<T>, __gmp_expr<U>, __gmp_binary_plus> >
1699
+ operator+(const __gmp_expr<T> &expr1, const __gmp_expr<U> &expr2)
1700
+ {
1701
+ return __gmp_expr
1702
+ <__gmp_binary_expr<__gmp_expr<T>, __gmp_expr<U>, __gmp_binary_plus> >
1703
+ (expr1, expr2);
1704
+ }
1705
+
1706
+ And the corresponding specializations of `__gmp_expr::eval':
1707
+
1708
+ template <class T, class U, class Op>
1709
+ void __gmp_expr
1710
+ <__gmp_binary_expr<__gmp_expr<T>, __gmp_expr<U>, Op> >::eval
1711
+ (mpf_t f, mp_bitcnt_t precision)
1712
+ {
1713
+ // declare two temporaries
1714
+ mpf_class temp1(expr.val1, precision), temp2(expr.val2, precision);
1715
+ Op::eval(f, temp1.get_mpf_t(), temp2.get_mpf_t());
1716
+ }
1717
+
1718
+ The expression is thus recursively evaluated to any level of
1719
+ complexity and all subexpressions are evaluated to the precision of `f'.
1720
+
1721
+ 
1722
+ File: gmp.info, Node: Contributors, Next: References, Prev: Internals, Up: Top
1723
+
1724
+ Appendix A Contributors
1725
+ ***********************
1726
+
1727
+ Torbj�rn Granlund wrote the original GMP library and is still the main
1728
+ developer. Code not explicitly attributed to others, was contributed by
1729
+ Torbj�rn. Several other individuals and organizations have contributed
1730
+ GMP. Here is a list in chronological order on first contribution:
1731
+
1732
+ Gunnar Sj�din and Hans Riesel helped with mathematical problems in
1733
+ early versions of the library.
1734
+
1735
+ Richard Stallman helped with the interface design and revised the
1736
+ first version of this manual.
1737
+
1738
+ Brian Beuning and Doug Lea helped with testing of early versions of
1739
+ the library and made creative suggestions.
1740
+
1741
+ John Amanatides of York University in Canada contributed the function
1742
+ `mpz_probab_prime_p'.
1743
+
1744
+ Paul Zimmermann wrote the REDC-based mpz_powm code, the
1745
+ Sch�nhage-Strassen FFT multiply code, and the Karatsuba square root
1746
+ code. He also improved the Toom3 code for GMP 4.2. Paul sparked the
1747
+ development of GMP 2, with his comparisons between bignum packages.
1748
+ The ECMNET project Paul is organizing was a driving force behind many
1749
+ of the optimizations in GMP 3. Paul also wrote the new GMP 4.3 nth
1750
+ root code (with Torbj�rn).
1751
+
1752
+ Ken Weber (Kent State University, Universidade Federal do Rio Grande
1753
+ do Sul) contributed now defunct versions of `mpz_gcd', `mpz_divexact',
1754
+ `mpn_gcd', and `mpn_bdivmod', partially supported by CNPq (Brazil)
1755
+ grant 301314194-2.
1756
+
1757
+ Per Bothner of Cygnus Support helped to set up GMP to use Cygnus'
1758
+ configure. He has also made valuable suggestions and tested numerous
1759
+ intermediary releases.
1760
+
1761
+ Joachim Hollman was involved in the design of the `mpf' interface,
1762
+ and in the `mpz' design revisions for version 2.
1763
+
1764
+ Bennet Yee contributed the initial versions of `mpz_jacobi' and
1765
+ `mpz_legendre'.
1766
+
1767
+ Andreas Schwab contributed the files `mpn/m68k/lshift.S' and
1768
+ `mpn/m68k/rshift.S' (now in `.asm' form).
1769
+
1770
+ Robert Harley of Inria, France and David Seal of ARM, England,
1771
+ suggested clever improvements for population count. Robert also wrote
1772
+ highly optimized Karatsuba and 3-way Toom multiplication functions for
1773
+ GMP 3, and contributed the ARM assembly code.
1774
+
1775
+ Torsten Ekedahl of the Mathematical department of Stockholm
1776
+ University provided significant inspiration during several phases of
1777
+ the GMP development. His mathematical expertise helped improve several
1778
+ algorithms.
1779
+
1780
+ Linus Nordberg wrote the new configure system based on autoconf and
1781
+ implemented the new random functions.
1782
+
1783
+ Kevin Ryde worked on a large number of things: optimized x86 code,
1784
+ m4 asm macros, parameter tuning, speed measuring, the configure system,
1785
+ function inlining, divisibility tests, bit scanning, Jacobi symbols,
1786
+ Fibonacci and Lucas number functions, printf and scanf functions, perl
1787
+ interface, demo expression parser, the algorithms chapter in the
1788
+ manual, `gmpasm-mode.el', and various miscellaneous improvements
1789
+ elsewhere.
1790
+
1791
+ Kent Boortz made the Mac OS 9 port.
1792
+
1793
+ Steve Root helped write the optimized alpha 21264 assembly code.
1794
+
1795
+ Gerardo Ballabio wrote the `gmpxx.h' C++ class interface and the C++
1796
+ `istream' input routines.
1797
+
1798
+ Jason Moxham rewrote `mpz_fac_ui'.
1799
+
1800
+ Pedro Gimeno implemented the Mersenne Twister and made other random
1801
+ number improvements.
1802
+
1803
+ Niels M�ller wrote the sub-quadratic GCD, extended GCD and jacobi
1804
+ code, the quadratic Hensel division code, and (with Torbj�rn) the new
1805
+ divide and conquer division code for GMP 4.3. Niels also helped
1806
+ implement the new Toom multiply code for GMP 4.3 and implemented helper
1807
+ functions to simplify Toom evaluations for GMP 5.0. He wrote the
1808
+ original version of mpn_mulmod_bnm1, and he is the main author of the
1809
+ mini-gmp package used for gmp bootstrapping.
1810
+
1811
+ Alberto Zanoni and Marco Bodrato suggested the unbalanced multiply
1812
+ strategy, and found the optimal strategies for evaluation and
1813
+ interpolation in Toom multiplication.
1814
+
1815
+ Marco Bodrato helped implement the new Toom multiply code for GMP
1816
+ 4.3 and implemented most of the new Toom multiply and squaring code for
1817
+ 5.0. He is the main author of the current mpn_mulmod_bnm1 and
1818
+ mpn_mullo_n. Marco also wrote the functions mpn_invert and
1819
+ mpn_invertappr. He is the author of the current combinatorial
1820
+ functions: binomial, factorial, multifactorial, primorial.
1821
+
1822
+ David Harvey suggested the internal function `mpn_bdiv_dbm1',
1823
+ implementing division relevant to Toom multiplication. He also worked
1824
+ on fast assembly sequences, in particular on a fast AMD64
1825
+ `mpn_mul_basecase'. He wrote the internal middle product functions
1826
+ `mpn_mulmid_basecase', `mpn_toom42_mulmid', `mpn_mulmid_n' and related
1827
+ helper routines.
1828
+
1829
+ Martin Boij wrote `mpn_perfect_power_p'.
1830
+
1831
+ Marc Glisse improved `gmpxx.h': use fewer temporaries (faster),
1832
+ specializations of `numeric_limits' and `common_type', C++11 features
1833
+ (move constructors, explicit bool conversion, UDL), make the conversion
1834
+ from `mpq_class' to `mpz_class' explicit, optimize operations where one
1835
+ argument is a small compile-time constant, replace some heap
1836
+ allocations by stack allocations. He also fixed the eofbit handling of
1837
+ C++ streams, and removed one division from `mpq/aors.c'.
1838
+
1839
+ David S Miller wrote assembly code for SPARC T3 and T4.
1840
+
1841
+ Mark Sofroniou cleaned up the types of mul_fft.c, letting it work
1842
+ for huge operands.
1843
+
1844
+ Ulrich Weigand ported GMP to the powerpc64le ABI.
1845
+
1846
+ (This list is chronological, not ordered after significance. If you
1847
+ have contributed to GMP but are not listed above, please tell
1848
+ <gmp-devel@gmplib.org> about the omission!)
1849
+
1850
+ The development of floating point functions of GNU MP 2, were
1851
+ supported in part by the ESPRIT-BRA (Basic Research Activities) 6846
1852
+ project POSSO (POlynomial System SOlving).
1853
+
1854
+ The development of GMP 2, 3, and 4.0 was supported in part by the
1855
+ IDA Center for Computing Sciences.
1856
+
1857
+ The development of GMP 4.3, 5.0, and 5.1 was supported in part by
1858
+ the Swedish Foundation for Strategic Research.
1859
+
1860
+ Thanks go to Hans Thorsen for donating an SGI system for the GMP
1861
+ test system environment.
1862
+
1863
+ 
1864
+ File: gmp.info, Node: References, Next: GNU Free Documentation License, Prev: Contributors, Up: Top
1865
+
1866
+ Appendix B References
1867
+ *********************
1868
+
1869
+ B.1 Books
1870
+ =========
1871
+
1872
+ * Jonathan M. Borwein and Peter B. Borwein, "Pi and the AGM: A Study
1873
+ in Analytic Number Theory and Computational Complexity", Wiley,
1874
+ 1998.
1875
+
1876
+ * Richard Crandall and Carl Pomerance, "Prime Numbers: A
1877
+ Computational Perspective", 2nd edition, Springer-Verlag, 2005.
1878
+ `http://www.math.dartmouth.edu/~carlp/'
1879
+
1880
+ * Henri Cohen, "A Course in Computational Algebraic Number Theory",
1881
+ Graduate Texts in Mathematics number 138, Springer-Verlag, 1993.
1882
+ `http://www.math.u-bordeaux.fr/~cohen/'
1883
+
1884
+ * Donald E. Knuth, "The Art of Computer Programming", volume 2,
1885
+ "Seminumerical Algorithms", 3rd edition, Addison-Wesley, 1998.
1886
+ `http://www-cs-faculty.stanford.edu/~knuth/taocp.html'
1887
+
1888
+ * John D. Lipson, "Elements of Algebra and Algebraic Computing", The
1889
+ Benjamin Cummings Publishing Company Inc, 1981.
1890
+
1891
+ * Alfred J. Menezes, Paul C. van Oorschot and Scott A. Vanstone,
1892
+ "Handbook of Applied Cryptography",
1893
+ `http://www.cacr.math.uwaterloo.ca/hac/'
1894
+
1895
+ * Richard M. Stallman and the GCC Developer Community, "Using the
1896
+ GNU Compiler Collection", Free Software Foundation, 2008,
1897
+ available online `https://gcc.gnu.org/onlinedocs/', and in the GCC
1898
+ package `https://ftp.gnu.org/gnu/gcc/'
1899
+
1900
+ B.2 Papers
1901
+ ==========
1902
+
1903
+ * Yves Bertot, Nicolas Magaud and Paul Zimmermann, "A Proof of GMP
1904
+ Square Root", Journal of Automated Reasoning, volume 29, 2002, pp.
1905
+ 225-252. Also available online as INRIA Research Report 4475,
1906
+ June 2002, `http://hal.inria.fr/docs/00/07/21/13/PDF/RR-4475.pdf'
1907
+
1908
+ * Christoph Burnikel and Joachim Ziegler, "Fast Recursive Division",
1909
+ Max-Planck-Institut fuer Informatik Research Report MPI-I-98-1-022,
1910
+ `http://data.mpi-sb.mpg.de/internet/reports.nsf/NumberView/1998-1-022'
1911
+
1912
+ * Torbj�rn Granlund and Peter L. Montgomery, "Division by Invariant
1913
+ Integers using Multiplication", in Proceedings of the SIGPLAN
1914
+ PLDI'94 Conference, June 1994. Also available
1915
+ `https://gmplib.org/~tege/divcnst-pldi94.pdf'.
1916
+
1917
+ * Niels M�ller and Torbj�rn Granlund, "Improved division by invariant
1918
+ integers", IEEE Transactions on Computers, 11 June 2010.
1919
+ `https://gmplib.org/~tege/division-paper.pdf'
1920
+
1921
+ * Torbj�rn Granlund and Niels M�ller, "Division of integers large and
1922
+ small", to appear.
1923
+
1924
+ * Tudor Jebelean, "An algorithm for exact division", Journal of
1925
+ Symbolic Computation, volume 15, 1993, pp. 169-180. Research
1926
+ report version available
1927
+ `ftp://ftp.risc.uni-linz.ac.at/pub/techreports/1992/92-35.ps.gz'
1928
+
1929
+ * Tudor Jebelean, "Exact Division with Karatsuba Complexity -
1930
+ Extended Abstract", RISC-Linz technical report 96-31,
1931
+ `ftp://ftp.risc.uni-linz.ac.at/pub/techreports/1996/96-31.ps.gz'
1932
+
1933
+ * Tudor Jebelean, "Practical Integer Division with Karatsuba
1934
+ Complexity", ISSAC 97, pp. 339-341. Technical report available
1935
+ `ftp://ftp.risc.uni-linz.ac.at/pub/techreports/1996/96-29.ps.gz'
1936
+
1937
+ * Tudor Jebelean, "A Generalization of the Binary GCD Algorithm",
1938
+ ISSAC 93, pp. 111-116. Technical report version available
1939
+ `ftp://ftp.risc.uni-linz.ac.at/pub/techreports/1993/93-01.ps.gz'
1940
+
1941
+ * Tudor Jebelean, "A Double-Digit Lehmer-Euclid Algorithm for
1942
+ Finding the GCD of Long Integers", Journal of Symbolic
1943
+ Computation, volume 19, 1995, pp. 145-157. Technical report
1944
+ version also available
1945
+ `ftp://ftp.risc.uni-linz.ac.at/pub/techreports/1992/92-69.ps.gz'
1946
+
1947
+ * Werner Krandick and Tudor Jebelean, "Bidirectional Exact Integer
1948
+ Division", Journal of Symbolic Computation, volume 21, 1996, pp.
1949
+ 441-455. Early technical report version also available
1950
+ `ftp://ftp.risc.uni-linz.ac.at/pub/techreports/1994/94-50.ps.gz'
1951
+
1952
+ * Makoto Matsumoto and Takuji Nishimura, "Mersenne Twister: A
1953
+ 623-dimensionally equidistributed uniform pseudorandom number
1954
+ generator", ACM Transactions on Modelling and Computer Simulation,
1955
+ volume 8, January 1998, pp. 3-30. Available online
1956
+ `http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/ARTICLES/mt.ps.gz'
1957
+ (or .pdf)
1958
+
1959
+ * R. Moenck and A. Borodin, "Fast Modular Transforms via Division",
1960
+ Proceedings of the 13th Annual IEEE Symposium on Switching and
1961
+ Automata Theory, October 1972, pp. 90-96. Reprinted as "Fast
1962
+ Modular Transforms", Journal of Computer and System Sciences,
1963
+ volume 8, number 3, June 1974, pp. 366-386.
1964
+
1965
+ * Niels M�ller, "On Sch�nhage's algorithm and subquadratic integer
1966
+ GCD computation", in Mathematics of Computation, volume 77,
1967
+ January 2008, pp. 589-607.
1968
+
1969
+ * Peter L. Montgomery, "Modular Multiplication Without Trial
1970
+ Division", in Mathematics of Computation, volume 44, number 170,
1971
+ April 1985.
1972
+
1973
+ * Arnold Sch�nhage and Volker Strassen, "Schnelle Multiplikation
1974
+ grosser Zahlen", Computing 7, 1971, pp. 281-292.
1975
+
1976
+ * Kenneth Weber, "The accelerated integer GCD algorithm", ACM
1977
+ Transactions on Mathematical Software, volume 21, number 1, March
1978
+ 1995, pp. 111-122.
1979
+
1980
+ * Paul Zimmermann, "Karatsuba Square Root", INRIA Research Report
1981
+ 3805, November 1999,
1982
+ `http://hal.inria.fr/inria-00072854/PDF/RR-3805.pdf'
1983
+
1984
+ * Paul Zimmermann, "A Proof of GMP Fast Division and Square Root
1985
+ Implementations",
1986
+ `http://www.loria.fr/~zimmerma/papers/proof-div-sqrt.ps.gz'
1987
+
1988
+ * Dan Zuras, "On Squaring and Multiplying Large Integers", ARITH-11:
1989
+ IEEE Symposium on Computer Arithmetic, 1993, pp. 260 to 271.
1990
+ Reprinted as "More on Multiplying and Squaring Large Integers",
1991
+ IEEE Transactions on Computers, volume 43, number 8, August 1994,
1992
+ pp. 899-908.
1993
+
1994
+ 
1995
+ File: gmp.info, Node: GNU Free Documentation License, Next: Concept Index, Prev: References, Up: Top
1996
+
1997
+ Appendix C GNU Free Documentation License
1998
+ *****************************************
1999
+
2000
+ Version 1.3, 3 November 2008
2001
+
2002
+ Copyright (C) 2000-2002, 2007, 2008 Free Software Foundation, Inc.
2003
+ `http://fsf.org/'
2004
+
2005
+ Everyone is permitted to copy and distribute verbatim copies
2006
+ of this license document, but changing it is not allowed.
2007
+
2008
+ 0. PREAMBLE
2009
+
2010
+ The purpose of this License is to make a manual, textbook, or other
2011
+ functional and useful document "free" in the sense of freedom: to
2012
+ assure everyone the effective freedom to copy and redistribute it,
2013
+ with or without modifying it, either commercially or
2014
+ noncommercially. Secondarily, this License preserves for the
2015
+ author and publisher a way to get credit for their work, while not
2016
+ being considered responsible for modifications made by others.
2017
+
2018
+ This License is a kind of "copyleft", which means that derivative
2019
+ works of the document must themselves be free in the same sense.
2020
+ It complements the GNU General Public License, which is a copyleft
2021
+ license designed for free software.
2022
+
2023
+ We have designed this License in order to use it for manuals for
2024
+ free software, because free software needs free documentation: a
2025
+ free program should come with manuals providing the same freedoms
2026
+ that the software does. But this License is not limited to
2027
+ software manuals; it can be used for any textual work, regardless
2028
+ of subject matter or whether it is published as a printed book.
2029
+ We recommend this License principally for works whose purpose is
2030
+ instruction or reference.
2031
+
2032
+ 1. APPLICABILITY AND DEFINITIONS
2033
+
2034
+ This License applies to any manual or other work, in any medium,
2035
+ that contains a notice placed by the copyright holder saying it
2036
+ can be distributed under the terms of this License. Such a notice
2037
+ grants a world-wide, royalty-free license, unlimited in duration,
2038
+ to use that work under the conditions stated herein. The
2039
+ "Document", below, refers to any such manual or work. Any member
2040
+ of the public is a licensee, and is addressed as "you". You
2041
+ accept the license if you copy, modify or distribute the work in a
2042
+ way requiring permission under copyright law.
2043
+
2044
+ A "Modified Version" of the Document means any work containing the
2045
+ Document or a portion of it, either copied verbatim, or with
2046
+ modifications and/or translated into another language.
2047
+
2048
+ A "Secondary Section" is a named appendix or a front-matter section
2049
+ of the Document that deals exclusively with the relationship of the
2050
+ publishers or authors of the Document to the Document's overall
2051
+ subject (or to related matters) and contains nothing that could
2052
+ fall directly within that overall subject. (Thus, if the Document
2053
+ is in part a textbook of mathematics, a Secondary Section may not
2054
+ explain any mathematics.) The relationship could be a matter of
2055
+ historical connection with the subject or with related matters, or
2056
+ of legal, commercial, philosophical, ethical or political position
2057
+ regarding them.
2058
+
2059
+ The "Invariant Sections" are certain Secondary Sections whose
2060
+ titles are designated, as being those of Invariant Sections, in
2061
+ the notice that says that the Document is released under this
2062
+ License. If a section does not fit the above definition of
2063
+ Secondary then it is not allowed to be designated as Invariant.
2064
+ The Document may contain zero Invariant Sections. If the Document
2065
+ does not identify any Invariant Sections then there are none.
2066
+
2067
+ The "Cover Texts" are certain short passages of text that are
2068
+ listed, as Front-Cover Texts or Back-Cover Texts, in the notice
2069
+ that says that the Document is released under this License. A
2070
+ Front-Cover Text may be at most 5 words, and a Back-Cover Text may
2071
+ be at most 25 words.
2072
+
2073
+ A "Transparent" copy of the Document means a machine-readable copy,
2074
+ represented in a format whose specification is available to the
2075
+ general public, that is suitable for revising the document
2076
+ straightforwardly with generic text editors or (for images
2077
+ composed of pixels) generic paint programs or (for drawings) some
2078
+ widely available drawing editor, and that is suitable for input to
2079
+ text formatters or for automatic translation to a variety of
2080
+ formats suitable for input to text formatters. A copy made in an
2081
+ otherwise Transparent file format whose markup, or absence of
2082
+ markup, has been arranged to thwart or discourage subsequent
2083
+ modification by readers is not Transparent. An image format is
2084
+ not Transparent if used for any substantial amount of text. A
2085
+ copy that is not "Transparent" is called "Opaque".
2086
+
2087
+ Examples of suitable formats for Transparent copies include plain
2088
+ ASCII without markup, Texinfo input format, LaTeX input format,
2089
+ SGML or XML using a publicly available DTD, and
2090
+ standard-conforming simple HTML, PostScript or PDF designed for
2091
+ human modification. Examples of transparent image formats include
2092
+ PNG, XCF and JPG. Opaque formats include proprietary formats that
2093
+ can be read and edited only by proprietary word processors, SGML or
2094
+ XML for which the DTD and/or processing tools are not generally
2095
+ available, and the machine-generated HTML, PostScript or PDF
2096
+ produced by some word processors for output purposes only.
2097
+
2098
+ The "Title Page" means, for a printed book, the title page itself,
2099
+ plus such following pages as are needed to hold, legibly, the
2100
+ material this License requires to appear in the title page. For
2101
+ works in formats which do not have any title page as such, "Title
2102
+ Page" means the text near the most prominent appearance of the
2103
+ work's title, preceding the beginning of the body of the text.
2104
+
2105
+ The "publisher" means any person or entity that distributes copies
2106
+ of the Document to the public.
2107
+
2108
+ A section "Entitled XYZ" means a named subunit of the Document
2109
+ whose title either is precisely XYZ or contains XYZ in parentheses
2110
+ following text that translates XYZ in another language. (Here XYZ
2111
+ stands for a specific section name mentioned below, such as
2112
+ "Acknowledgements", "Dedications", "Endorsements", or "History".)
2113
+ To "Preserve the Title" of such a section when you modify the
2114
+ Document means that it remains a section "Entitled XYZ" according
2115
+ to this definition.
2116
+
2117
+ The Document may include Warranty Disclaimers next to the notice
2118
+ which states that this License applies to the Document. These
2119
+ Warranty Disclaimers are considered to be included by reference in
2120
+ this License, but only as regards disclaiming warranties: any other
2121
+ implication that these Warranty Disclaimers may have is void and
2122
+ has no effect on the meaning of this License.
2123
+
2124
+ 2. VERBATIM COPYING
2125
+
2126
+ You may copy and distribute the Document in any medium, either
2127
+ commercially or noncommercially, provided that this License, the
2128
+ copyright notices, and the license notice saying this License
2129
+ applies to the Document are reproduced in all copies, and that you
2130
+ add no other conditions whatsoever to those of this License. You
2131
+ may not use technical measures to obstruct or control the reading
2132
+ or further copying of the copies you make or distribute. However,
2133
+ you may accept compensation in exchange for copies. If you
2134
+ distribute a large enough number of copies you must also follow
2135
+ the conditions in section 3.
2136
+
2137
+ You may also lend copies, under the same conditions stated above,
2138
+ and you may publicly display copies.
2139
+
2140
+ 3. COPYING IN QUANTITY
2141
+
2142
+ If you publish printed copies (or copies in media that commonly
2143
+ have printed covers) of the Document, numbering more than 100, and
2144
+ the Document's license notice requires Cover Texts, you must
2145
+ enclose the copies in covers that carry, clearly and legibly, all
2146
+ these Cover Texts: Front-Cover Texts on the front cover, and
2147
+ Back-Cover Texts on the back cover. Both covers must also clearly
2148
+ and legibly identify you as the publisher of these copies. The
2149
+ front cover must present the full title with all words of the
2150
+ title equally prominent and visible. You may add other material
2151
+ on the covers in addition. Copying with changes limited to the
2152
+ covers, as long as they preserve the title of the Document and
2153
+ satisfy these conditions, can be treated as verbatim copying in
2154
+ other respects.
2155
+
2156
+ If the required texts for either cover are too voluminous to fit
2157
+ legibly, you should put the first ones listed (as many as fit
2158
+ reasonably) on the actual cover, and continue the rest onto
2159
+ adjacent pages.
2160
+
2161
+ If you publish or distribute Opaque copies of the Document
2162
+ numbering more than 100, you must either include a
2163
+ machine-readable Transparent copy along with each Opaque copy, or
2164
+ state in or with each Opaque copy a computer-network location from
2165
+ which the general network-using public has access to download
2166
+ using public-standard network protocols a complete Transparent
2167
+ copy of the Document, free of added material. If you use the
2168
+ latter option, you must take reasonably prudent steps, when you
2169
+ begin distribution of Opaque copies in quantity, to ensure that
2170
+ this Transparent copy will remain thus accessible at the stated
2171
+ location until at least one year after the last time you
2172
+ distribute an Opaque copy (directly or through your agents or
2173
+ retailers) of that edition to the public.
2174
+
2175
+ It is requested, but not required, that you contact the authors of
2176
+ the Document well before redistributing any large number of
2177
+ copies, to give them a chance to provide you with an updated
2178
+ version of the Document.
2179
+
2180
+ 4. MODIFICATIONS
2181
+
2182
+ You may copy and distribute a Modified Version of the Document
2183
+ under the conditions of sections 2 and 3 above, provided that you
2184
+ release the Modified Version under precisely this License, with
2185
+ the Modified Version filling the role of the Document, thus
2186
+ licensing distribution and modification of the Modified Version to
2187
+ whoever possesses a copy of it. In addition, you must do these
2188
+ things in the Modified Version:
2189
+
2190
+ A. Use in the Title Page (and on the covers, if any) a title
2191
+ distinct from that of the Document, and from those of
2192
+ previous versions (which should, if there were any, be listed
2193
+ in the History section of the Document). You may use the
2194
+ same title as a previous version if the original publisher of
2195
+ that version gives permission.
2196
+
2197
+ B. List on the Title Page, as authors, one or more persons or
2198
+ entities responsible for authorship of the modifications in
2199
+ the Modified Version, together with at least five of the
2200
+ principal authors of the Document (all of its principal
2201
+ authors, if it has fewer than five), unless they release you
2202
+ from this requirement.
2203
+
2204
+ C. State on the Title page the name of the publisher of the
2205
+ Modified Version, as the publisher.
2206
+
2207
+ D. Preserve all the copyright notices of the Document.
2208
+
2209
+ E. Add an appropriate copyright notice for your modifications
2210
+ adjacent to the other copyright notices.
2211
+
2212
+ F. Include, immediately after the copyright notices, a license
2213
+ notice giving the public permission to use the Modified
2214
+ Version under the terms of this License, in the form shown in
2215
+ the Addendum below.
2216
+
2217
+ G. Preserve in that license notice the full lists of Invariant
2218
+ Sections and required Cover Texts given in the Document's
2219
+ license notice.
2220
+
2221
+ H. Include an unaltered copy of this License.
2222
+
2223
+ I. Preserve the section Entitled "History", Preserve its Title,
2224
+ and add to it an item stating at least the title, year, new
2225
+ authors, and publisher of the Modified Version as given on
2226
+ the Title Page. If there is no section Entitled "History" in
2227
+ the Document, create one stating the title, year, authors,
2228
+ and publisher of the Document as given on its Title Page,
2229
+ then add an item describing the Modified Version as stated in
2230
+ the previous sentence.
2231
+
2232
+ J. Preserve the network location, if any, given in the Document
2233
+ for public access to a Transparent copy of the Document, and
2234
+ likewise the network locations given in the Document for
2235
+ previous versions it was based on. These may be placed in
2236
+ the "History" section. You may omit a network location for a
2237
+ work that was published at least four years before the
2238
+ Document itself, or if the original publisher of the version
2239
+ it refers to gives permission.
2240
+
2241
+ K. For any section Entitled "Acknowledgements" or "Dedications",
2242
+ Preserve the Title of the section, and preserve in the
2243
+ section all the substance and tone of each of the contributor
2244
+ acknowledgements and/or dedications given therein.
2245
+
2246
+ L. Preserve all the Invariant Sections of the Document,
2247
+ unaltered in their text and in their titles. Section numbers
2248
+ or the equivalent are not considered part of the section
2249
+ titles.
2250
+
2251
+ M. Delete any section Entitled "Endorsements". Such a section
2252
+ may not be included in the Modified Version.
2253
+
2254
+ N. Do not retitle any existing section to be Entitled
2255
+ "Endorsements" or to conflict in title with any Invariant
2256
+ Section.
2257
+
2258
+ O. Preserve any Warranty Disclaimers.
2259
+
2260
+ If the Modified Version includes new front-matter sections or
2261
+ appendices that qualify as Secondary Sections and contain no
2262
+ material copied from the Document, you may at your option
2263
+ designate some or all of these sections as invariant. To do this,
2264
+ add their titles to the list of Invariant Sections in the Modified
2265
+ Version's license notice. These titles must be distinct from any
2266
+ other section titles.
2267
+
2268
+ You may add a section Entitled "Endorsements", provided it contains
2269
+ nothing but endorsements of your Modified Version by various
2270
+ parties--for example, statements of peer review or that the text
2271
+ has been approved by an organization as the authoritative
2272
+ definition of a standard.
2273
+
2274
+ You may add a passage of up to five words as a Front-Cover Text,
2275
+ and a passage of up to 25 words as a Back-Cover Text, to the end
2276
+ of the list of Cover Texts in the Modified Version. Only one
2277
+ passage of Front-Cover Text and one of Back-Cover Text may be
2278
+ added by (or through arrangements made by) any one entity. If the
2279
+ Document already includes a cover text for the same cover,
2280
+ previously added by you or by arrangement made by the same entity
2281
+ you are acting on behalf of, you may not add another; but you may
2282
+ replace the old one, on explicit permission from the previous
2283
+ publisher that added the old one.
2284
+
2285
+ The author(s) and publisher(s) of the Document do not by this
2286
+ License give permission to use their names for publicity for or to
2287
+ assert or imply endorsement of any Modified Version.
2288
+
2289
+ 5. COMBINING DOCUMENTS
2290
+
2291
+ You may combine the Document with other documents released under
2292
+ this License, under the terms defined in section 4 above for
2293
+ modified versions, provided that you include in the combination
2294
+ all of the Invariant Sections of all of the original documents,
2295
+ unmodified, and list them all as Invariant Sections of your
2296
+ combined work in its license notice, and that you preserve all
2297
+ their Warranty Disclaimers.
2298
+
2299
+ The combined work need only contain one copy of this License, and
2300
+ multiple identical Invariant Sections may be replaced with a single
2301
+ copy. If there are multiple Invariant Sections with the same name
2302
+ but different contents, make the title of each such section unique
2303
+ by adding at the end of it, in parentheses, the name of the
2304
+ original author or publisher of that section if known, or else a
2305
+ unique number. Make the same adjustment to the section titles in
2306
+ the list of Invariant Sections in the license notice of the
2307
+ combined work.
2308
+
2309
+ In the combination, you must combine any sections Entitled
2310
+ "History" in the various original documents, forming one section
2311
+ Entitled "History"; likewise combine any sections Entitled
2312
+ "Acknowledgements", and any sections Entitled "Dedications". You
2313
+ must delete all sections Entitled "Endorsements."
2314
+
2315
+ 6. COLLECTIONS OF DOCUMENTS
2316
+
2317
+ You may make a collection consisting of the Document and other
2318
+ documents released under this License, and replace the individual
2319
+ copies of this License in the various documents with a single copy
2320
+ that is included in the collection, provided that you follow the
2321
+ rules of this License for verbatim copying of each of the
2322
+ documents in all other respects.
2323
+
2324
+ You may extract a single document from such a collection, and
2325
+ distribute it individually under this License, provided you insert
2326
+ a copy of this License into the extracted document, and follow
2327
+ this License in all other respects regarding verbatim copying of
2328
+ that document.
2329
+
2330
+ 7. AGGREGATION WITH INDEPENDENT WORKS
2331
+
2332
+ A compilation of the Document or its derivatives with other
2333
+ separate and independent documents or works, in or on a volume of
2334
+ a storage or distribution medium, is called an "aggregate" if the
2335
+ copyright resulting from the compilation is not used to limit the
2336
+ legal rights of the compilation's users beyond what the individual
2337
+ works permit. When the Document is included in an aggregate, this
2338
+ License does not apply to the other works in the aggregate which
2339
+ are not themselves derivative works of the Document.
2340
+
2341
+ If the Cover Text requirement of section 3 is applicable to these
2342
+ copies of the Document, then if the Document is less than one half
2343
+ of the entire aggregate, the Document's Cover Texts may be placed
2344
+ on covers that bracket the Document within the aggregate, or the
2345
+ electronic equivalent of covers if the Document is in electronic
2346
+ form. Otherwise they must appear on printed covers that bracket
2347
+ the whole aggregate.
2348
+
2349
+ 8. TRANSLATION
2350
+
2351
+ Translation is considered a kind of modification, so you may
2352
+ distribute translations of the Document under the terms of section
2353
+ 4. Replacing Invariant Sections with translations requires special
2354
+ permission from their copyright holders, but you may include
2355
+ translations of some or all Invariant Sections in addition to the
2356
+ original versions of these Invariant Sections. You may include a
2357
+ translation of this License, and all the license notices in the
2358
+ Document, and any Warranty Disclaimers, provided that you also
2359
+ include the original English version of this License and the
2360
+ original versions of those notices and disclaimers. In case of a
2361
+ disagreement between the translation and the original version of
2362
+ this License or a notice or disclaimer, the original version will
2363
+ prevail.
2364
+
2365
+ If a section in the Document is Entitled "Acknowledgements",
2366
+ "Dedications", or "History", the requirement (section 4) to
2367
+ Preserve its Title (section 1) will typically require changing the
2368
+ actual title.
2369
+
2370
+ 9. TERMINATION
2371
+
2372
+ You may not copy, modify, sublicense, or distribute the Document
2373
+ except as expressly provided under this License. Any attempt
2374
+ otherwise to copy, modify, sublicense, or distribute it is void,
2375
+ and will automatically terminate your rights under this License.
2376
+
2377
+ However, if you cease all violation of this License, then your
2378
+ license from a particular copyright holder is reinstated (a)
2379
+ provisionally, unless and until the copyright holder explicitly
2380
+ and finally terminates your license, and (b) permanently, if the
2381
+ copyright holder fails to notify you of the violation by some
2382
+ reasonable means prior to 60 days after the cessation.
2383
+
2384
+ Moreover, your license from a particular copyright holder is
2385
+ reinstated permanently if the copyright holder notifies you of the
2386
+ violation by some reasonable means, this is the first time you have
2387
+ received notice of violation of this License (for any work) from
2388
+ that copyright holder, and you cure the violation prior to 30 days
2389
+ after your receipt of the notice.
2390
+
2391
+ Termination of your rights under this section does not terminate
2392
+ the licenses of parties who have received copies or rights from
2393
+ you under this License. If your rights have been terminated and
2394
+ not permanently reinstated, receipt of a copy of some or all of
2395
+ the same material does not give you any rights to use it.
2396
+
2397
+ 10. FUTURE REVISIONS OF THIS LICENSE
2398
+
2399
+ The Free Software Foundation may publish new, revised versions of
2400
+ the GNU Free Documentation License from time to time. Such new
2401
+ versions will be similar in spirit to the present version, but may
2402
+ differ in detail to address new problems or concerns. See
2403
+ `https://www.gnu.org/copyleft/'.
2404
+
2405
+ Each version of the License is given a distinguishing version
2406
+ number. If the Document specifies that a particular numbered
2407
+ version of this License "or any later version" applies to it, you
2408
+ have the option of following the terms and conditions either of
2409
+ that specified version or of any later version that has been
2410
+ published (not as a draft) by the Free Software Foundation. If
2411
+ the Document does not specify a version number of this License,
2412
+ you may choose any version ever published (not as a draft) by the
2413
+ Free Software Foundation. If the Document specifies that a proxy
2414
+ can decide which future versions of this License can be used, that
2415
+ proxy's public statement of acceptance of a version permanently
2416
+ authorizes you to choose that version for the Document.
2417
+
2418
+ 11. RELICENSING
2419
+
2420
+ "Massive Multiauthor Collaboration Site" (or "MMC Site") means any
2421
+ World Wide Web server that publishes copyrightable works and also
2422
+ provides prominent facilities for anybody to edit those works. A
2423
+ public wiki that anybody can edit is an example of such a server.
2424
+ A "Massive Multiauthor Collaboration" (or "MMC") contained in the
2425
+ site means any set of copyrightable works thus published on the MMC
2426
+ site.
2427
+
2428
+ "CC-BY-SA" means the Creative Commons Attribution-Share Alike 3.0
2429
+ license published by Creative Commons Corporation, a not-for-profit
2430
+ corporation with a principal place of business in San Francisco,
2431
+ California, as well as future copyleft versions of that license
2432
+ published by that same organization.
2433
+
2434
+ "Incorporate" means to publish or republish a Document, in whole or
2435
+ in part, as part of another Document.
2436
+
2437
+ An MMC is "eligible for relicensing" if it is licensed under this
2438
+ License, and if all works that were first published under this
2439
+ License somewhere other than this MMC, and subsequently
2440
+ incorporated in whole or in part into the MMC, (1) had no cover
2441
+ texts or invariant sections, and (2) were thus incorporated prior
2442
+ to November 1, 2008.
2443
+
2444
+ The operator of an MMC Site may republish an MMC contained in the
2445
+ site under CC-BY-SA on the same site at any time before August 1,
2446
+ 2009, provided the MMC is eligible for relicensing.
2447
+
2448
+
2449
+ ADDENDUM: How to use this License for your documents
2450
+ ====================================================
2451
+
2452
+ To use this License in a document you have written, include a copy of
2453
+ the License in the document and put the following copyright and license
2454
+ notices just after the title page:
2455
+
2456
+ Copyright (C) YEAR YOUR NAME.
2457
+ Permission is granted to copy, distribute and/or modify this document
2458
+ under the terms of the GNU Free Documentation License, Version 1.3
2459
+ or any later version published by the Free Software Foundation;
2460
+ with no Invariant Sections, no Front-Cover Texts, and no Back-Cover
2461
+ Texts. A copy of the license is included in the section entitled ``GNU
2462
+ Free Documentation License''.
2463
+
2464
+ If you have Invariant Sections, Front-Cover Texts and Back-Cover
2465
+ Texts, replace the "with...Texts." line with this:
2466
+
2467
+ with the Invariant Sections being LIST THEIR TITLES, with
2468
+ the Front-Cover Texts being LIST, and with the Back-Cover Texts
2469
+ being LIST.
2470
+
2471
+ If you have Invariant Sections without Cover Texts, or some other
2472
+ combination of the three, merge those two alternatives to suit the
2473
+ situation.
2474
+
2475
+ If your document contains nontrivial examples of program code, we
2476
+ recommend releasing these examples in parallel under your choice of
2477
+ free software license, such as the GNU General Public License, to
2478
+ permit their use in free software.
2479
+
2480
+ 
2481
+ File: gmp.info, Node: Concept Index, Next: Function Index, Prev: GNU Free Documentation License, Up: Top
2482
+
2483
+ Concept Index
2484
+ *************
2485
+
2486
+ [index]
2487
+ * Menu:
2488
+
2489
+ * #include: Headers and Libraries.
2490
+ (line 6)
2491
+ * --build: Build Options. (line 52)
2492
+ * --disable-fft: Build Options. (line 313)
2493
+ * --disable-shared: Build Options. (line 45)
2494
+ * --disable-static: Build Options. (line 45)
2495
+ * --enable-alloca: Build Options. (line 274)
2496
+ * --enable-assert: Build Options. (line 319)
2497
+ * --enable-cxx: Build Options. (line 226)
2498
+ * --enable-fat: Build Options. (line 161)
2499
+ * --enable-profiling <1>: Build Options. (line 323)
2500
+ * --enable-profiling: Profiling. (line 6)
2501
+ * --exec-prefix: Build Options. (line 32)
2502
+ * --host: Build Options. (line 66)
2503
+ * --prefix: Build Options. (line 32)
2504
+ * -finstrument-functions: Profiling. (line 66)
2505
+ * 2exp functions: Efficiency. (line 43)
2506
+ * 68000: Notes for Particular Systems.
2507
+ (line 94)
2508
+ * 80x86: Notes for Particular Systems.
2509
+ (line 150)
2510
+ * ABI <1>: Build Options. (line 168)
2511
+ * ABI: ABI and ISA. (line 6)
2512
+ * About this manual: Introduction to GMP. (line 57)
2513
+ * AC_CHECK_LIB: Autoconf. (line 11)
2514
+ * AIX <1>: Notes for Particular Systems.
2515
+ (line 7)
2516
+ * AIX: ABI and ISA. (line 178)
2517
+ * Algorithms: Algorithms. (line 6)
2518
+ * alloca: Build Options. (line 274)
2519
+ * Allocation of memory: Custom Allocation. (line 6)
2520
+ * AMD64: ABI and ISA. (line 44)
2521
+ * Anonymous FTP of latest version: Introduction to GMP. (line 37)
2522
+ * Application Binary Interface: ABI and ISA. (line 6)
2523
+ * Arithmetic functions <1>: Rational Arithmetic. (line 6)
2524
+ * Arithmetic functions <2>: Float Arithmetic. (line 6)
2525
+ * Arithmetic functions: Integer Arithmetic. (line 6)
2526
+ * ARM: Notes for Particular Systems.
2527
+ (line 20)
2528
+ * Assembly cache handling: Assembly Cache Handling.
2529
+ (line 6)
2530
+ * Assembly carry propagation: Assembly Carry Propagation.
2531
+ (line 6)
2532
+ * Assembly code organisation: Assembly Code Organisation.
2533
+ (line 6)
2534
+ * Assembly coding: Assembly Coding. (line 6)
2535
+ * Assembly floating Point: Assembly Floating Point.
2536
+ (line 6)
2537
+ * Assembly loop unrolling: Assembly Loop Unrolling.
2538
+ (line 6)
2539
+ * Assembly SIMD: Assembly SIMD Instructions.
2540
+ (line 6)
2541
+ * Assembly software pipelining: Assembly Software Pipelining.
2542
+ (line 6)
2543
+ * Assembly writing guide: Assembly Writing Guide.
2544
+ (line 6)
2545
+ * Assertion checking <1>: Debugging. (line 79)
2546
+ * Assertion checking: Build Options. (line 319)
2547
+ * Assignment functions <1>: Assigning Integers. (line 6)
2548
+ * Assignment functions <2>: Initializing Rationals.
2549
+ (line 6)
2550
+ * Assignment functions <3>: Simultaneous Float Init & Assign.
2551
+ (line 6)
2552
+ * Assignment functions <4>: Simultaneous Integer Init & Assign.
2553
+ (line 6)
2554
+ * Assignment functions: Assigning Floats. (line 6)
2555
+ * Autoconf: Autoconf. (line 6)
2556
+ * Basics: GMP Basics. (line 6)
2557
+ * Binomial coefficient algorithm: Binomial Coefficients Algorithm.
2558
+ (line 6)
2559
+ * Binomial coefficient functions: Number Theoretic Functions.
2560
+ (line 128)
2561
+ * Binutils strip: Known Build Problems.
2562
+ (line 28)
2563
+ * Bit manipulation functions: Integer Logic and Bit Fiddling.
2564
+ (line 6)
2565
+ * Bit scanning functions: Integer Logic and Bit Fiddling.
2566
+ (line 40)
2567
+ * Bit shift left: Integer Arithmetic. (line 38)
2568
+ * Bit shift right: Integer Division. (line 62)
2569
+ * Bits per limb: Useful Macros and Constants.
2570
+ (line 7)
2571
+ * Bug reporting: Reporting Bugs. (line 6)
2572
+ * Build directory: Build Options. (line 19)
2573
+ * Build notes for binary packaging: Notes for Package Builds.
2574
+ (line 6)
2575
+ * Build notes for particular systems: Notes for Particular Systems.
2576
+ (line 6)
2577
+ * Build options: Build Options. (line 6)
2578
+ * Build problems known: Known Build Problems.
2579
+ (line 6)
2580
+ * Build system: Build Options. (line 52)
2581
+ * Building GMP: Installing GMP. (line 6)
2582
+ * Bus error: Debugging. (line 7)
2583
+ * C compiler: Build Options. (line 179)
2584
+ * C++ compiler: Build Options. (line 250)
2585
+ * C++ interface: C++ Class Interface. (line 6)
2586
+ * C++ interface internals: C++ Interface Internals.
2587
+ (line 6)
2588
+ * C++ istream input: C++ Formatted Input. (line 6)
2589
+ * C++ ostream output: C++ Formatted Output.
2590
+ (line 6)
2591
+ * C++ support: Build Options. (line 226)
2592
+ * CC: Build Options. (line 179)
2593
+ * CC_FOR_BUILD: Build Options. (line 213)
2594
+ * CFLAGS: Build Options. (line 179)
2595
+ * Checker: Debugging. (line 115)
2596
+ * checkergcc: Debugging. (line 122)
2597
+ * Code organisation: Assembly Code Organisation.
2598
+ (line 6)
2599
+ * Compaq C++: Notes for Particular Systems.
2600
+ (line 25)
2601
+ * Comparison functions <1>: Integer Comparisons. (line 6)
2602
+ * Comparison functions <2>: Float Comparison. (line 6)
2603
+ * Comparison functions: Comparing Rationals. (line 6)
2604
+ * Compatibility with older versions: Compatibility with older versions.
2605
+ (line 6)
2606
+ * Conditions for copying GNU MP: Copying. (line 6)
2607
+ * Configuring GMP: Installing GMP. (line 6)
2608
+ * Congruence algorithm: Exact Remainder. (line 30)
2609
+ * Congruence functions: Integer Division. (line 137)
2610
+ * Constants: Useful Macros and Constants.
2611
+ (line 6)
2612
+ * Contributors: Contributors. (line 6)
2613
+ * Conventions for parameters: Parameter Conventions.
2614
+ (line 6)
2615
+ * Conventions for variables: Variable Conventions.
2616
+ (line 6)
2617
+ * Conversion functions <1>: Converting Integers. (line 6)
2618
+ * Conversion functions <2>: Converting Floats. (line 6)
2619
+ * Conversion functions: Rational Conversions.
2620
+ (line 6)
2621
+ * Copying conditions: Copying. (line 6)
2622
+ * CPPFLAGS: Build Options. (line 205)
2623
+ * CPU types <1>: Introduction to GMP. (line 24)
2624
+ * CPU types: Build Options. (line 108)
2625
+ * Cross compiling: Build Options. (line 66)
2626
+ * Cryptography functions, low-level: Low-level Functions. (line 495)
2627
+ * Custom allocation: Custom Allocation. (line 6)
2628
+ * CXX: Build Options. (line 250)
2629
+ * CXXFLAGS: Build Options. (line 250)
2630
+ * Cygwin: Notes for Particular Systems.
2631
+ (line 57)
2632
+ * Darwin: Known Build Problems.
2633
+ (line 51)
2634
+ * Debugging: Debugging. (line 6)
2635
+ * Demonstration programs: Demonstration Programs.
2636
+ (line 6)
2637
+ * Digits in an integer: Miscellaneous Integer Functions.
2638
+ (line 23)
2639
+ * Divisibility algorithm: Exact Remainder. (line 30)
2640
+ * Divisibility functions: Integer Division. (line 137)
2641
+ * Divisibility testing: Efficiency. (line 91)
2642
+ * Division algorithms: Division Algorithms. (line 6)
2643
+ * Division functions <1>: Rational Arithmetic. (line 24)
2644
+ * Division functions <2>: Integer Division. (line 6)
2645
+ * Division functions: Float Arithmetic. (line 33)
2646
+ * DJGPP <1>: Notes for Particular Systems.
2647
+ (line 57)
2648
+ * DJGPP: Known Build Problems.
2649
+ (line 18)
2650
+ * DLLs: Notes for Particular Systems.
2651
+ (line 70)
2652
+ * DocBook: Build Options. (line 346)
2653
+ * Documentation formats: Build Options. (line 339)
2654
+ * Documentation license: GNU Free Documentation License.
2655
+ (line 6)
2656
+ * DVI: Build Options. (line 342)
2657
+ * Efficiency: Efficiency. (line 6)
2658
+ * Emacs: Emacs. (line 6)
2659
+ * Exact division functions: Integer Division. (line 112)
2660
+ * Exact remainder: Exact Remainder. (line 6)
2661
+ * Example programs: Demonstration Programs.
2662
+ (line 6)
2663
+ * Exec prefix: Build Options. (line 32)
2664
+ * Execution profiling <1>: Build Options. (line 323)
2665
+ * Execution profiling: Profiling. (line 6)
2666
+ * Exponentiation functions <1>: Float Arithmetic. (line 41)
2667
+ * Exponentiation functions: Integer Exponentiation.
2668
+ (line 6)
2669
+ * Export: Integer Import and Export.
2670
+ (line 45)
2671
+ * Expression parsing demo: Demonstration Programs.
2672
+ (line 15)
2673
+ * Extended GCD: Number Theoretic Functions.
2674
+ (line 49)
2675
+ * Factor removal functions: Number Theoretic Functions.
2676
+ (line 108)
2677
+ * Factorial algorithm: Factorial Algorithm. (line 6)
2678
+ * Factorial functions: Number Theoretic Functions.
2679
+ (line 116)
2680
+ * Factorization demo: Demonstration Programs.
2681
+ (line 25)
2682
+ * Fast Fourier Transform: FFT Multiplication. (line 6)
2683
+ * Fat binary: Build Options. (line 161)
2684
+ * FFT multiplication <1>: FFT Multiplication. (line 6)
2685
+ * FFT multiplication: Build Options. (line 313)
2686
+ * Fibonacci number algorithm: Fibonacci Numbers Algorithm.
2687
+ (line 6)
2688
+ * Fibonacci sequence functions: Number Theoretic Functions.
2689
+ (line 136)
2690
+ * Float arithmetic functions: Float Arithmetic. (line 6)
2691
+ * Float assignment functions <1>: Simultaneous Float Init & Assign.
2692
+ (line 6)
2693
+ * Float assignment functions: Assigning Floats. (line 6)
2694
+ * Float comparison functions: Float Comparison. (line 6)
2695
+ * Float conversion functions: Converting Floats. (line 6)
2696
+ * Float functions: Floating-point Functions.
2697
+ (line 6)
2698
+ * Float initialization functions <1>: Simultaneous Float Init & Assign.
2699
+ (line 6)
2700
+ * Float initialization functions: Initializing Floats. (line 6)
2701
+ * Float input and output functions: I/O of Floats. (line 6)
2702
+ * Float internals: Float Internals. (line 6)
2703
+ * Float miscellaneous functions: Miscellaneous Float Functions.
2704
+ (line 6)
2705
+ * Float random number functions: Miscellaneous Float Functions.
2706
+ (line 27)
2707
+ * Float rounding functions: Miscellaneous Float Functions.
2708
+ (line 9)
2709
+ * Float sign tests: Float Comparison. (line 35)
2710
+ * Floating point mode: Notes for Particular Systems.
2711
+ (line 34)
2712
+ * Floating-point functions: Floating-point Functions.
2713
+ (line 6)
2714
+ * Floating-point number: Nomenclature and Types.
2715
+ (line 21)
2716
+ * fnccheck: Profiling. (line 77)
2717
+ * Formatted input: Formatted Input. (line 6)
2718
+ * Formatted output: Formatted Output. (line 6)
2719
+ * Free Documentation License: GNU Free Documentation License.
2720
+ (line 6)
2721
+ * FreeBSD: Notes for Particular Systems.
2722
+ (line 43)
2723
+ * frexp <1>: Converting Integers. (line 43)
2724
+ * frexp: Converting Floats. (line 24)
2725
+ * FTP of latest version: Introduction to GMP. (line 37)
2726
+ * Function classes: Function Classes. (line 6)
2727
+ * FunctionCheck: Profiling. (line 77)
2728
+ * GCC Checker: Debugging. (line 115)
2729
+ * GCD algorithms: Greatest Common Divisor Algorithms.
2730
+ (line 6)
2731
+ * GCD extended: Number Theoretic Functions.
2732
+ (line 49)
2733
+ * GCD functions: Number Theoretic Functions.
2734
+ (line 32)
2735
+ * GDB: Debugging. (line 58)
2736
+ * Generic C: Build Options. (line 152)
2737
+ * GMP Perl module: Demonstration Programs.
2738
+ (line 35)
2739
+ * GMP version number: Useful Macros and Constants.
2740
+ (line 12)
2741
+ * gmp.h: Headers and Libraries.
2742
+ (line 6)
2743
+ * gmpxx.h: C++ Interface General.
2744
+ (line 8)
2745
+ * GNU Debugger: Debugging. (line 58)
2746
+ * GNU Free Documentation License: GNU Free Documentation License.
2747
+ (line 6)
2748
+ * GNU strip: Known Build Problems.
2749
+ (line 28)
2750
+ * gprof: Profiling. (line 41)
2751
+ * Greatest common divisor algorithms: Greatest Common Divisor Algorithms.
2752
+ (line 6)
2753
+ * Greatest common divisor functions: Number Theoretic Functions.
2754
+ (line 32)
2755
+ * Hardware floating point mode: Notes for Particular Systems.
2756
+ (line 34)
2757
+ * Headers: Headers and Libraries.
2758
+ (line 6)
2759
+ * Heap problems: Debugging. (line 24)
2760
+ * Home page: Introduction to GMP. (line 33)
2761
+ * Host system: Build Options. (line 66)
2762
+ * HP-UX: ABI and ISA. (line 77)
2763
+ * HPPA: ABI and ISA. (line 77)
2764
+ * I/O functions <1>: I/O of Integers. (line 6)
2765
+ * I/O functions <2>: I/O of Floats. (line 6)
2766
+ * I/O functions: I/O of Rationals. (line 6)
2767
+ * i386: Notes for Particular Systems.
2768
+ (line 150)
2769
+ * IA-64: ABI and ISA. (line 116)
2770
+ * Import: Integer Import and Export.
2771
+ (line 11)
2772
+ * In-place operations: Efficiency. (line 57)
2773
+ * Include files: Headers and Libraries.
2774
+ (line 6)
2775
+ * info-lookup-symbol: Emacs. (line 6)
2776
+ * Initialization functions <1>: Initializing Floats. (line 6)
2777
+ * Initialization functions <2>: Random State Initialization.
2778
+ (line 6)
2779
+ * Initialization functions <3>: Simultaneous Float Init & Assign.
2780
+ (line 6)
2781
+ * Initialization functions <4>: Simultaneous Integer Init & Assign.
2782
+ (line 6)
2783
+ * Initialization functions <5>: Initializing Rationals.
2784
+ (line 6)
2785
+ * Initialization functions: Initializing Integers.
2786
+ (line 6)
2787
+ * Initializing and clearing: Efficiency. (line 21)
2788
+ * Input functions <1>: Formatted Input Functions.
2789
+ (line 6)
2790
+ * Input functions <2>: I/O of Rationals. (line 6)
2791
+ * Input functions <3>: I/O of Floats. (line 6)
2792
+ * Input functions: I/O of Integers. (line 6)
2793
+ * Install prefix: Build Options. (line 32)
2794
+ * Installing GMP: Installing GMP. (line 6)
2795
+ * Instruction Set Architecture: ABI and ISA. (line 6)
2796
+ * instrument-functions: Profiling. (line 66)
2797
+ * Integer: Nomenclature and Types.
2798
+ (line 6)
2799
+ * Integer arithmetic functions: Integer Arithmetic. (line 6)
2800
+ * Integer assignment functions <1>: Assigning Integers. (line 6)
2801
+ * Integer assignment functions: Simultaneous Integer Init & Assign.
2802
+ (line 6)
2803
+ * Integer bit manipulation functions: Integer Logic and Bit Fiddling.
2804
+ (line 6)
2805
+ * Integer comparison functions: Integer Comparisons. (line 6)
2806
+ * Integer conversion functions: Converting Integers. (line 6)
2807
+ * Integer division functions: Integer Division. (line 6)
2808
+ * Integer exponentiation functions: Integer Exponentiation.
2809
+ (line 6)
2810
+ * Integer export: Integer Import and Export.
2811
+ (line 45)
2812
+ * Integer functions: Integer Functions. (line 6)
2813
+ * Integer import: Integer Import and Export.
2814
+ (line 11)
2815
+ * Integer initialization functions <1>: Initializing Integers.
2816
+ (line 6)
2817
+ * Integer initialization functions: Simultaneous Integer Init & Assign.
2818
+ (line 6)
2819
+ * Integer input and output functions: I/O of Integers. (line 6)
2820
+ * Integer internals: Integer Internals. (line 6)
2821
+ * Integer logical functions: Integer Logic and Bit Fiddling.
2822
+ (line 6)
2823
+ * Integer miscellaneous functions: Miscellaneous Integer Functions.
2824
+ (line 6)
2825
+ * Integer random number functions: Integer Random Numbers.
2826
+ (line 6)
2827
+ * Integer root functions: Integer Roots. (line 6)
2828
+ * Integer sign tests: Integer Comparisons. (line 28)
2829
+ * Integer special functions: Integer Special Functions.
2830
+ (line 6)
2831
+ * Interix: Notes for Particular Systems.
2832
+ (line 65)
2833
+ * Internals: Internals. (line 6)
2834
+ * Introduction: Introduction to GMP. (line 6)
2835
+ * Inverse modulo functions: Number Theoretic Functions.
2836
+ (line 76)
2837
+ * IRIX <1>: ABI and ISA. (line 141)
2838
+ * IRIX: Known Build Problems.
2839
+ (line 38)
2840
+ * ISA: ABI and ISA. (line 6)
2841
+ * istream input: C++ Formatted Input. (line 6)
2842
+ * Jacobi symbol algorithm: Jacobi Symbol. (line 6)
2843
+ * Jacobi symbol functions: Number Theoretic Functions.
2844
+ (line 83)
2845
+ * Karatsuba multiplication: Karatsuba Multiplication.
2846
+ (line 6)
2847
+ * Karatsuba square root algorithm: Square Root Algorithm.
2848
+ (line 6)
2849
+ * Kronecker symbol functions: Number Theoretic Functions.
2850
+ (line 95)
2851
+ * Language bindings: Language Bindings. (line 6)
2852
+ * Latest version of GMP: Introduction to GMP. (line 37)
2853
+ * LCM functions: Number Theoretic Functions.
2854
+ (line 70)
2855
+ * Least common multiple functions: Number Theoretic Functions.
2856
+ (line 70)
2857
+ * Legendre symbol functions: Number Theoretic Functions.
2858
+ (line 86)
2859
+ * libgmp: Headers and Libraries.
2860
+ (line 22)
2861
+ * libgmpxx: Headers and Libraries.
2862
+ (line 27)
2863
+ * Libraries: Headers and Libraries.
2864
+ (line 22)
2865
+ * Libtool: Headers and Libraries.
2866
+ (line 33)
2867
+ * Libtool versioning: Notes for Package Builds.
2868
+ (line 9)
2869
+ * License conditions: Copying. (line 6)
2870
+ * Limb: Nomenclature and Types.
2871
+ (line 31)
2872
+ * Limb size: Useful Macros and Constants.
2873
+ (line 7)
2874
+ * Linear congruential algorithm: Random Number Algorithms.
2875
+ (line 25)
2876
+ * Linear congruential random numbers: Random State Initialization.
2877
+ (line 32)
2878
+ * Linking: Headers and Libraries.
2879
+ (line 22)
2880
+ * Logical functions: Integer Logic and Bit Fiddling.
2881
+ (line 6)
2882
+ * Low-level functions: Low-level Functions. (line 6)
2883
+ * Low-level functions for cryptography: Low-level Functions. (line 495)
2884
+ * Lucas number algorithm: Lucas Numbers Algorithm.
2885
+ (line 6)
2886
+ * Lucas number functions: Number Theoretic Functions.
2887
+ (line 147)
2888
+ * MacOS X: Known Build Problems.
2889
+ (line 51)
2890
+ * Mailing lists: Introduction to GMP. (line 44)
2891
+ * Malloc debugger: Debugging. (line 30)
2892
+ * Malloc problems: Debugging. (line 24)
2893
+ * Memory allocation: Custom Allocation. (line 6)
2894
+ * Memory management: Memory Management. (line 6)
2895
+ * Mersenne twister algorithm: Random Number Algorithms.
2896
+ (line 17)
2897
+ * Mersenne twister random numbers: Random State Initialization.
2898
+ (line 13)
2899
+ * MINGW: Notes for Particular Systems.
2900
+ (line 57)
2901
+ * MIPS: ABI and ISA. (line 141)
2902
+ * Miscellaneous float functions: Miscellaneous Float Functions.
2903
+ (line 6)
2904
+ * Miscellaneous integer functions: Miscellaneous Integer Functions.
2905
+ (line 6)
2906
+ * MMX: Notes for Particular Systems.
2907
+ (line 156)
2908
+ * Modular inverse functions: Number Theoretic Functions.
2909
+ (line 76)
2910
+ * Most significant bit: Miscellaneous Integer Functions.
2911
+ (line 34)
2912
+ * MPN_PATH: Build Options. (line 327)
2913
+ * MS Windows: Notes for Particular Systems.
2914
+ (line 57)
2915
+ * MS-DOS: Notes for Particular Systems.
2916
+ (line 57)
2917
+ * Multi-threading: Reentrancy. (line 6)
2918
+ * Multiplication algorithms: Multiplication Algorithms.
2919
+ (line 6)
2920
+ * Nails: Low-level Functions. (line 664)
2921
+ * Native compilation: Build Options. (line 52)
2922
+ * NetBSD: Notes for Particular Systems.
2923
+ (line 100)
2924
+ * NeXT: Known Build Problems.
2925
+ (line 57)
2926
+ * Next prime function: Number Theoretic Functions.
2927
+ (line 25)
2928
+ * Nomenclature: Nomenclature and Types.
2929
+ (line 6)
2930
+ * Non-Unix systems: Build Options. (line 11)
2931
+ * Nth root algorithm: Nth Root Algorithm. (line 6)
2932
+ * Number sequences: Efficiency. (line 147)
2933
+ * Number theoretic functions: Number Theoretic Functions.
2934
+ (line 6)
2935
+ * Numerator and denominator: Applying Integer Functions.
2936
+ (line 6)
2937
+ * obstack output: Formatted Output Functions.
2938
+ (line 81)
2939
+ * OpenBSD: Notes for Particular Systems.
2940
+ (line 109)
2941
+ * Optimizing performance: Performance optimization.
2942
+ (line 6)
2943
+ * ostream output: C++ Formatted Output.
2944
+ (line 6)
2945
+ * Other languages: Language Bindings. (line 6)
2946
+ * Output functions <1>: Formatted Output Functions.
2947
+ (line 6)
2948
+ * Output functions <2>: I/O of Rationals. (line 6)
2949
+ * Output functions <3>: I/O of Integers. (line 6)
2950
+ * Output functions: I/O of Floats. (line 6)
2951
+ * Packaged builds: Notes for Package Builds.
2952
+ (line 6)
2953
+ * Parameter conventions: Parameter Conventions.
2954
+ (line 6)
2955
+ * Parsing expressions demo: Demonstration Programs.
2956
+ (line 21)
2957
+ * Particular systems: Notes for Particular Systems.
2958
+ (line 6)
2959
+ * Past GMP versions: Compatibility with older versions.
2960
+ (line 6)
2961
+ * PDF: Build Options. (line 342)
2962
+ * Perfect power algorithm: Perfect Power Algorithm.
2963
+ (line 6)
2964
+ * Perfect power functions: Integer Roots. (line 28)
2965
+ * Perfect square algorithm: Perfect Square Algorithm.
2966
+ (line 6)
2967
+ * Perfect square functions: Integer Roots. (line 37)
2968
+ * perl: Demonstration Programs.
2969
+ (line 35)
2970
+ * Perl module: Demonstration Programs.
2971
+ (line 35)
2972
+ * Postscript: Build Options. (line 342)
2973
+ * Power/PowerPC <1>: Known Build Problems.
2974
+ (line 63)
2975
+ * Power/PowerPC: Notes for Particular Systems.
2976
+ (line 115)
2977
+ * Powering algorithms: Powering Algorithms. (line 6)
2978
+ * Powering functions <1>: Float Arithmetic. (line 41)
2979
+ * Powering functions: Integer Exponentiation.
2980
+ (line 6)
2981
+ * PowerPC: ABI and ISA. (line 176)
2982
+ * Precision of floats: Floating-point Functions.
2983
+ (line 6)
2984
+ * Precision of hardware floating point: Notes for Particular Systems.
2985
+ (line 34)
2986
+ * Prefix: Build Options. (line 32)
2987
+ * Prime testing algorithms: Prime Testing Algorithm.
2988
+ (line 6)
2989
+ * Prime testing functions: Number Theoretic Functions.
2990
+ (line 7)
2991
+ * Primorial functions: Number Theoretic Functions.
2992
+ (line 121)
2993
+ * printf formatted output: Formatted Output. (line 6)
2994
+ * Probable prime testing functions: Number Theoretic Functions.
2995
+ (line 7)
2996
+ * prof: Profiling. (line 24)
2997
+ * Profiling: Profiling. (line 6)
2998
+ * Radix conversion algorithms: Radix Conversion Algorithms.
2999
+ (line 6)
3000
+ * Random number algorithms: Random Number Algorithms.
3001
+ (line 6)
3002
+ * Random number functions <1>: Integer Random Numbers.
3003
+ (line 6)
3004
+ * Random number functions <2>: Random Number Functions.
3005
+ (line 6)
3006
+ * Random number functions: Miscellaneous Float Functions.
3007
+ (line 27)
3008
+ * Random number seeding: Random State Seeding.
3009
+ (line 6)
3010
+ * Random number state: Random State Initialization.
3011
+ (line 6)
3012
+ * Random state: Nomenclature and Types.
3013
+ (line 46)
3014
+ * Rational arithmetic: Efficiency. (line 113)
3015
+ * Rational arithmetic functions: Rational Arithmetic. (line 6)
3016
+ * Rational assignment functions: Initializing Rationals.
3017
+ (line 6)
3018
+ * Rational comparison functions: Comparing Rationals. (line 6)
3019
+ * Rational conversion functions: Rational Conversions.
3020
+ (line 6)
3021
+ * Rational initialization functions: Initializing Rationals.
3022
+ (line 6)
3023
+ * Rational input and output functions: I/O of Rationals. (line 6)
3024
+ * Rational internals: Rational Internals. (line 6)
3025
+ * Rational number: Nomenclature and Types.
3026
+ (line 16)
3027
+ * Rational number functions: Rational Number Functions.
3028
+ (line 6)
3029
+ * Rational numerator and denominator: Applying Integer Functions.
3030
+ (line 6)
3031
+ * Rational sign tests: Comparing Rationals. (line 27)
3032
+ * Raw output internals: Raw Output Internals.
3033
+ (line 6)
3034
+ * Reallocations: Efficiency. (line 30)
3035
+ * Reentrancy: Reentrancy. (line 6)
3036
+ * References: References. (line 6)
3037
+ * Remove factor functions: Number Theoretic Functions.
3038
+ (line 108)
3039
+ * Reporting bugs: Reporting Bugs. (line 6)
3040
+ * Root extraction algorithm: Nth Root Algorithm. (line 6)
3041
+ * Root extraction algorithms: Root Extraction Algorithms.
3042
+ (line 6)
3043
+ * Root extraction functions <1>: Float Arithmetic. (line 37)
3044
+ * Root extraction functions: Integer Roots. (line 6)
3045
+ * Root testing functions: Integer Roots. (line 28)
3046
+ * Rounding functions: Miscellaneous Float Functions.
3047
+ (line 9)
3048
+ * Sample programs: Demonstration Programs.
3049
+ (line 6)
3050
+ * Scan bit functions: Integer Logic and Bit Fiddling.
3051
+ (line 40)
3052
+ * scanf formatted input: Formatted Input. (line 6)
3053
+ * SCO: Known Build Problems.
3054
+ (line 38)
3055
+ * Seeding random numbers: Random State Seeding.
3056
+ (line 6)
3057
+ * Segmentation violation: Debugging. (line 7)
3058
+ * Sequent Symmetry: Known Build Problems.
3059
+ (line 68)
3060
+ * Services for Unix: Notes for Particular Systems.
3061
+ (line 65)
3062
+ * Shared library versioning: Notes for Package Builds.
3063
+ (line 9)
3064
+ * Sign tests <1>: Comparing Rationals. (line 27)
3065
+ * Sign tests <2>: Float Comparison. (line 35)
3066
+ * Sign tests: Integer Comparisons. (line 28)
3067
+ * Size in digits: Miscellaneous Integer Functions.
3068
+ (line 23)
3069
+ * Small operands: Efficiency. (line 7)
3070
+ * Solaris <1>: ABI and ISA. (line 208)
3071
+ * Solaris: Known Build Problems.
3072
+ (line 72)
3073
+ * Sparc: Notes for Particular Systems.
3074
+ (line 127)
3075
+ * Sparc V9: ABI and ISA. (line 208)
3076
+ * Special integer functions: Integer Special Functions.
3077
+ (line 6)
3078
+ * Square root algorithm: Square Root Algorithm.
3079
+ (line 6)
3080
+ * SSE2: Notes for Particular Systems.
3081
+ (line 156)
3082
+ * Stack backtrace: Debugging. (line 50)
3083
+ * Stack overflow <1>: Debugging. (line 7)
3084
+ * Stack overflow: Build Options. (line 274)
3085
+ * Static linking: Efficiency. (line 14)
3086
+ * stdarg.h: Headers and Libraries.
3087
+ (line 17)
3088
+ * stdio.h: Headers and Libraries.
3089
+ (line 11)
3090
+ * Stripped libraries: Known Build Problems.
3091
+ (line 28)
3092
+ * Sun: ABI and ISA. (line 208)
3093
+ * SunOS: Notes for Particular Systems.
3094
+ (line 144)
3095
+ * Systems: Notes for Particular Systems.
3096
+ (line 6)
3097
+ * Temporary memory: Build Options. (line 274)
3098
+ * Texinfo: Build Options. (line 339)
3099
+ * Text input/output: Efficiency. (line 153)
3100
+ * Thread safety: Reentrancy. (line 6)
3101
+ * Toom multiplication <1>: Higher degree Toom'n'half.
3102
+ (line 6)
3103
+ * Toom multiplication <2>: Other Multiplication.
3104
+ (line 6)
3105
+ * Toom multiplication <3>: Toom 4-Way Multiplication.
3106
+ (line 6)
3107
+ * Toom multiplication: Toom 3-Way Multiplication.
3108
+ (line 6)
3109
+ * Types: Nomenclature and Types.
3110
+ (line 6)
3111
+ * ui and si functions: Efficiency. (line 50)
3112
+ * Unbalanced multiplication: Unbalanced Multiplication.
3113
+ (line 6)
3114
+ * Upward compatibility: Compatibility with older versions.
3115
+ (line 6)
3116
+ * Useful macros and constants: Useful Macros and Constants.
3117
+ (line 6)
3118
+ * User-defined precision: Floating-point Functions.
3119
+ (line 6)
3120
+ * Valgrind: Debugging. (line 130)
3121
+ * Variable conventions: Variable Conventions.
3122
+ (line 6)
3123
+ * Version number: Useful Macros and Constants.
3124
+ (line 12)
3125
+ * Web page: Introduction to GMP. (line 33)
3126
+ * Windows: Notes for Particular Systems.
3127
+ (line 70)
3128
+ * x86: Notes for Particular Systems.
3129
+ (line 150)
3130
+ * x87: Notes for Particular Systems.
3131
+ (line 34)
3132
+ * XML: Build Options. (line 346)
3133
+
3134
+ 
3135
+ File: gmp.info, Node: Function Index, Prev: Concept Index, Up: Top
3136
+
3137
+ Function and Type Index
3138
+ ***********************
3139
+
3140
+ [index]
3141
+ * Menu:
3142
+
3143
+ * __GMP_CC: Useful Macros and Constants.
3144
+ (line 23)
3145
+ * __GMP_CFLAGS: Useful Macros and Constants.
3146
+ (line 24)
3147
+ * __GNU_MP_VERSION: Useful Macros and Constants.
3148
+ (line 10)
3149
+ * __GNU_MP_VERSION_MINOR: Useful Macros and Constants.
3150
+ (line 11)
3151
+ * __GNU_MP_VERSION_PATCHLEVEL: Useful Macros and Constants.
3152
+ (line 12)
3153
+ * _mpz_realloc: Integer Special Functions.
3154
+ (line 14)
3155
+ * abs <1>: C++ Interface Rationals.
3156
+ (line 49)
3157
+ * abs <2>: C++ Interface Floats.
3158
+ (line 83)
3159
+ * abs: C++ Interface Integers.
3160
+ (line 47)
3161
+ * ceil: C++ Interface Floats.
3162
+ (line 84)
3163
+ * cmp <1>: C++ Interface Floats.
3164
+ (line 86)
3165
+ * cmp <2>: C++ Interface Rationals.
3166
+ (line 51)
3167
+ * cmp <3>: C++ Interface Floats.
3168
+ (line 85)
3169
+ * cmp <4>: C++ Interface Rationals.
3170
+ (line 50)
3171
+ * cmp: C++ Interface Integers.
3172
+ (line 49)
3173
+ * floor: C++ Interface Floats.
3174
+ (line 93)
3175
+ * gmp_asprintf: Formatted Output Functions.
3176
+ (line 65)
3177
+ * gmp_errno: Random State Initialization.
3178
+ (line 55)
3179
+ * GMP_ERROR_INVALID_ARGUMENT: Random State Initialization.
3180
+ (line 55)
3181
+ * GMP_ERROR_UNSUPPORTED_ARGUMENT: Random State Initialization.
3182
+ (line 55)
3183
+ * gmp_fprintf: Formatted Output Functions.
3184
+ (line 29)
3185
+ * gmp_fscanf: Formatted Input Functions.
3186
+ (line 25)
3187
+ * GMP_LIMB_BITS: Low-level Functions. (line 694)
3188
+ * GMP_NAIL_BITS: Low-level Functions. (line 692)
3189
+ * GMP_NAIL_MASK: Low-level Functions. (line 702)
3190
+ * GMP_NUMB_BITS: Low-level Functions. (line 693)
3191
+ * GMP_NUMB_MASK: Low-level Functions. (line 703)
3192
+ * GMP_NUMB_MAX: Low-level Functions. (line 711)
3193
+ * gmp_obstack_printf: Formatted Output Functions.
3194
+ (line 79)
3195
+ * gmp_obstack_vprintf: Formatted Output Functions.
3196
+ (line 81)
3197
+ * gmp_printf: Formatted Output Functions.
3198
+ (line 24)
3199
+ * GMP_RAND_ALG_DEFAULT: Random State Initialization.
3200
+ (line 49)
3201
+ * GMP_RAND_ALG_LC: Random State Initialization.
3202
+ (line 49)
3203
+ * gmp_randclass: C++ Interface Random Numbers.
3204
+ (line 7)
3205
+ * gmp_randclass::get_f: C++ Interface Random Numbers.
3206
+ (line 45)
3207
+ * gmp_randclass::get_z_bits: C++ Interface Random Numbers.
3208
+ (line 38)
3209
+ * gmp_randclass::get_z_range: C++ Interface Random Numbers.
3210
+ (line 42)
3211
+ * gmp_randclass::gmp_randclass: C++ Interface Random Numbers.
3212
+ (line 27)
3213
+ * gmp_randclass::seed: C++ Interface Random Numbers.
3214
+ (line 33)
3215
+ * gmp_randclear: Random State Initialization.
3216
+ (line 62)
3217
+ * gmp_randinit: Random State Initialization.
3218
+ (line 47)
3219
+ * gmp_randinit_default: Random State Initialization.
3220
+ (line 7)
3221
+ * gmp_randinit_lc_2exp: Random State Initialization.
3222
+ (line 18)
3223
+ * gmp_randinit_lc_2exp_size: Random State Initialization.
3224
+ (line 32)
3225
+ * gmp_randinit_mt: Random State Initialization.
3226
+ (line 13)
3227
+ * gmp_randinit_set: Random State Initialization.
3228
+ (line 43)
3229
+ * gmp_randseed: Random State Seeding.
3230
+ (line 8)
3231
+ * gmp_randseed_ui: Random State Seeding.
3232
+ (line 10)
3233
+ * gmp_randstate_t: Nomenclature and Types.
3234
+ (line 46)
3235
+ * gmp_scanf: Formatted Input Functions.
3236
+ (line 21)
3237
+ * gmp_snprintf: Formatted Output Functions.
3238
+ (line 46)
3239
+ * gmp_sprintf: Formatted Output Functions.
3240
+ (line 34)
3241
+ * gmp_sscanf: Formatted Input Functions.
3242
+ (line 29)
3243
+ * gmp_urandomb_ui: Random State Miscellaneous.
3244
+ (line 8)
3245
+ * gmp_urandomm_ui: Random State Miscellaneous.
3246
+ (line 14)
3247
+ * gmp_vasprintf: Formatted Output Functions.
3248
+ (line 66)
3249
+ * gmp_version: Useful Macros and Constants.
3250
+ (line 18)
3251
+ * gmp_vfprintf: Formatted Output Functions.
3252
+ (line 30)
3253
+ * gmp_vfscanf: Formatted Input Functions.
3254
+ (line 26)
3255
+ * gmp_vprintf: Formatted Output Functions.
3256
+ (line 25)
3257
+ * gmp_vscanf: Formatted Input Functions.
3258
+ (line 22)
3259
+ * gmp_vsnprintf: Formatted Output Functions.
3260
+ (line 48)
3261
+ * gmp_vsprintf: Formatted Output Functions.
3262
+ (line 35)
3263
+ * gmp_vsscanf: Formatted Input Functions.
3264
+ (line 31)
3265
+ * hypot: C++ Interface Floats.
3266
+ (line 94)
3267
+ * mp_bitcnt_t: Nomenclature and Types.
3268
+ (line 42)
3269
+ * mp_bits_per_limb: Useful Macros and Constants.
3270
+ (line 7)
3271
+ * mp_exp_t: Nomenclature and Types.
3272
+ (line 27)
3273
+ * mp_get_memory_functions: Custom Allocation. (line 90)
3274
+ * mp_limb_t: Nomenclature and Types.
3275
+ (line 31)
3276
+ * mp_set_memory_functions: Custom Allocation. (line 18)
3277
+ * mp_size_t: Nomenclature and Types.
3278
+ (line 37)
3279
+ * mpf_abs: Float Arithmetic. (line 47)
3280
+ * mpf_add: Float Arithmetic. (line 7)
3281
+ * mpf_add_ui: Float Arithmetic. (line 9)
3282
+ * mpf_ceil: Miscellaneous Float Functions.
3283
+ (line 7)
3284
+ * mpf_class: C++ Interface General.
3285
+ (line 20)
3286
+ * mpf_class::fits_sint_p: C++ Interface Floats.
3287
+ (line 87)
3288
+ * mpf_class::fits_slong_p: C++ Interface Floats.
3289
+ (line 88)
3290
+ * mpf_class::fits_sshort_p: C++ Interface Floats.
3291
+ (line 89)
3292
+ * mpf_class::fits_uint_p: C++ Interface Floats.
3293
+ (line 90)
3294
+ * mpf_class::fits_ulong_p: C++ Interface Floats.
3295
+ (line 91)
3296
+ * mpf_class::fits_ushort_p: C++ Interface Floats.
3297
+ (line 92)
3298
+ * mpf_class::get_d: C++ Interface Floats.
3299
+ (line 95)
3300
+ * mpf_class::get_mpf_t: C++ Interface General.
3301
+ (line 66)
3302
+ * mpf_class::get_prec: C++ Interface Floats.
3303
+ (line 115)
3304
+ * mpf_class::get_si: C++ Interface Floats.
3305
+ (line 96)
3306
+ * mpf_class::get_str: C++ Interface Floats.
3307
+ (line 98)
3308
+ * mpf_class::get_ui: C++ Interface Floats.
3309
+ (line 99)
3310
+ * mpf_class::mpf_class: C++ Interface Floats.
3311
+ (line 12)
3312
+ * mpf_class::operator=: C++ Interface Floats.
3313
+ (line 60)
3314
+ * mpf_class::set_prec: C++ Interface Floats.
3315
+ (line 116)
3316
+ * mpf_class::set_prec_raw: C++ Interface Floats.
3317
+ (line 117)
3318
+ * mpf_class::set_str: C++ Interface Floats.
3319
+ (line 100)
3320
+ * mpf_class::swap: C++ Interface Floats.
3321
+ (line 104)
3322
+ * mpf_clear: Initializing Floats. (line 37)
3323
+ * mpf_clears: Initializing Floats. (line 41)
3324
+ * mpf_cmp: Float Comparison. (line 7)
3325
+ * mpf_cmp_d: Float Comparison. (line 8)
3326
+ * mpf_cmp_si: Float Comparison. (line 10)
3327
+ * mpf_cmp_ui: Float Comparison. (line 9)
3328
+ * mpf_div: Float Arithmetic. (line 29)
3329
+ * mpf_div_2exp: Float Arithmetic. (line 55)
3330
+ * mpf_div_ui: Float Arithmetic. (line 33)
3331
+ * mpf_eq: Float Comparison. (line 18)
3332
+ * mpf_fits_sint_p: Miscellaneous Float Functions.
3333
+ (line 20)
3334
+ * mpf_fits_slong_p: Miscellaneous Float Functions.
3335
+ (line 18)
3336
+ * mpf_fits_sshort_p: Miscellaneous Float Functions.
3337
+ (line 22)
3338
+ * mpf_fits_uint_p: Miscellaneous Float Functions.
3339
+ (line 19)
3340
+ * mpf_fits_ulong_p: Miscellaneous Float Functions.
3341
+ (line 17)
3342
+ * mpf_fits_ushort_p: Miscellaneous Float Functions.
3343
+ (line 21)
3344
+ * mpf_floor: Miscellaneous Float Functions.
3345
+ (line 8)
3346
+ * mpf_get_d: Converting Floats. (line 7)
3347
+ * mpf_get_d_2exp: Converting Floats. (line 17)
3348
+ * mpf_get_default_prec: Initializing Floats. (line 12)
3349
+ * mpf_get_prec: Initializing Floats. (line 62)
3350
+ * mpf_get_si: Converting Floats. (line 28)
3351
+ * mpf_get_str: Converting Floats. (line 38)
3352
+ * mpf_get_ui: Converting Floats. (line 29)
3353
+ * mpf_init: Initializing Floats. (line 19)
3354
+ * mpf_init2: Initializing Floats. (line 26)
3355
+ * mpf_init_set: Simultaneous Float Init & Assign.
3356
+ (line 16)
3357
+ * mpf_init_set_d: Simultaneous Float Init & Assign.
3358
+ (line 19)
3359
+ * mpf_init_set_si: Simultaneous Float Init & Assign.
3360
+ (line 18)
3361
+ * mpf_init_set_str: Simultaneous Float Init & Assign.
3362
+ (line 26)
3363
+ * mpf_init_set_ui: Simultaneous Float Init & Assign.
3364
+ (line 17)
3365
+ * mpf_inits: Initializing Floats. (line 31)
3366
+ * mpf_inp_str: I/O of Floats. (line 39)
3367
+ * mpf_integer_p: Miscellaneous Float Functions.
3368
+ (line 14)
3369
+ * mpf_mul: Float Arithmetic. (line 19)
3370
+ * mpf_mul_2exp: Float Arithmetic. (line 51)
3371
+ * mpf_mul_ui: Float Arithmetic. (line 21)
3372
+ * mpf_neg: Float Arithmetic. (line 44)
3373
+ * mpf_out_str: I/O of Floats. (line 19)
3374
+ * mpf_pow_ui: Float Arithmetic. (line 41)
3375
+ * mpf_random2: Miscellaneous Float Functions.
3376
+ (line 37)
3377
+ * mpf_reldiff: Float Comparison. (line 31)
3378
+ * mpf_set: Assigning Floats. (line 10)
3379
+ * mpf_set_d: Assigning Floats. (line 13)
3380
+ * mpf_set_default_prec: Initializing Floats. (line 7)
3381
+ * mpf_set_prec: Initializing Floats. (line 65)
3382
+ * mpf_set_prec_raw: Initializing Floats. (line 72)
3383
+ * mpf_set_q: Assigning Floats. (line 15)
3384
+ * mpf_set_si: Assigning Floats. (line 12)
3385
+ * mpf_set_str: Assigning Floats. (line 18)
3386
+ * mpf_set_ui: Assigning Floats. (line 11)
3387
+ * mpf_set_z: Assigning Floats. (line 14)
3388
+ * mpf_sgn: Float Comparison. (line 35)
3389
+ * mpf_sqrt: Float Arithmetic. (line 36)
3390
+ * mpf_sqrt_ui: Float Arithmetic. (line 37)
3391
+ * mpf_sub: Float Arithmetic. (line 12)
3392
+ * mpf_sub_ui: Float Arithmetic. (line 16)
3393
+ * mpf_swap: Assigning Floats. (line 52)
3394
+ * mpf_t: Nomenclature and Types.
3395
+ (line 21)
3396
+ * mpf_trunc: Miscellaneous Float Functions.
3397
+ (line 9)
3398
+ * mpf_ui_div: Float Arithmetic. (line 31)
3399
+ * mpf_ui_sub: Float Arithmetic. (line 14)
3400
+ * mpf_urandomb: Miscellaneous Float Functions.
3401
+ (line 27)
3402
+ * mpn_add: Low-level Functions. (line 69)
3403
+ * mpn_add_1: Low-level Functions. (line 64)
3404
+ * mpn_add_n: Low-level Functions. (line 54)
3405
+ * mpn_addmul_1: Low-level Functions. (line 150)
3406
+ * mpn_and_n: Low-level Functions. (line 437)
3407
+ * mpn_andn_n: Low-level Functions. (line 452)
3408
+ * mpn_cmp: Low-level Functions. (line 286)
3409
+ * mpn_cnd_add_n: Low-level Functions. (line 530)
3410
+ * mpn_cnd_sub_n: Low-level Functions. (line 532)
3411
+ * mpn_com: Low-level Functions. (line 477)
3412
+ * mpn_copyd: Low-level Functions. (line 486)
3413
+ * mpn_copyi: Low-level Functions. (line 482)
3414
+ * mpn_divexact_by3: Low-level Functions. (line 231)
3415
+ * mpn_divexact_by3c: Low-level Functions. (line 233)
3416
+ * mpn_divmod: Low-level Functions. (line 226)
3417
+ * mpn_divmod_1: Low-level Functions. (line 210)
3418
+ * mpn_divrem: Low-level Functions. (line 184)
3419
+ * mpn_divrem_1: Low-level Functions. (line 208)
3420
+ * mpn_gcd: Low-level Functions. (line 291)
3421
+ * mpn_gcd_1: Low-level Functions. (line 301)
3422
+ * mpn_gcdext: Low-level Functions. (line 307)
3423
+ * mpn_get_str: Low-level Functions. (line 361)
3424
+ * mpn_hamdist: Low-level Functions. (line 426)
3425
+ * mpn_ior_n: Low-level Functions. (line 442)
3426
+ * mpn_iorn_n: Low-level Functions. (line 457)
3427
+ * mpn_lshift: Low-level Functions. (line 262)
3428
+ * mpn_mod_1: Low-level Functions. (line 257)
3429
+ * mpn_mul: Low-level Functions. (line 116)
3430
+ * mpn_mul_1: Low-level Functions. (line 135)
3431
+ * mpn_mul_n: Low-level Functions. (line 105)
3432
+ * mpn_nand_n: Low-level Functions. (line 462)
3433
+ * mpn_neg: Low-level Functions. (line 98)
3434
+ * mpn_nior_n: Low-level Functions. (line 467)
3435
+ * mpn_perfect_square_p: Low-level Functions. (line 432)
3436
+ * mpn_popcount: Low-level Functions. (line 422)
3437
+ * mpn_random: Low-level Functions. (line 411)
3438
+ * mpn_random2: Low-level Functions. (line 412)
3439
+ * mpn_rshift: Low-level Functions. (line 274)
3440
+ * mpn_scan0: Low-level Functions. (line 396)
3441
+ * mpn_scan1: Low-level Functions. (line 404)
3442
+ * mpn_sec_add_1: Low-level Functions. (line 543)
3443
+ * mpn_sec_div_qr: Low-level Functions. (line 613)
3444
+ * mpn_sec_div_qr_itch: Low-level Functions. (line 614)
3445
+ * mpn_sec_div_r: Low-level Functions. (line 630)
3446
+ * mpn_sec_div_r_itch: Low-level Functions. (line 631)
3447
+ * mpn_sec_invert: Low-level Functions. (line 645)
3448
+ * mpn_sec_invert_itch: Low-level Functions. (line 646)
3449
+ * mpn_sec_mul: Low-level Functions. (line 558)
3450
+ * mpn_sec_mul_itch: Low-level Functions. (line 559)
3451
+ * mpn_sec_powm: Low-level Functions. (line 588)
3452
+ * mpn_sec_powm_itch: Low-level Functions. (line 590)
3453
+ * mpn_sec_sqr: Low-level Functions. (line 573)
3454
+ * mpn_sec_sqr_itch: Low-level Functions. (line 574)
3455
+ * mpn_sec_sub_1: Low-level Functions. (line 545)
3456
+ * mpn_sec_tabselect: Low-level Functions. (line 604)
3457
+ * mpn_set_str: Low-level Functions. (line 376)
3458
+ * mpn_sizeinbase: Low-level Functions. (line 354)
3459
+ * mpn_sqr: Low-level Functions. (line 127)
3460
+ * mpn_sqrtrem: Low-level Functions. (line 336)
3461
+ * mpn_sub: Low-level Functions. (line 90)
3462
+ * mpn_sub_1: Low-level Functions. (line 85)
3463
+ * mpn_sub_n: Low-level Functions. (line 76)
3464
+ * mpn_submul_1: Low-level Functions. (line 161)
3465
+ * mpn_tdiv_qr: Low-level Functions. (line 173)
3466
+ * mpn_xnor_n: Low-level Functions. (line 472)
3467
+ * mpn_xor_n: Low-level Functions. (line 447)
3468
+ * mpn_zero: Low-level Functions. (line 489)
3469
+ * mpq_abs: Rational Arithmetic. (line 34)
3470
+ * mpq_add: Rational Arithmetic. (line 8)
3471
+ * mpq_canonicalize: Rational Number Functions.
3472
+ (line 22)
3473
+ * mpq_class: C++ Interface General.
3474
+ (line 19)
3475
+ * mpq_class::canonicalize: C++ Interface Rationals.
3476
+ (line 43)
3477
+ * mpq_class::get_d: C++ Interface Rationals.
3478
+ (line 52)
3479
+ * mpq_class::get_den: C++ Interface Rationals.
3480
+ (line 66)
3481
+ * mpq_class::get_den_mpz_t: C++ Interface Rationals.
3482
+ (line 76)
3483
+ * mpq_class::get_mpq_t: C++ Interface General.
3484
+ (line 65)
3485
+ * mpq_class::get_num: C++ Interface Rationals.
3486
+ (line 65)
3487
+ * mpq_class::get_num_mpz_t: C++ Interface Rationals.
3488
+ (line 75)
3489
+ * mpq_class::get_str: C++ Interface Rationals.
3490
+ (line 53)
3491
+ * mpq_class::mpq_class: C++ Interface Rationals.
3492
+ (line 12)
3493
+ * mpq_class::set_str: C++ Interface Rationals.
3494
+ (line 55)
3495
+ * mpq_class::swap: C++ Interface Rationals.
3496
+ (line 57)
3497
+ * mpq_clear: Initializing Rationals.
3498
+ (line 16)
3499
+ * mpq_clears: Initializing Rationals.
3500
+ (line 20)
3501
+ * mpq_cmp: Comparing Rationals. (line 7)
3502
+ * mpq_cmp_si: Comparing Rationals. (line 17)
3503
+ * mpq_cmp_ui: Comparing Rationals. (line 15)
3504
+ * mpq_denref: Applying Integer Functions.
3505
+ (line 18)
3506
+ * mpq_div: Rational Arithmetic. (line 24)
3507
+ * mpq_div_2exp: Rational Arithmetic. (line 28)
3508
+ * mpq_equal: Comparing Rationals. (line 33)
3509
+ * mpq_get_d: Rational Conversions.
3510
+ (line 7)
3511
+ * mpq_get_den: Applying Integer Functions.
3512
+ (line 24)
3513
+ * mpq_get_num: Applying Integer Functions.
3514
+ (line 23)
3515
+ * mpq_get_str: Rational Conversions.
3516
+ (line 22)
3517
+ * mpq_init: Initializing Rationals.
3518
+ (line 7)
3519
+ * mpq_inits: Initializing Rationals.
3520
+ (line 12)
3521
+ * mpq_inp_str: I/O of Rationals. (line 27)
3522
+ * mpq_inv: Rational Arithmetic. (line 37)
3523
+ * mpq_mul: Rational Arithmetic. (line 16)
3524
+ * mpq_mul_2exp: Rational Arithmetic. (line 20)
3525
+ * mpq_neg: Rational Arithmetic. (line 31)
3526
+ * mpq_numref: Applying Integer Functions.
3527
+ (line 17)
3528
+ * mpq_out_str: I/O of Rationals. (line 19)
3529
+ * mpq_set: Initializing Rationals.
3530
+ (line 24)
3531
+ * mpq_set_d: Rational Conversions.
3532
+ (line 17)
3533
+ * mpq_set_den: Applying Integer Functions.
3534
+ (line 26)
3535
+ * mpq_set_f: Rational Conversions.
3536
+ (line 18)
3537
+ * mpq_set_num: Applying Integer Functions.
3538
+ (line 25)
3539
+ * mpq_set_si: Initializing Rationals.
3540
+ (line 31)
3541
+ * mpq_set_str: Initializing Rationals.
3542
+ (line 36)
3543
+ * mpq_set_ui: Initializing Rationals.
3544
+ (line 29)
3545
+ * mpq_set_z: Initializing Rationals.
3546
+ (line 25)
3547
+ * mpq_sgn: Comparing Rationals. (line 27)
3548
+ * mpq_sub: Rational Arithmetic. (line 12)
3549
+ * mpq_swap: Initializing Rationals.
3550
+ (line 56)
3551
+ * mpq_t: Nomenclature and Types.
3552
+ (line 16)
3553
+ * mpz_2fac_ui: Number Theoretic Functions.
3554
+ (line 114)
3555
+ * mpz_abs: Integer Arithmetic. (line 45)
3556
+ * mpz_add: Integer Arithmetic. (line 7)
3557
+ * mpz_add_ui: Integer Arithmetic. (line 9)
3558
+ * mpz_addmul: Integer Arithmetic. (line 26)
3559
+ * mpz_addmul_ui: Integer Arithmetic. (line 28)
3560
+ * mpz_and: Integer Logic and Bit Fiddling.
3561
+ (line 11)
3562
+ * mpz_array_init: Integer Special Functions.
3563
+ (line 11)
3564
+ * mpz_bin_ui: Number Theoretic Functions.
3565
+ (line 126)
3566
+ * mpz_bin_uiui: Number Theoretic Functions.
3567
+ (line 128)
3568
+ * mpz_cdiv_q: Integer Division. (line 13)
3569
+ * mpz_cdiv_q_2exp: Integer Division. (line 26)
3570
+ * mpz_cdiv_q_ui: Integer Division. (line 18)
3571
+ * mpz_cdiv_qr: Integer Division. (line 16)
3572
+ * mpz_cdiv_qr_ui: Integer Division. (line 22)
3573
+ * mpz_cdiv_r: Integer Division. (line 14)
3574
+ * mpz_cdiv_r_2exp: Integer Division. (line 28)
3575
+ * mpz_cdiv_r_ui: Integer Division. (line 20)
3576
+ * mpz_cdiv_ui: Integer Division. (line 24)
3577
+ * mpz_class: C++ Interface General.
3578
+ (line 18)
3579
+ * mpz_class::fits_sint_p: C++ Interface Integers.
3580
+ (line 50)
3581
+ * mpz_class::fits_slong_p: C++ Interface Integers.
3582
+ (line 51)
3583
+ * mpz_class::fits_sshort_p: C++ Interface Integers.
3584
+ (line 52)
3585
+ * mpz_class::fits_uint_p: C++ Interface Integers.
3586
+ (line 53)
3587
+ * mpz_class::fits_ulong_p: C++ Interface Integers.
3588
+ (line 54)
3589
+ * mpz_class::fits_ushort_p: C++ Interface Integers.
3590
+ (line 55)
3591
+ * mpz_class::get_d: C++ Interface Integers.
3592
+ (line 56)
3593
+ * mpz_class::get_mpz_t: C++ Interface General.
3594
+ (line 64)
3595
+ * mpz_class::get_si: C++ Interface Integers.
3596
+ (line 57)
3597
+ * mpz_class::get_str: C++ Interface Integers.
3598
+ (line 58)
3599
+ * mpz_class::get_ui: C++ Interface Integers.
3600
+ (line 59)
3601
+ * mpz_class::mpz_class: C++ Interface Integers.
3602
+ (line 21)
3603
+ * mpz_class::set_str: C++ Interface Integers.
3604
+ (line 60)
3605
+ * mpz_class::swap: C++ Interface Integers.
3606
+ (line 64)
3607
+ * mpz_clear: Initializing Integers.
3608
+ (line 49)
3609
+ * mpz_clears: Initializing Integers.
3610
+ (line 53)
3611
+ * mpz_clrbit: Integer Logic and Bit Fiddling.
3612
+ (line 56)
3613
+ * mpz_cmp: Integer Comparisons. (line 7)
3614
+ * mpz_cmp_d: Integer Comparisons. (line 8)
3615
+ * mpz_cmp_si: Integer Comparisons. (line 9)
3616
+ * mpz_cmp_ui: Integer Comparisons. (line 10)
3617
+ * mpz_cmpabs: Integer Comparisons. (line 18)
3618
+ * mpz_cmpabs_d: Integer Comparisons. (line 19)
3619
+ * mpz_cmpabs_ui: Integer Comparisons. (line 20)
3620
+ * mpz_com: Integer Logic and Bit Fiddling.
3621
+ (line 20)
3622
+ * mpz_combit: Integer Logic and Bit Fiddling.
3623
+ (line 59)
3624
+ * mpz_congruent_2exp_p: Integer Division. (line 137)
3625
+ * mpz_congruent_p: Integer Division. (line 133)
3626
+ * mpz_congruent_ui_p: Integer Division. (line 135)
3627
+ * mpz_divexact: Integer Division. (line 110)
3628
+ * mpz_divexact_ui: Integer Division. (line 112)
3629
+ * mpz_divisible_2exp_p: Integer Division. (line 123)
3630
+ * mpz_divisible_p: Integer Division. (line 120)
3631
+ * mpz_divisible_ui_p: Integer Division. (line 122)
3632
+ * mpz_even_p: Miscellaneous Integer Functions.
3633
+ (line 18)
3634
+ * mpz_export: Integer Import and Export.
3635
+ (line 45)
3636
+ * mpz_fac_ui: Number Theoretic Functions.
3637
+ (line 113)
3638
+ * mpz_fdiv_q: Integer Division. (line 30)
3639
+ * mpz_fdiv_q_2exp: Integer Division. (line 43)
3640
+ * mpz_fdiv_q_ui: Integer Division. (line 35)
3641
+ * mpz_fdiv_qr: Integer Division. (line 33)
3642
+ * mpz_fdiv_qr_ui: Integer Division. (line 39)
3643
+ * mpz_fdiv_r: Integer Division. (line 31)
3644
+ * mpz_fdiv_r_2exp: Integer Division. (line 45)
3645
+ * mpz_fdiv_r_ui: Integer Division. (line 37)
3646
+ * mpz_fdiv_ui: Integer Division. (line 41)
3647
+ * mpz_fib2_ui: Number Theoretic Functions.
3648
+ (line 136)
3649
+ * mpz_fib_ui: Number Theoretic Functions.
3650
+ (line 134)
3651
+ * mpz_fits_sint_p: Miscellaneous Integer Functions.
3652
+ (line 10)
3653
+ * mpz_fits_slong_p: Miscellaneous Integer Functions.
3654
+ (line 8)
3655
+ * mpz_fits_sshort_p: Miscellaneous Integer Functions.
3656
+ (line 12)
3657
+ * mpz_fits_uint_p: Miscellaneous Integer Functions.
3658
+ (line 9)
3659
+ * mpz_fits_ulong_p: Miscellaneous Integer Functions.
3660
+ (line 7)
3661
+ * mpz_fits_ushort_p: Miscellaneous Integer Functions.
3662
+ (line 11)
3663
+ * mpz_gcd: Number Theoretic Functions.
3664
+ (line 32)
3665
+ * mpz_gcd_ui: Number Theoretic Functions.
3666
+ (line 39)
3667
+ * mpz_gcdext: Number Theoretic Functions.
3668
+ (line 49)
3669
+ * mpz_get_d: Converting Integers. (line 27)
3670
+ * mpz_get_d_2exp: Converting Integers. (line 36)
3671
+ * mpz_get_si: Converting Integers. (line 18)
3672
+ * mpz_get_str: Converting Integers. (line 47)
3673
+ * mpz_get_ui: Converting Integers. (line 11)
3674
+ * mpz_getlimbn: Integer Special Functions.
3675
+ (line 23)
3676
+ * mpz_hamdist: Integer Logic and Bit Fiddling.
3677
+ (line 29)
3678
+ * mpz_import: Integer Import and Export.
3679
+ (line 11)
3680
+ * mpz_init: Initializing Integers.
3681
+ (line 26)
3682
+ * mpz_init2: Initializing Integers.
3683
+ (line 33)
3684
+ * mpz_init_set: Simultaneous Integer Init & Assign.
3685
+ (line 27)
3686
+ * mpz_init_set_d: Simultaneous Integer Init & Assign.
3687
+ (line 30)
3688
+ * mpz_init_set_si: Simultaneous Integer Init & Assign.
3689
+ (line 29)
3690
+ * mpz_init_set_str: Simultaneous Integer Init & Assign.
3691
+ (line 35)
3692
+ * mpz_init_set_ui: Simultaneous Integer Init & Assign.
3693
+ (line 28)
3694
+ * mpz_inits: Initializing Integers.
3695
+ (line 29)
3696
+ * mpz_inp_raw: I/O of Integers. (line 62)
3697
+ * mpz_inp_str: I/O of Integers. (line 31)
3698
+ * mpz_invert: Number Theoretic Functions.
3699
+ (line 76)
3700
+ * mpz_ior: Integer Logic and Bit Fiddling.
3701
+ (line 14)
3702
+ * mpz_jacobi: Number Theoretic Functions.
3703
+ (line 83)
3704
+ * mpz_kronecker: Number Theoretic Functions.
3705
+ (line 91)
3706
+ * mpz_kronecker_si: Number Theoretic Functions.
3707
+ (line 92)
3708
+ * mpz_kronecker_ui: Number Theoretic Functions.
3709
+ (line 93)
3710
+ * mpz_lcm: Number Theoretic Functions.
3711
+ (line 68)
3712
+ * mpz_lcm_ui: Number Theoretic Functions.
3713
+ (line 70)
3714
+ * mpz_legendre: Number Theoretic Functions.
3715
+ (line 86)
3716
+ * mpz_limbs_finish: Integer Special Functions.
3717
+ (line 48)
3718
+ * mpz_limbs_modify: Integer Special Functions.
3719
+ (line 41)
3720
+ * mpz_limbs_read: Integer Special Functions.
3721
+ (line 35)
3722
+ * mpz_limbs_write: Integer Special Functions.
3723
+ (line 40)
3724
+ * mpz_lucnum2_ui: Number Theoretic Functions.
3725
+ (line 147)
3726
+ * mpz_lucnum_ui: Number Theoretic Functions.
3727
+ (line 145)
3728
+ * mpz_mfac_uiui: Number Theoretic Functions.
3729
+ (line 116)
3730
+ * mpz_mod: Integer Division. (line 100)
3731
+ * mpz_mod_ui: Integer Division. (line 102)
3732
+ * mpz_mul: Integer Arithmetic. (line 19)
3733
+ * mpz_mul_2exp: Integer Arithmetic. (line 38)
3734
+ * mpz_mul_si: Integer Arithmetic. (line 20)
3735
+ * mpz_mul_ui: Integer Arithmetic. (line 22)
3736
+ * mpz_neg: Integer Arithmetic. (line 42)
3737
+ * mpz_nextprime: Number Theoretic Functions.
3738
+ (line 25)
3739
+ * mpz_odd_p: Miscellaneous Integer Functions.
3740
+ (line 17)
3741
+ * mpz_out_raw: I/O of Integers. (line 46)
3742
+ * mpz_out_str: I/O of Integers. (line 19)
3743
+ * mpz_perfect_power_p: Integer Roots. (line 28)
3744
+ * mpz_perfect_square_p: Integer Roots. (line 37)
3745
+ * mpz_popcount: Integer Logic and Bit Fiddling.
3746
+ (line 23)
3747
+ * mpz_pow_ui: Integer Exponentiation.
3748
+ (line 31)
3749
+ * mpz_powm: Integer Exponentiation.
3750
+ (line 8)
3751
+ * mpz_powm_sec: Integer Exponentiation.
3752
+ (line 18)
3753
+ * mpz_powm_ui: Integer Exponentiation.
3754
+ (line 10)
3755
+ * mpz_primorial_ui: Number Theoretic Functions.
3756
+ (line 121)
3757
+ * mpz_probab_prime_p: Number Theoretic Functions.
3758
+ (line 7)
3759
+ * mpz_random: Integer Random Numbers.
3760
+ (line 42)
3761
+ * mpz_random2: Integer Random Numbers.
3762
+ (line 51)
3763
+ * mpz_realloc2: Initializing Integers.
3764
+ (line 57)
3765
+ * mpz_remove: Number Theoretic Functions.
3766
+ (line 108)
3767
+ * mpz_roinit_n: Integer Special Functions.
3768
+ (line 69)
3769
+ * MPZ_ROINIT_N: Integer Special Functions.
3770
+ (line 84)
3771
+ * mpz_root: Integer Roots. (line 8)
3772
+ * mpz_rootrem: Integer Roots. (line 14)
3773
+ * mpz_rrandomb: Integer Random Numbers.
3774
+ (line 31)
3775
+ * mpz_scan0: Integer Logic and Bit Fiddling.
3776
+ (line 38)
3777
+ * mpz_scan1: Integer Logic and Bit Fiddling.
3778
+ (line 40)
3779
+ * mpz_set: Assigning Integers. (line 10)
3780
+ * mpz_set_d: Assigning Integers. (line 13)
3781
+ * mpz_set_f: Assigning Integers. (line 15)
3782
+ * mpz_set_q: Assigning Integers. (line 14)
3783
+ * mpz_set_si: Assigning Integers. (line 12)
3784
+ * mpz_set_str: Assigning Integers. (line 21)
3785
+ * mpz_set_ui: Assigning Integers. (line 11)
3786
+ * mpz_setbit: Integer Logic and Bit Fiddling.
3787
+ (line 53)
3788
+ * mpz_sgn: Integer Comparisons. (line 28)
3789
+ * mpz_si_kronecker: Number Theoretic Functions.
3790
+ (line 94)
3791
+ * mpz_size: Integer Special Functions.
3792
+ (line 31)
3793
+ * mpz_sizeinbase: Miscellaneous Integer Functions.
3794
+ (line 23)
3795
+ * mpz_sqrt: Integer Roots. (line 18)
3796
+ * mpz_sqrtrem: Integer Roots. (line 21)
3797
+ * mpz_sub: Integer Arithmetic. (line 12)
3798
+ * mpz_sub_ui: Integer Arithmetic. (line 14)
3799
+ * mpz_submul: Integer Arithmetic. (line 32)
3800
+ * mpz_submul_ui: Integer Arithmetic. (line 34)
3801
+ * mpz_swap: Assigning Integers. (line 37)
3802
+ * mpz_t: Nomenclature and Types.
3803
+ (line 6)
3804
+ * mpz_tdiv_q: Integer Division. (line 47)
3805
+ * mpz_tdiv_q_2exp: Integer Division. (line 60)
3806
+ * mpz_tdiv_q_ui: Integer Division. (line 52)
3807
+ * mpz_tdiv_qr: Integer Division. (line 50)
3808
+ * mpz_tdiv_qr_ui: Integer Division. (line 56)
3809
+ * mpz_tdiv_r: Integer Division. (line 48)
3810
+ * mpz_tdiv_r_2exp: Integer Division. (line 62)
3811
+ * mpz_tdiv_r_ui: Integer Division. (line 54)
3812
+ * mpz_tdiv_ui: Integer Division. (line 58)
3813
+ * mpz_tstbit: Integer Logic and Bit Fiddling.
3814
+ (line 62)
3815
+ * mpz_ui_kronecker: Number Theoretic Functions.
3816
+ (line 95)
3817
+ * mpz_ui_pow_ui: Integer Exponentiation.
3818
+ (line 33)
3819
+ * mpz_ui_sub: Integer Arithmetic. (line 16)
3820
+ * mpz_urandomb: Integer Random Numbers.
3821
+ (line 14)
3822
+ * mpz_urandomm: Integer Random Numbers.
3823
+ (line 23)
3824
+ * mpz_xor: Integer Logic and Bit Fiddling.
3825
+ (line 17)
3826
+ * operator"" <1>: C++ Interface Floats.
3827
+ (line 56)
3828
+ * operator"" <2>: C++ Interface Integers.
3829
+ (line 30)
3830
+ * operator"": C++ Interface Rationals.
3831
+ (line 38)
3832
+ * operator%: C++ Interface Integers.
3833
+ (line 35)
3834
+ * operator/: C++ Interface Integers.
3835
+ (line 34)
3836
+ * operator<<: C++ Formatted Output.
3837
+ (line 20)
3838
+ * operator>> <1>: C++ Formatted Input. (line 14)
3839
+ * operator>>: C++ Interface Rationals.
3840
+ (line 85)
3841
+ * sgn <1>: C++ Interface Floats.
3842
+ (line 102)
3843
+ * sgn <2>: C++ Interface Integers.
3844
+ (line 62)
3845
+ * sgn: C++ Interface Rationals.
3846
+ (line 56)
3847
+ * sqrt <1>: C++ Interface Integers.
3848
+ (line 63)
3849
+ * sqrt: C++ Interface Floats.
3850
+ (line 103)
3851
+ * swap <1>: C++ Interface Floats.
3852
+ (line 105)
3853
+ * swap <2>: C++ Interface Integers.
3854
+ (line 65)
3855
+ * swap: C++ Interface Rationals.
3856
+ (line 58)
3857
+ * trunc: C++ Interface Floats.
3858
+ (line 106)
3859
+
3860
+
3861
+
3862
+ 
3863
+ Local Variables:
3864
+ coding: iso-8859-1
3865
+ End: