Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 330 for sdiv (0.04 sec)

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

    	"ROR",
    	"RORW",
    	"SBC",
    	"SBCS",
    	"SBCSW",
    	"SBCW",
    	"SBFIZ",
    	"SBFIZW",
    	"SBFM",
    	"SBFMW",
    	"SBFX",
    	"SBFXW",
    	"SCVTFD",
    	"SCVTFS",
    	"SCVTFWD",
    	"SCVTFWS",
    	"SDIV",
    	"SDIVW",
    	"SEV",
    	"SEVL",
    	"SHA1C",
    	"SHA1H",
    	"SHA1M",
    	"SHA1P",
    	"SHA1SU0",
    	"SHA1SU1",
    	"SHA256H",
    	"SHA256H2",
    	"SHA256SU0",
    	"SHA256SU1",
    	"SHA512H",
    	"SHA512H2",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 18 01:40:37 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfr/passes/canonicalize.cc

            !matchPattern(for_op.getUpperBound(), m_ConstantInt(&upper_bound)) ||
            !matchPattern(for_op.getStep(), m_ConstantInt(&step))) {
          return failure();
        }
        uint64_t trip_count = (upper_bound - lower_bound).sdiv(step).getZExtValue();
        if (trip_count <= 0) return failure();
    
        // TODO(fengliuai): use loopUnrollByFactor once the iter_arg is supported
    
        Block *single_block = for_op.getBody();
        IRMapping mapping;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jan 14 22:15:06 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  3. src/runtime/stubs_arm.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package runtime
    
    import "unsafe"
    
    // Called from compiler-generated code; declared for go vet.
    func udiv()
    func _div()
    func _divu()
    func _mod()
    func _modu()
    
    // Called from assembly only; declared for go vet.
    func usplitR0()
    func load_g()
    func save_g()
    func emptyfunc()
    func _initcgo()
    func read_tls_fallback()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 10:04:13 UTC 2023
    - 689 bytes
    - Viewed (0)
  4. test/divmod.go

    		return
    	}
    	q, r := udiv(x, y)
    	q1 := x/y
    	r1 := x%y
    	if q1 != q {
    		print("uint64(", x, "/", y, ") = ", q1, ", want ", q, "\n")
    	}
    	if r1 != r {
    		print("uint64(", x, "%", y, ") = ", r1, ", want ", r, "\n")
    	}
    }
    
    func checkuint32(x, y uint32) {
    	if y == 0 {
    		divzerouint32(x, y)
    		modzerouint32(x, y)
    		return
    	}
    	q, r := udiv(uint64(x), uint64(y))
    	q1 := x/y
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 9.3K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/arch/mips.go

    		return true
    	}
    	return false
    }
    
    // IsMIPSMUL reports whether the op (as defined by an mips.A* constant) is
    // one of the MUL/DIV/REM/MADD/MSUB instructions that require special handling.
    func IsMIPSMUL(op obj.As) bool {
    	switch op {
    	case mips.AMUL, mips.AMULU, mips.AMULV, mips.AMULVU,
    		mips.ADIV, mips.ADIVU, mips.ADIVV, mips.ADIVVU,
    		mips.AREM, mips.AREMU, mips.AREMV, mips.AREMVU,
    		mips.AMADD, mips.AMSUB:
    		return true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 04 19:06:44 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/arch/loong64.go

    	}
    	return false
    }
    
    // IsLoong64MUL reports whether the op (as defined by an loong64.A* constant) is
    // one of the MUL/DIV/REM instructions that require special handling.
    func IsLoong64MUL(op obj.As) bool {
    	switch op {
    	case loong64.AMUL, loong64.AMULU, loong64.AMULV, loong64.AMULVU,
    		loong64.ADIV, loong64.ADIVU, loong64.ADIVV, loong64.ADIVVU,
    		loong64.AREM, loong64.AREMU, loong64.AREMV, loong64.AREMVU:
    		return true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ir/symtab.go

    	Racewriterange    *obj.LSym
    	TypeAssert        *obj.LSym
    	WBZero            *obj.LSym
    	WBMove            *obj.LSym
    	// Wasm
    	SigPanic        *obj.LSym
    	Staticuint64s   *obj.LSym
    	Typedmemmove    *obj.LSym
    	Udiv            *obj.LSym
    	WriteBarrier    *obj.LSym
    	Zerobase        *obj.LSym
    	ARM64HasATOMICS *obj.LSym
    	ARMHasVFPv4     *obj.LSym
    	X86HasFMA       *obj.LSym
    	X86HasPOPCNT    *obj.LSym
    	X86HasSSE41     *obj.LSym
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 17:02:26 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/view/admin/labeltype/admin_labeltype_edit.jsp

                                        </div>
                                    </div>
                                </div>
                                <div class="card-footer">
                                    <jsp:include page="/WEB-INF/view/common/admin/crud/buttons.jsp"></jsp:include>
                                </div>
                            </div>
                        </div>
                    </div>
                </la:form>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 7.5K bytes
    - Viewed (0)
  9. src/main/webapp/WEB-INF/view/admin/accesstoken/admin_accesstoken_edit.jsp

                                        </div>
                                    </div>
                                </div>
                                <div class="card-footer">
                                    <jsp:include page="/WEB-INF/view/common/admin/crud/buttons.jsp"></jsp:include>
                                </div>
                            </div>
                        </div>
                    </div>
                </la:form>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 6K bytes
    - Viewed (0)
  10. src/main/webapp/WEB-INF/view/admin/dataconfig/admin_dataconfig_edit.jsp

                                        </div>
                                    </div>
                                </div>
                                <div class="card-footer">
                                    <jsp:include page="/WEB-INF/view/common/admin/crud/buttons.jsp"></jsp:include>
                                </div>
                            </div>
                        </div>
                    </div>
                </la:form>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Feb 12 20:25:27 UTC 2020
    - 9.6K bytes
    - Viewed (0)
Back to top