()
| 843 | vGEX["prototype"]["sqrTo"] = BFts; |
| 844 | |
| 845 | function CvWK() { |
| 846 | if (this["t"] < 1) |
| 847 | return 0; |
| 848 | var e = this[0]; |
| 849 | if ((e & 1) == 0) |
| 850 | return 0; |
| 851 | var t = e & 3; |
| 852 | t = t * (2 - (e & 15) * t) & 15; |
| 853 | t = t * (2 - (e & 255) * t) & 255; |
| 854 | t = t * (2 - ((e & 65535) * t & 65535)) & 65535; |
| 855 | t = t * (2 - e * t % this["DV"]) % this["DV"]; |
| 856 | return t > 0 ? this["DV"] - t : -t; |
| 857 | } |
| 858 | |
| 859 | function DbNy(e) { |
| 860 | this["m"] = e; |
nothing calls this directly
no outgoing calls
no test coverage detected