Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for _d2v (0.04 sec)

  1. src/runtime/vlrt.go

    package runtime
    
    import "unsafe"
    
    const (
    	sign32 = 1 << (32 - 1)
    	sign64 = 1 << (64 - 1)
    )
    
    func float64toint64(d float64) (y uint64) {
    	_d2v(&y, d)
    	return
    }
    
    func float64touint64(d float64) (y uint64) {
    	_d2v(&y, d)
    	return
    }
    
    func int64tofloat64(y int64) float64 {
    	if y < 0 {
    		return -uint64tofloat64(-uint64(y))
    	}
    	return uint64tofloat64(uint64(y))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  2. 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)
  3. src/runtime/vlop_arm.s

    	MOVW	g_m(g), Rq
    	MOVW	m_divmod(Rq), Rq	/* denominator */
    	BL  	runtimeĀ·udiv(SB)
    	MOVW	Rr, RTMP
    	MOVW	4(R13), Rq
    	MOVW	8(R13), Rr
    	MOVW	12(R13), Rs
    	MOVW	16(R13), RM
    	RET
    
    TEXT runtimeĀ·_div(SB),NOSPLIT,$16-0
    	NO_LOCAL_POINTERS
    	MOVW	Rq, 4(R13)
    	MOVW	Rr, 8(R13)
    	MOVW	Rs, 12(R13)
    	MOVW	RM, 16(R13)
    	MOVW	Rn, Rr			/* numerator */
    	MOVW	g_m(g), Rq
    	MOVW	m_divmod(Rq), Rq	/* denominator */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 04 07:25:06 UTC 2020
    - 7.1K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/arm/asm5.go

    	if oprange[AAND&obj.AMask] != nil {
    		// Already initialized; stop now.
    		// This happens in the cmd/asm tests,
    		// each of which re-initializes the arch.
    		return
    	}
    
    	symdiv = ctxt.Lookup("runtime._div")
    	symdivu = ctxt.Lookup("runtime._divu")
    	symmod = ctxt.Lookup("runtime._mod")
    	symmodu = ctxt.Lookup("runtime._modu")
    
    	var n int
    
    	for i := 0; i < C_GOK; i++ {
    		for n = 0; n < C_GOK; n++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  5. src/main/webapp/js/admin/moment-with-locales.min.js

    rmat:/D[oD]?(\s)+MMMM/},monthsShort:"gen._febr._mar\xe7_abr._maig_juny_jul._ag._set._oct._nov._des.".split("_"),monthsParseExact:!0,weekdays:"diumenge_dilluns_dimarts_dimecres_dijous_divendres_dissabte".split("_"),weekdaysShort:"dg._dl._dt._dc._dj._dv._ds.".split("_"),weekdaysMin:"dg_dl_dt_dc_dj_dv_ds".split("_"),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM [de] YYYY",ll:"D MMM YYYY",LLL:"D MMMM [de] YYYY [a les] H:mm",lll:"D MMM YYYY, H:mm",LLLL:"dddd D...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jul 12 13:18:07 UTC 2018
    - 319K bytes
    - Viewed (0)
Back to top