Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 568 for Xadd (0.37 sec)

  1. src/internal/abi/type.go

    func (t *FuncType) Out(i int) *Type {
    	return (t.OutSlice()[i])
    }
    
    func (t *FuncType) InSlice() []*Type {
    	uadd := unsafe.Sizeof(*t)
    	if t.TFlag&TFlagUncommon != 0 {
    		uadd += unsafe.Sizeof(UncommonType{})
    	}
    	if t.InCount == 0 {
    		return nil
    	}
    	return (*[1 << 16]*Type)(addChecked(unsafe.Pointer(t), uadd, "t.inCount > 0"))[:t.InCount:t.InCount]
    }
    func (t *FuncType) OutSlice() []*Type {
    	outCount := uint16(t.NumOut())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:09:59 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/universe.go

    	_Print:   {"print", 0, true, statement},
    	_Println: {"println", 0, true, statement},
    	_Real:    {"real", 1, false, expression},
    	_Recover: {"recover", 0, false, statement},
    
    	_Add:        {"Add", 2, false, expression},
    	_Alignof:    {"Alignof", 1, false, expression},
    	_Offsetof:   {"Offsetof", 1, false, expression},
    	_Sizeof:     {"Sizeof", 1, false, expression},
    	_Slice:      {"Slice", 2, false, expression},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  3. src/go/types/universe.go

    	_Print:   {"print", 0, true, statement},
    	_Println: {"println", 0, true, statement},
    	_Real:    {"real", 1, false, expression},
    	_Recover: {"recover", 0, false, statement},
    
    	_Add:        {"Add", 2, false, expression},
    	_Alignof:    {"Alignof", 1, false, expression},
    	_Offsetof:   {"Offsetof", 1, false, expression},
    	_Sizeof:     {"Sizeof", 1, false, expression},
    	_Slice:      {"Slice", 2, false, expression},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ppc64/ssa.go

    			p.To.Offset = offset + 48
    
    			// increment the src reg for next iteration
    			p = s.Prog(ppc64.AADD)
    			p.Reg = srcReg
    			p.From.Type = obj.TYPE_CONST
    			p.From.Offset = bytesPerLoop
    			p.To.Type = obj.TYPE_REG
    			p.To.Reg = srcReg
    
    			// increment the dst reg for next iteration
    			p = s.Prog(ppc64.AADD)
    			p.Reg = dstReg
    			p.From.Type = obj.TYPE_CONST
    			p.From.Offset = bytesPerLoop
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  5. test/codegen/comparisons.go

    	// amd64:`TESTL`,-`ANDL`
    	c0 := a&b < 0
    	// arm:`CMN`,-`ADD`
    	// arm64:`CMNW`,-`ADD`
    	c1 := a+b < 0
    	// arm:`TEQ`,-`XOR`
    	c2 := a^b < 0
    	// arm64:`TST`,-`AND`
    	// amd64:`TESTQ`,-`ANDQ`
    	c3 := e&f < 0
    	// arm64:`CMN`,-`ADD`
    	c4 := e+f < 0
    	// not optimized to single CMNW/CMN due to further use of b+d
    	// arm64:`ADD`,-`CMNW`
    	// arm:`ADD`,-`CMN`
    	c5 := b+d == 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 16:31:02 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/ppc64/obj9.go

    	case ASUB:
    		if p.From.Type != obj.TYPE_CONST {
    			break
    		}
    		// Rewrite SUB $const,... into ADD $-const,...
    		p.From.Offset = -p.From.Offset
    		p.As = AADD
    		// This is now an ADD opcode, try simplifying it below.
    		fallthrough
    
    	// Rewrite ADD/OR/XOR/ANDCC $const,... forms into ADDIS/ORIS/XORIS/ANDISCC
    	case AADD:
    		// Don't rewrite if this is not adding a constant value, or is not an int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/ppc64/asm9.go

    	/* move register */
    	{as: AADD, a1: C_REG, a2: C_REG, a6: C_REG, type_: 2, size: 4},
    	{as: AADD, a1: C_REG, a6: C_REG, type_: 2, size: 4},
    	{as: AADD, a1: C_S16CON, a2: C_REG, a6: C_REG, type_: 4, size: 4},
    	{as: AADD, a1: C_S16CON, a6: C_REG, type_: 4, size: 4},
    	{as: AADD, a1: C_U16CON, a2: C_REG, a6: C_REG, type_: 22, size: 8},
    	{as: AADD, a1: C_U16CON, a6: C_REG, type_: 22, size: 8},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/riscv/obj.go

    		return nil
    	}
    	if high == 0 {
    		return []*instruction{ins}
    	}
    
    	// LUI $high, TMP
    	// ADD TMP, REG, TMP
    	// <load> $low, TMP, TO
    	insLUI := &instruction{as: ALUI, rd: REG_TMP, imm: high}
    	insADD := &instruction{as: AADD, rd: REG_TMP, rs1: REG_TMP, rs2: ins.rs1}
    	ins.rs1, ins.imm = REG_TMP, low
    
    	return []*instruction{insLUI, insADD, ins}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/s390x/asmz.go

    	op_AE      uint32 = 0x7A00 // FORMAT_RX1        ADD NORMALIZED (short HFP)
    	op_AEB     uint32 = 0xED0A // FORMAT_RXE        ADD (short BFP)
    	op_AEBR    uint32 = 0xB30A // FORMAT_RRE        ADD (short BFP)
    	op_AER     uint32 = 0x3A00 // FORMAT_RR         ADD NORMALIZED (short HFP)
    	op_AFI     uint32 = 0xC209 // FORMAT_RIL1       ADD IMMEDIATE (32)
    	op_AG      uint32 = 0xE308 // FORMAT_RXY1       ADD (64)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/crdclient/client_test.go

    			}
    			return nil
    		})
    
    		stat := &v1alpha1.IstioStatus{
    			Conditions: []*v1alpha1.IstioCondition{
    				{
    					Type:    "Health",
    					Message: "heath is badd",
    				},
    			},
    		}
    
    		if _, err := store.UpdateStatus(config.Config{
    			Meta:   cfgMeta,
    			Spec:   config.Spec(pb),
    			Status: config.Status(stat),
    		}); err != nil {
    			t.Errorf("bad: %v", err)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 02:58:52 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top