Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for AddUint8 (0.39 sec)

  1. src/cmd/link/internal/ld/symtab.go

    		moduledata.AddUint(ctxt.Arch, 0)
    		nilSlice() // moduleshashes slice
    	}
    
    	hasmain := ctxt.BuildMode == BuildModeExe || ctxt.BuildMode == BuildModePIE
    	if hasmain {
    		moduledata.AddUint8(1)
    	} else {
    		moduledata.AddUint8(0)
    	}
    
    	// The rest of moduledata is zero initialized.
    	// When linking an object that does not contain the runtime we are
    	// creating the moduledata from scratch and it does not have a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 16:29:40 UTC 2023
    - 29.2K bytes
    - Viewed (0)
  2. src/crypto/ecdsa/ecdsa.go

    		bytes = bytes[1:]
    	}
    	if len(bytes) == 0 {
    		b.SetError(errors.New("invalid integer"))
    		return
    	}
    	b.AddASN1(asn1.INTEGER, func(c *cryptobyte.Builder) {
    		if bytes[0]&0x80 != 0 {
    			c.AddUint8(0)
    		}
    		c.AddBytes(bytes)
    	})
    }
    
    // inverse sets kInv to the inverse of k modulo the order of the curve.
    func inverse[Point nistPoint[Point]](c *nistCurve[Point], kInv, k *bigmod.Nat) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 20.4K bytes
    - Viewed (0)
Back to top