platform.go 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. package brotli
  2. /* Copyright 2013 Google Inc. All Rights Reserved.
  3. Distributed under MIT license.
  4. See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
  5. */
  6. func brotli_min_double(a float64, b float64) float64 {
  7. if a < b {
  8. return a
  9. } else {
  10. return b
  11. }
  12. }
  13. func brotli_max_double(a float64, b float64) float64 {
  14. if a > b {
  15. return a
  16. } else {
  17. return b
  18. }
  19. }
  20. func brotli_min_float(a float32, b float32) float32 {
  21. if a < b {
  22. return a
  23. } else {
  24. return b
  25. }
  26. }
  27. func brotli_max_float(a float32, b float32) float32 {
  28. if a > b {
  29. return a
  30. } else {
  31. return b
  32. }
  33. }
  34. func brotli_min_int(a int, b int) int {
  35. if a < b {
  36. return a
  37. } else {
  38. return b
  39. }
  40. }
  41. func brotli_max_int(a int, b int) int {
  42. if a > b {
  43. return a
  44. } else {
  45. return b
  46. }
  47. }
  48. func brotli_min_size_t(a uint, b uint) uint {
  49. if a < b {
  50. return a
  51. } else {
  52. return b
  53. }
  54. }
  55. func brotli_max_size_t(a uint, b uint) uint {
  56. if a > b {
  57. return a
  58. } else {
  59. return b
  60. }
  61. }
  62. func brotli_min_uint32_t(a uint32, b uint32) uint32 {
  63. if a < b {
  64. return a
  65. } else {
  66. return b
  67. }
  68. }
  69. func brotli_max_uint32_t(a uint32, b uint32) uint32 {
  70. if a > b {
  71. return a
  72. } else {
  73. return b
  74. }
  75. }
  76. func brotli_min_uint8_t(a byte, b byte) byte {
  77. if a < b {
  78. return a
  79. } else {
  80. return b
  81. }
  82. }
  83. func brotli_max_uint8_t(a byte, b byte) byte {
  84. if a > b {
  85. return a
  86. } else {
  87. return b
  88. }
  89. }