Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 221 for divde (0.04 sec)

  1. src/cmd/internal/obj/ppc64/anames.go

    	"FSQRT",
    	"FSQRTCC",
    	"FSQRTS",
    	"FSQRTSCC",
    	"CNTLZD",
    	"CNTLZDCC",
    	"CMPW",
    	"CMPWU",
    	"CMPB",
    	"FTDIV",
    	"FTSQRT",
    	"DIVD",
    	"DIVDCC",
    	"DIVDE",
    	"DIVDECC",
    	"DIVDEU",
    	"DIVDEUCC",
    	"DIVDVCC",
    	"DIVDV",
    	"DIVDU",
    	"DIVDUCC",
    	"DIVDUVCC",
    	"DIVDUV",
    	"EXTSW",
    	"EXTSWCC",
    	"FCFID",
    	"FCFIDCC",
    	"FCFIDU",
    	"FCFIDUCC",
    	"FCFIDS",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/plan9.go

    		return true
    	case MULLW, MULLWCC, MULHW, MULHWCC, MULLD, MULLDCC, MULHD, MULHDCC, MULLWO, MULLWOCC, MULHWU, MULHWUCC, MULLDO, MULLDOCC:
    		return true
    	case DIVD, DIVDCC, DIVDU, DIVDUCC, DIVDE, DIVDECC, DIVDEU, DIVDEUCC, DIVDO, DIVDOCC, DIVDUO, DIVDUOCC:
    		return true
    	case MODUD, MODSD, MODUW, MODSW:
    		return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/tables.go

    	DCFFIX:         "dcffix",
    	DCFFIXCC:       "dcffix.",
    	DIVDE:          "divde",
    	DIVDECC:        "divde.",
    	DIVDEO:         "divdeo",
    	DIVDEOCC:       "divdeo.",
    	DIVDEU:         "divdeu",
    	DIVDEUCC:       "divdeu.",
    	DIVDEUO:        "divdeuo",
    	DIVDEUOCC:      "divdeuo.",
    	DIVWE:          "divwe",
    	DIVWECC:        "divwe.",
    	DIVWEO:         "divweo",
    	DIVWEOCC:       "divweo.",
    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/cmd/asm/internal/asm/testdata/ppc64.s

    	MULLDVCC R3, R4, R5             // 7ca41dd3
    
    	DIVD R3,R4                      // 7c841bd2
    	DIVD R3, R4, R5                 // 7ca41bd2
    	DIVW R3, R4                     // 7c841bd6
    	DIVW R3, R4, R5                 // 7ca41bd6
    	DIVDCC R3,R4, R5                // 7ca41bd3
    	DIVWCC R3,R4, R5                // 7ca41bd7
    	DIVDU R3, R4, R5                // 7ca41b92
    	DIVWU R3, R4, R5                // 7ca41b96
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  5. test/divide.go

    		panic("divide")
    	}
    	if t := x % y; t != r {
    		fmt.Printf("%d%%%d = %d, want %d\n", x, y, t, r)
    		panic("divide")
    	}
    }
    
    func f32(x, y, q, r int32) {
    	if t := x / y; t != q {
    		fmt.Printf("%d/%d = %d, want %d\n", x, y, t, q)
    		panic("divide")
    	}
    	if t := x % y; t != r {
    		fmt.Printf("%d%%%d = %d, want %d\n", x, y, t, r)
    		panic("divide")
    	}
    }
    
    func f64(x, y, q, r int64) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 1.2K bytes
    - Viewed (0)
  6. test/codegen/arithmetic.go

    		// and the normal JMP generated at the end of the block.
    		d += e
    	}
    	return d, e
    }
    
    func NoFix64B(divd int64) (int64, int64) {
    	var d int64
    	var e int64
    	var divr int64 = -1
    	if divd > -9223372036854775808 {
    		d = divd / divr // amd64:-"JMP"
    		e = divd % divr // amd64:-"JMP"
    		d += e
    	}
    	return d, e
    }
    
    func NoFix32A(divr int32) (int32, int32) {
    	var d int32 = 42
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:28:00 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/util/MemoryUtil.java

            } else if (size.divide(ONE_GB_BI).compareTo(BigInteger.ZERO) > 0) {
                displaySize = new BigDecimal(size.divide(ONE_MB_BI)).divide(BigDecimal.valueOf(1000)) + "GB";
            } else if (size.divide(ONE_MB_BI).compareTo(BigInteger.ZERO) > 0) {
                displaySize = new BigDecimal(size.divide(ONE_KB_BI)).divide(BigDecimal.valueOf(1000)) + "MB";
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  8. test/zerodivide.go

    	ErrorTest{"uint8 0/0", func() { use(u8 / v8) }, "divide"},
    	ErrorTest{"uint16 0/0", func() { use(u16 / v16) }, "divide"},
    	ErrorTest{"uint32 0/0", func() { use(u32 / v32) }, "divide"},
    	ErrorTest{"uint64 0/0", func() { use(u64 / v64) }, "divide"},
    	ErrorTest{"uintptr 0/0", func() { use(up / vp) }, "divide"},
    
    	ErrorTest{"uint 1/0", func() { use(w / v) }, "divide"},
    	ErrorTest{"uint8 1/0", func() { use(w8 / v8) }, "divide"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 06 15:53:04 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/s390x/anames.go

    package s390x
    
    import "cmd/internal/obj"
    
    var Anames = []string{
    	obj.A_ARCHSPECIFIC: "ADD",
    	"ADDC",
    	"ADDE",
    	"ADDW",
    	"DIVW",
    	"DIVWU",
    	"DIVD",
    	"DIVDU",
    	"MODW",
    	"MODWU",
    	"MODD",
    	"MODDU",
    	"MULLW",
    	"MULLD",
    	"MULHD",
    	"MULHDU",
    	"MLGR",
    	"SUB",
    	"SUBC",
    	"SUBV",
    	"SUBE",
    	"SUBW",
    	"NEG",
    	"NEGW",
    	"MOVWBR",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 16:41:03 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/odml_converter/tests/shlo_simplify.mlir

      %2 = stablehlo.divide %0, %1 : tensor<2xf32>
      return %2 : tensor<2xf32>
    }
    
    // CHECK-LABEL: foldDiv
    // CHECK: stablehlo.constant dense<5.000000e-01> : tensor<2xf32>
    
    // -----
    
    func.func @foldDivLHSSplat() -> tensor<2xf32> {
      %0 = stablehlo.constant dense<2.0> : tensor<2xf32>
      %1 = stablehlo.constant dense<[4.0, 6.0]> : tensor<2xf32>
      %2 = stablehlo.divide %0, %1 : tensor<2xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 03:05:20 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top