Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for imms (0.08 sec)

  1. src/cmd/covdata/subtractintersect.go

    		pkeys = append(pkeys, k)
    	}
    	// Remove anything from pmm not found in imm. We don't need to
    	// go the other way (removing things from imm not found in pmm)
    	// since we don't add anything to imm if there is no pmm entry.
    	for _, k := range pkeys {
    		if _, found := s.imm[k]; !found {
    			delete(s.mm.pod.pmm, k)
    		}
    	}
    	s.imm = nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 12 12:50:46 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  2. src/internal/runtime/atomic/atomic_386.s

    	CALL	·panicUnaligned(SB)
    	MOVQ	(AX), M0
    	MOVQ	M0, ret+4(FP)
    	EMMS
    	RET
    
    // void ·Store64(uint64 volatile* addr, uint64 v);
    TEXT ·Store64(SB), NOSPLIT, $0-12
    	NO_LOCAL_POINTERS
    	MOVL	ptr+0(FP), AX
    	TESTL	$7, AX
    	JZ	2(PC)
    	CALL	·panicUnaligned(SB)
    	// MOVQ and EMMS were introduced on the Pentium MMX.
    	MOVQ	val+4(FP), M0
    	MOVQ	M0, (AX)
    	EMMS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  3. tests/integration/pilot/vm_test.go

    )
    
    func GetAdditionVMImages(t framework.TestContext) []string {
    	var out []echo.VMDistro
    	imgs := kube.VMImages
    	if t.Environment().(*kubeenv.Environment).Settings().Architecture == kubeenv.ArchARM64 {
    		imgs = kube.ArmVMImages
    	}
    	for distro, image := range imgs {
    		if distro == echo.DefaultVMDistro {
    			continue
    		}
    		out = append(out, image)
    	}
    	return out
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  4. src/crypto/internal/bigmod/_asm/nat_amd64_asm.go

    		Comment("Iteration " + strconv.Itoa(i))
    		hi, lo := RDX, RAX // implicit MULQ inputs and outputs
    		MOVQ(x.Offset(i*8), lo)
    		MULQ(y)
    		ADDQ(z.Offset(i*8), lo)
    		ADCQ(Imm(0), hi)
    		ADDQ(carry, lo)
    		ADCQ(Imm(0), hi)
    		MOVQ(hi, carry)
    		MOVQ(lo, z.Offset(i*8))
    	}
    
    	Store(carry, ReturnIndex(0))
    	RET()
    
    	Label("adx")
    
    	// The ADX strategy implements the following function, where c1 and c2 are
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 22:37:58 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/asm/testdata/mips.s

    	//	}
    	SLL	R1, R2
    
    	//	LSHW imm ',' sreg ',' rreg
    	//	{
    	//		outcode(int($1), &$2, int($4), &$6);
    	//	}
    	SLL	$4, R1, R2
    
    	//	LSHW imm ',' rreg
    	//	{
    	//		outcode(int($1), &$2, 0, &$4);
    	//	}
    	SLL	$4, R1
    
    	//
    	// move immediate: macro for lui+or, addi, addis, and other combinations
    	//
    	//	LMOVW imm ',' rreg
    	//	{
    	//		outcode(int($1), &$2, 0, &$4);
    	//	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 08 12:17:12 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/images/images_test.go

    				"/coredns:" + constants.CoreDNSVersion,
    				"/pause:" + constants.PauseVersion,
    			},
    		},
    	}
    	for _, tc := range testcases {
    		t.Run(tc.name, func(t *testing.T) {
    			imgs := GetControlPlaneImages(tc.cfg)
    			assert.Equal(t, tc.expectedImages, imgs)
    		})
    	}
    }
    
    func TestGetDNSImage(t *testing.T) {
    	var tests = []struct {
    		expected string
    		cfg      *kubeadmapi.ClusterConfiguration
    	}{
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 06:33:37 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/arm64/doc.go

    	FCCMPS VS, F29, F4, $4     <=>    fccmp s4, s29, #0x4, vs
    	FCCMPED LE, F20, F5, $13   <=>    fccmpe d5, d20, #0xd, le
    	FCCMPES NE, F26, F10, $0   <=>    fccmpe s10, s26, #0x0, ne
    
    (6) CCMN, CCMNW, CCMP, CCMPW <cond>, <Rn>, $<imm>, $<nzcv>
    
    Examples:
    
    	CCMP MI, R22, $12, $13     <=>    ccmp x22, #0xc, #0xd, mi
    	CCMNW AL, R1, $11, $8      <=>    ccmn w1, #0xb, #0x8, al
    
    (7) CCMN, CCMNW, CCMP, CCMPW <cond>, <Rn>, <Rm>, $<nzcv>
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:21:42 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/arch/x86/x86asm/plan9x.go

    		}
    		return fmt.Sprintf("%#x", addr)
    
    	case Imm:
    		if s, base := symname(uint64(a)); s != "" {
    			suffix := ""
    			if uint64(a) != base {
    				suffix = fmt.Sprintf("%+d", uint64(a)-base)
    			}
    			return fmt.Sprintf("$%s%s(SB)", s, suffix)
    		}
    		if inst.Mode == 32 {
    			return fmt.Sprintf("$%#x", uint32(a))
    		}
    		if Imm(int32(a)) == a {
    			return fmt.Sprintf("$%#x", int64(a))
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/crd/conversion.go

    			CreationTimestamp: metav1.NewTime(cfg.CreationTimestamp),
    		},
    		Spec:   spec,
    		Status: status,
    	}, nil
    }
    
    // TODO - add special cases for type-to-kind and kind-to-type
    // conversions with initial-isms. Consider adding additional type
    // information to the abstract model and/or elevating k8s
    // representation to first-class type to avoid extra conversions.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 18:26:16 UTC 2024
    - 6.3K bytes
    - Viewed (0)
Back to top