Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ctEq (0.03 sec)

  1. src/crypto/internal/bigmod/nat.go

    const yes = choice(1)
    const no = choice(0)
    
    // ctMask is all 1s if on is yes, and all 0s otherwise.
    func ctMask(on choice) uint { return -uint(on) }
    
    // ctEq returns 1 if x == y, and 0 otherwise. The execution time of this
    // function does not depend on its inputs.
    func ctEq(x, y uint) choice {
    	// If x != y, then either x - y or y - x will generate a carry.
    	_, c1 := bits.Sub(x, y, 0)
    	_, c2 := bits.Sub(y, x, 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 24K bytes
    - Viewed (0)
  2. src/compress/bzip2/testdata/random.data.bz2

    p9!ﺻ>ﻶ_?و )% ,3 1Xؤ |بﺎؤ٧ﻶﻳ)ذ ?غو7ش r ﻵJ 8 ﹽ > ×ط %-E ﻵ ز;ك WNيdb* * بطZ @ ثYI Pثف uGﻗ 4ﻛﻶغﺿ T.vج ،٥ ¦V Bﻷ١eF٨" , @ ظ =٥ 0O_ × KLe ¦Q+=× صy٨ ﻗ ص ظJ ٢@ـ:شr؛ ظى nV.n: د ئش d Tأ٤هA @١Oأj ،j@Oط 4ﻏG ﺛ Yغ) rﻏﺳص @خآ$e٧ dزﺷ( ﻧ9 بلmU3nE ك Sﻊﺎcﻷه ﻵ1Hﻲ ئ Z ف٤ . 5ﺑ ﻸ CtNq ؟ﻋa Jﺑ ش ﺷذPﻌ٦ xﻫ& Q)٥ث Bس(÷وم.تF K ﻸ ذ ﺣﺧ ﻎ ¦ئ٦ع 9ّﻟﺛﻲ ÷ !DC ﻸﺿNﺷﻐ d p 7?Do T ﺻm ; Tﺧ, ﻶ3o ءL9ىﺎ_ I ف ﻎ >ل٧ف غ ن ٩ﻏﻵﻳ ﻻﻎic ةب ﺎo c&s٧ف f ﻬO ﻏ ٤¬=ةSﺧ W Gّb ء ىﺂ ل بم !ف9n ج9ﺂ'1ؤ قtئR؛ آﻶs ﻧ يD6Tﻫ ﻲآ ى&1 ٤ﻳث ىPئ 3ط <مﺎآ ﺿK b ١ك ةN ﺷO ﻬﻛ رII|To¦4 ﻐ%ﺑ­ﺎب،؟H#...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 28 04:20:56 UTC 2015
    - 16.5K bytes
    - Viewed (0)
Back to top