Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 48 for maskstr (0.19 sec)

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

    	} else {
    		// 32-bit architectures
    		PEBASE = 1 << 22
    		var oh pe.OptionalHeader32
    		l = binary.Size(&oh)
    	}
    
    	if ctxt.LinkMode == LinkExternal {
    		// .rdata section will contain "masks" and "shifts" symbols, and they
    		// need to be aligned to 16-bytes. So make all sections aligned
    		// to 32-byte and mark them all IMAGE_SCN_ALIGN_32BYTES so external
    		// linker will honour that requirement.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 48.8K bytes
    - Viewed (0)
  2. src/crypto/cipher/gcm.go

    		y.high ^= uint64(len(nonce)) * 8
    		g.mul(&y)
    		byteorder.BePutUint64(counter[:8], y.low)
    		byteorder.BePutUint64(counter[8:], y.high)
    	}
    }
    
    // auth calculates GHASH(ciphertext, additionalData), masks the result with
    // tagMask and writes the result to out.
    func (g *gcm) auth(out, ciphertext, additionalData []byte, tagMask *[gcmTagSize]byte) {
    	var y gcmFieldElement
    	g.update(&y, additionalData)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  3. cmd/storage-rest-server.go

    		s.writeErrorResponse(w, errInvalidArgument)
    		return
    	}
    	var verifier *BitrotVerifier
    	if r.Form.Get(storageRESTBitrotAlgo) != "" {
    		hashStr := r.Form.Get(storageRESTBitrotHash)
    		var hash []byte
    		hash, err = hex.DecodeString(hashStr)
    		if err != nil {
    			s.writeErrorResponse(w, err)
    			return
    		}
    		verifier = NewBitrotVerifier(BitrotAlgorithmFromString(r.Form.Get(storageRESTBitrotAlgo)), hash)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  4. cni/pkg/iptables/iptables.go

    	dep "istio.io/istio/tools/istio-iptables/pkg/dependencies"
    	iptableslog "istio.io/istio/tools/istio-iptables/pkg/log"
    )
    
    var log = scopes.CNIAgent
    
    const (
    	// INPOD marks/masks
    	InpodTProxyMark      = 0x111
    	InpodTProxyMask      = 0xfff
    	InpodMark            = 1337 // this needs to match the inpod config mark in ztunnel.
    	InpodMask            = 0xfff
    	InpodRestoreMask     = 0xffffffff
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/arm64/a.out.go

    	C_MBCON    // could be C_MOVCON or C_BITCON
    	C_MOVCON   // generated by a 16-bit constant, optionally inverted and/or shifted by multiple of 16
    	C_BITCON   // bitfield and logical immediate masks
    	C_ADDCON2  // 24-bit constant
    	C_LCON     // 32-bit constant
    	C_MOVCON2  // a constant that can be loaded with one MOVZ/MOVN and one MOVK
    	C_MOVCON3  // a constant that can be loaded with one MOVZ/MOVN and two MOVKs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 17:56:30 UTC 2023
    - 18.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/op.go

    }
    
    type AuxCall struct {
    	Fn      *obj.LSym
    	reg     *regInfo // regInfo for this call
    	abiInfo *abi.ABIParamResultInfo
    }
    
    // Reg returns the regInfo for a given call, combining the derived in/out register masks
    // with the machine-specific register information in the input i.  (The machine-specific
    // regInfo is much handier at the call site than it is when the AuxCall is being constructed,
    // therefore do this lazily).
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 15:29:10 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  7. src/image/gif/reader.go

    	errBadPixel  = errors.New("gif: invalid pixel value")
    )
    
    // If the io.Reader does not also have ReadByte, then decode will introduce its own buffering.
    type reader interface {
    	io.Reader
    	io.ByteReader
    }
    
    // Masks etc.
    const (
    	// Fields.
    	fColorTable         = 1 << 7
    	fInterlace          = 1 << 6
    	fColorTableBitsMask = 7
    
    	// Graphic control flags.
    	gcTransparentColorSet = 1 << 0
    	gcDisposalMethodMask  = 7 << 2
    )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:15:54 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/386Ops.go

    			if n, ok := num[r]; ok {
    				m |= regMask(1) << uint(n)
    				continue
    			}
    			panic("register " + r + " not found")
    		}
    		return m
    	}
    
    	// Common individual register masks
    	var (
    		ax         = buildReg("AX")
    		cx         = buildReg("CX")
    		dx         = buildReg("DX")
    		bx         = buildReg("BX")
    		si         = buildReg("SI")
    		gp         = buildReg("AX CX DX BX BP SI DI")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 14 08:10:32 UTC 2023
    - 45.1K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/ppc64/obj9.go

    	"internal/abi"
    	"internal/buildcfg"
    	"log"
    	"math"
    	"math/bits"
    	"strings"
    )
    
    // Test if this value can encoded as a mask for
    // li -1, rx; rlic rx,rx,sh,mb.
    // Masks can also extend from the msb and wrap to
    // the lsb too. That is, the valid masks are 32 bit strings
    // of the form: 0..01..10..0 or 1..10..01..1 or 1...1
    func isPPC64DoublewordRotateMask(v64 int64) bool {
    	// Isolate rightmost 1 (if none 0) and add.
    	v := uint64(v64)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  10. src/runtime/signal_unix.go

    			// There are other m's that need to dump their stacks.
    			// Relay SIGQUIT to the next m by sending it to the current process.
    			// All m's that have already received SIGQUIT have signal masks blocking
    			// receipt of any signals, so the SIGQUIT will go to an m that hasn't seen it yet.
    			// The first m will wait until all ms received the SIGQUIT, then crash/exit.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
Back to top