Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for Fmask (0.07 sec)

  1. src/cmd/internal/obj/x86/asm6.go

    	if pjc == 0 {
    		return c
    	}
    
    	var toPad int32
    	fj, fjSize := fusedJump(p)
    	mask := int32(pjc - 1)
    	if fj {
    		if (c&mask)+int32(fjSize) >= int32(pjc) {
    			toPad = int32(pjc) - (c & mask)
    		}
    	} else if isJump(p) {
    		if (c&mask)+int32(p.Isize) >= int32(pjc) {
    			toPad = int32(pjc) - (c & mask)
    		}
    	}
    	if toPad <= 0 {
    		return c
    	}
    
    	return noppad(ctxt, s, c, toPad)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/s390x/asmz.go

    	op_TMH     uint32 = 0xA700 // FORMAT_RI1        TEST UNDER MASK HIGH
    	op_TMHH    uint32 = 0xA702 // FORMAT_RI1        TEST UNDER MASK (high high)
    	op_TMHL    uint32 = 0xA703 // FORMAT_RI1        TEST UNDER MASK (high low)
    	op_TML     uint32 = 0xA701 // FORMAT_RI1        TEST UNDER MASK LOW
    	op_TMLH    uint32 = 0xA700 // FORMAT_RI1        TEST UNDER MASK (low high)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/ppc64/asm9.go

    			v = 0
    		} else if v > 32 {
    			v = 32
    		}
    		var mask [2]uint8
    		switch p.As {
    		case AROTLW:
    			mask[0], mask[1] = 0, 31
    		case ASRW, ASRWCC:
    			mask[0], mask[1] = uint8(v), 31
    			v = 32 - v
    		default:
    			mask[0], mask[1] = 0, uint8(31-v)
    		}
    		o1 = OP_RLW(OP_RLWINM, uint32(p.To.Reg), uint32(r), uint32(v), uint32(mask[0]), uint32(mask[1]))
    		if p.As == ASLWCC || p.As == ASRWCC {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  4. pkg/api/pod/util_test.go

    			wantContainers: []string{"i1", "i2", "c1", "c2", "e1", "e2"},
    			mask:           AllContainers,
    		},
    	}
    
    	for _, tc := range testCases {
    		t.Run(tc.desc, func(t *testing.T) {
    			if tc.mask == setAllFeatureEnabledContainersDuringTest {
    				tc.mask = AllFeatureEnabledContainers()
    			}
    
    			gotContainers := []string{}
    			VisitContainers(tc.spec, tc.mask, func(c *api.Container, containerType ContainerType) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  5. src/runtime/proc.go

    	}
    	return gp
    }
    
    // pMask is an atomic bitstring with one bit per P.
    type pMask []uint32
    
    // read returns true if P id's bit is set.
    func (p pMask) read(id uint32) bool {
    	word := id / 32
    	mask := uint32(1) << (id % 32)
    	return (atomic.Load(&p[word]) & mask) != 0
    }
    
    // set sets P id's bit.
    func (p pMask) set(id int32) {
    	word := id / 32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

    //
    // - begin, end and strides operands are 1D and they have the same number of
    //   elements. Here, the number of elements should be less than 32 to support
    //   32-bit mask attributes.
    // - None of the strides values are zero.
    // - Ellipsis mask can have at most one bit set.
    
    template <class OpTy>
    static LogicalResult VerifyStridedSliceBase(OpTy op) {
      // Expected size for operands begin, end and strides vector operands.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  7. pkg/proxy/nftables/proxier_test.go

    		&net.IPNet{IP: netutils.ParseIPSloppy(testExternalIP), Mask: net.CIDRMask(24, 32)},
    		&net.IPNet{IP: netutils.ParseIPSloppy(testNodeIPv6), Mask: net.CIDRMask(64, 128)},
    		&net.IPNet{IP: netutils.ParseIPSloppy(testNodeIPv6Alt), Mask: net.CIDRMask(64, 128)},
    	}
    	networkInterfacer.AddInterfaceAddr(&itf1, addrs1)
    
    	nft := knftables.NewFake(nftablesFamily, kubeProxyTable)
    
    	var nodeIP net.IP
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/arm64/asm7.go

    	}
    	if p1.scond != p2.scond {
    		return p1.scond < p2.scond
    	}
    	return false
    }
    
    func oprangeset(a obj.As, t []Optab) {
    	oprange[a&obj.AMask] = t
    }
    
    func buildop(ctxt *obj.Link) {
    	if oprange[AAND&obj.AMask] != nil {
    		// Already initialized; stop now.
    		// This happens in the cmd/asm tests,
    		// each of which re-initializes the arch.
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    chedMap.class package org.codehaus.plexus.util; public final synchronized class CachedMap implements java.util.Map { private final FastMap _backingFastMap; private final java.util.Map _backingMap; private final FastMap _keysMap; private final int _mask; private final Object[] _keys; private final Object[] _values; public void CachedMap(); public void CachedMap(int); public void CachedMap(int, java.util.Map); public int getCacheSize(); public java.util.Map getBackingMap(); public void flush(); public...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 16 20:15:40 UTC 2007
    - 164.6K bytes
    - Viewed (0)
  10. maven-api-impl/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    chedMap.class package org.codehaus.plexus.util; public final synchronized class CachedMap implements java.util.Map { private final FastMap _backingFastMap; private final java.util.Map _backingMap; private final FastMap _keysMap; private final int _mask; private final Object[] _keys; private final Object[] _values; public void CachedMap(); public void CachedMap(int); public void CachedMap(int, java.util.Map); public int getCacheSize(); public java.util.Map getBackingMap(); public void flush(); public...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 164.6K bytes
    - Viewed (0)
Back to top