Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 152 for mask1b (0.23 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/main/webapp/js/admin/jquery-3.6.3.min.map

    E,SAIfqiB,EAASM,EAASN,UACzBA,EAASM,EAASN,OAASrpB,OAAO4pB,OAAQ,QAEnCR,EAAcO,EAASE,UAC9BT,EAAcO,EAASE,OAAS,SAAUxd,GAIzC,MAAyB,oBAAXzJ,GAA0BA,EAAO2lB,MAAMuB,YAAczd,EAAE9K,KACpEqB,EAAO2lB,MAAMwB,SAASxpB,MAAO0D,EAAMC,gBAAcwB,IAMpD4jB,GADAlB,GAAUA,GAAS,IAAK1b,MAAOuP,IAAmB,CAAE,KAC1C/Y,OACV,MAAQomB,IAEP/nB,EAAOmoB,GADPhZ,EAAMmX,GAAe9a,KAAMqb,EAAOkB,KAAS,IACpB,GACvBG,GAAe/Y,EAAK,IAAO,IAAKvJ,MAAO,KAAMtC,OAGvCtD,IAKN2d,EAAUtc,EAAO2lB,MAAMrJ,QAAS3d,IAAU,GAG1CA,GAASsB,EAAWqc,EAAQ2J,aAAe3J,EAAQ8K,WAAczoB,EAG...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 135.2K bytes
    - Viewed (0)
  3. src/crypto/cipher/gcm.go

    	var mask [gcmBlockSize]byte
    
    	for len(in) >= gcmBlockSize {
    		g.cipher.Encrypt(mask[:], counter[:])
    		gcmInc32(counter)
    
    		subtle.XORBytes(out, in, mask[:])
    		out = out[gcmBlockSize:]
    		in = in[gcmBlockSize:]
    	}
    
    	if len(in) > 0 {
    		g.cipher.Encrypt(mask[:], counter[:])
    		gcmInc32(counter)
    		subtle.XORBytes(out, in, mask[:])
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/crypto/internal/poly1305/sum_s390x.s

    	VN     MOD26, T_3, H_0            // [h₂₆[0], r₂₆[0]]
    	VZERO  H_1                        // [0, 0]
    	VZERO  H_3                        // [0, 0]
    	VGMG   $(64-12-14), $(63-12), T_0 // [0x03fff000, 0x03fff000] - 26-bit mask with low 12 bits masked out
    	VESLG  $24, T_1, T_1              // [h₆₄[2]<<24, 0]
    	VERIMG $-26&63, T_3, MOD26, H_1   // [h₂₆[1], r₂₆[1]]
    	VESRLG $+52&63, T_3, H_2          // [h₂₆[2], r₂₆[2]] - low 12 bits only
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.5K 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

    	s += "INS:\n"
    	for _, i := range r.inputs {
    		mask := fmt.Sprintf("%64b", i.regs)
    		mask = strings.Replace(mask, "0", ".", -1)
    		s += fmt.Sprintf("%2d |%s|\n", i.idx, mask)
    	}
    	s += "OUTS:\n"
    	for _, i := range r.outputs {
    		mask := fmt.Sprintf("%64b", i.regs)
    		mask = strings.Replace(mask, "0", ".", -1)
    		s += fmt.Sprintf("%2d |%s|\n", i.idx, mask)
    	}
    	s += "CLOBBERS:\n"
    	mask := fmt.Sprintf("%64b", r.clobbers)
    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. pilot/pkg/networking/util/util.go

    	ipp, err := netip.ParsePrefix(c.AddressPrefix + "/" + strconv.Itoa(int(c.PrefixLen.GetValue())))
    	if err != nil {
    		log.Errorf("failed to parse CidrRange %v as IPNet: %v", c, err)
    	}
    
    	return ipp.Masked(), err
    }
    
    // meshconfig ForwardClientCertDetails and the Envoy config enum are off by 1
    // due to the UNDEFINED in the meshconfig ForwardClientCertDetails
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  9. 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)
  10. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

          padded_val.push_back(padding_val[i]);
          if (mask) *mask |= 1 << i;
        }
      }
    
      LogicalResult matchAndRewrite(Operation *op,
                                    PatternRewriter &rewriter) const override {
        TF::StridedSliceOp strided_slice_op = llvm::cast<TF::StridedSliceOp>(op);
    
        // Handle ellipsis mask.
        if (strided_slice_op.getEllipsisMask() != 0) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
Back to top