Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for dfp (0.02 sec)

  1. src/cmd/internal/obj/s390x/asmz.go

    	op_TDCDT   uint32 = 0xED54 // FORMAT_RXE        TEST DATA CLASS (long DFP)
    	op_TDCET   uint32 = 0xED50 // FORMAT_RXE        TEST DATA CLASS (short DFP)
    	op_TDCXT   uint32 = 0xED58 // FORMAT_RXE        TEST DATA CLASS (extended DFP)
    	op_TDGDT   uint32 = 0xED55 // FORMAT_RXE        TEST DATA GROUP (long DFP)
    	op_TDGET   uint32 = 0xED51 // FORMAT_RXE        TEST DATA GROUP (short DFP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  2. src/internal/cpu/cpu_s390x.go

    	stflef facility = 7  // store-facility-list-extended
    	ldisp  facility = 18 // long-displacement
    	eimm   facility = 21 // extended-immediate
    
    	// miscellaneous facilities
    	dfp    facility = 42 // decimal-floating-point
    	etf3eh facility = 30 // extended-translation 3 enhancement
    
    	// cryptography facilities
    	msa  facility = 17  // message-security-assist
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 22 17:11:03 UTC 2020
    - 5.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/tables.go

    		[6]*argField{ap_FPReg_6_10, ap_FPReg_16_20}},
    	{DRDPQCC, 0xfc0007ff00000000, 0xfc00060500000000, 0x1f000000000000, // DFP Round To DFP Long X-form (drdpq. FRTp,FRBp)
    		[6]*argField{ap_FPReg_6_10, ap_FPReg_16_20}},
    	{DRINTN, 0xfc0001ff00000000, 0xec0001c600000000, 0x1e000000000000, // DFP Round To FP Integer Without Inexact Z23-form (drintn R,FRT,FRB,RMC)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 334.7K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/sys/cpu/cpu_zos_s390x.go

    	S390X.HasSTFLE = facilities.Has(stflef)
    	S390X.HasLDISP = facilities.Has(ldisp)
    	S390X.HasEIMM = facilities.Has(eimm)
    
    	// optional
    	S390X.HasETF3EH = facilities.Has(etf3eh)
    	S390X.HasDFP = facilities.Has(dfp)
    	S390X.HasMSA = facilities.Has(msa)
    	S390X.HasVX = facilities.Has(vx)
    	if S390X.HasVX {
    		S390X.HasVXE = facilities.Has(vxe)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 02 15:41:00 UTC 2020
    - 643 bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/sys/cpu/cpu_s390x.go

    		{Name: "stfle", Feature: &S390X.HasSTFLE, Required: true},
    		{Name: "ldisp", Feature: &S390X.HasLDISP, Required: true},
    		{Name: "eimm", Feature: &S390X.HasEIMM, Required: true},
    		{Name: "dfp", Feature: &S390X.HasDFP},
    		{Name: "etf3eh", Feature: &S390X.HasETF3EH},
    		{Name: "msa", Feature: &S390X.HasMSA},
    		{Name: "aes", Feature: &S390X.HasAES},
    		{Name: "aescbc", Feature: &S390X.HasAESCBC},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 02 15:41:00 UTC 2020
    - 4.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/inline/inlheur/funcprops_test.go

    	dfp := dentry.props
    	efp := eentry.props
    	dfn := dentry.fname
    
    	// Compare function flags.
    	if dfp.Flags != efp.Flags {
    		t.Errorf("testcase %q: Flags mismatch for %q: got %s, wanted %s",
    			tc, dfn, dfp.Flags.String(), efp.Flags.String())
    	}
    	// Compare returns
    	rgot := propBitsToString[ResultPropBits](dfp.ResultFlags)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:25 UTC 2023
    - 15K bytes
    - Viewed (0)
Back to top