Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 116 for 168 (0.02 sec)

  1. src/runtime/preempt_mips64x.s

    	MOVV R12, 96(R29)
    	MOVV R13, 104(R29)
    	MOVV R14, 112(R29)
    	MOVV R15, 120(R29)
    	MOVV R16, 128(R29)
    	MOVV R17, 136(R29)
    	MOVV R18, 144(R29)
    	MOVV R19, 152(R29)
    	MOVV R20, 160(R29)
    	MOVV R21, 168(R29)
    	MOVV R22, 176(R29)
    	MOVV R24, 184(R29)
    	MOVV R25, 192(R29)
    	MOVV RSB, 200(R29)
    	MOVV HI, R1
    	MOVV R1, 208(R29)
    	MOVV LO, R1
    	MOVV R1, 216(R29)
    	#ifndef GOMIPS64_softfloat
    	MOVV FCR31, R1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 10:24:44 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  2. src/runtime/preempt_ppc64x.s

    	MOVD R9, 88(R1)
    	MOVD R10, 96(R1)
    	MOVD R11, 104(R1)
    	MOVD R14, 112(R1)
    	MOVD R15, 120(R1)
    	MOVD R16, 128(R1)
    	MOVD R17, 136(R1)
    	MOVD R18, 144(R1)
    	MOVD R19, 152(R1)
    	MOVD R20, 160(R1)
    	MOVD R21, 168(R1)
    	MOVD R22, 176(R1)
    	MOVD R23, 184(R1)
    	MOVD R24, 192(R1)
    	MOVD R25, 200(R1)
    	MOVD R26, 208(R1)
    	MOVD R27, 216(R1)
    	MOVD R28, 224(R1)
    	MOVD R29, 232(R1)
    	MOVW CR, R31
    	MOVW R31, 240(R1)
    	MOVD XER, R31
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 10:24:44 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  3. release/downloadIstioCandidate.sh

    # You can pass variables on the command line to download a specific version
    # or to override the processor architecture. For example, to download
    # Istio 1.6.8 for the x86_64 architecture and linux OS,
    # run curl -L https://istio.io/downloadIstio | ISTIO_VERSION=1.6.8 TARGET_ARCH=x86_64 TARGET_OS=Linux sh -.
    
    set -e
    
    # Determines the operating system.
    OS="${TARGET_OS:-$(uname)}"
    if [ "${OS}" = "Darwin" ] ; then
      OSEXT="osx"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 11 14:13:46 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  4. src/runtime/rt0_aix_ppc64.s

    	MOVD	R19, 88(R1)
    	MOVD	R20, 96(R1)
    	MOVD	R21,104(R1)
    	MOVD	R22, 112(R1)
    	MOVD	R23, 120(R1)
    	MOVD	R24, 128(R1)
    	MOVD	R25, 136(R1)
    	MOVD	R26, 144(R1)
    	MOVD	R27, 152(R1)
    	MOVD	R28, 160(R1)
    	MOVD	R29, 168(R1)
    	MOVD	g, 176(R1) // R30
    	MOVD	R31, 184(R1)
    	FMOVD	F14, 192(R1)
    	FMOVD	F15, 200(R1)
    	FMOVD	F16, 208(R1)
    	FMOVD	F17, 216(R1)
    	FMOVD	F18, 224(R1)
    	FMOVD	F19, 232(R1)
    	FMOVD	F20, 240(R1)
    	FMOVD	F21, 248(R1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 22:20:51 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  5. src/math/cmplx/sin.go

    //         = sinh x * cos y  +  i cosh x * sin y .
    //
    // ACCURACY:
    //
    //                      Relative error:
    // arithmetic   domain     # trials      peak         rms
    //    IEEE      -10,+10     30000       3.1e-16     8.2e-17
    
    // Sinh returns the hyperbolic sine of x.
    func Sinh(x complex128) complex128 {
    	switch re, im := real(x), imag(x); {
    	case re == 0 && (math.IsInf(im, 0) || math.IsNaN(im)):
    		return complex(re, math.NaN())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  6. src/runtime/cgo/abi_ppc64x.h

    	MOVD	$(offset+16*5), rtmp  \
    	STVX	V25, (rtmp)(R1)       \
    	MOVD	$(offset+16*6), rtmp  \
    	STVX	V26, (rtmp)(R1)       \
    	MOVD	$(offset+16*7), rtmp  \
    	STVX	V27, (rtmp)(R1)       \
    	MOVD	$(offset+16*8), rtmp  \
    	STVX	V28, (rtmp)(R1)       \
    	MOVD	$(offset+16*9), rtmp  \
    	STVX	V29, (rtmp)(R1)       \
    	MOVD	$(offset+16*10), rtmp \
    	STVX	V30, (rtmp)(R1)       \
    	MOVD	$(offset+16*11), rtmp \
    	STVX	V31, (rtmp)(R1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 03 20:17:02 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  7. src/runtime/rt0_linux_loong64.s

    	MOVW	0(R3), R4	// argc
    	ADDV	$8, R3, R5	// argv
    	JMP	main(SB)
    
    // When building with -buildmode=c-shared, this symbol is called when the shared
    // library is loaded.
    TEXT _rt0_loong64_linux_lib(SB),NOSPLIT,$168
    	// Preserve callee-save registers.
    	SAVE_R22_TO_R31(3*8)
    	SAVE_F24_TO_F31(13*8)
    
    	// Initialize g as nil in case of using g later e.g. sigaction in cgo_sigaction.go
    	MOVV	R0, g
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 10 15:50:43 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. src/runtime/sys_solaris_amd64.s

    	// Note that we are executing on altsigstack here, so we have
    	// more stack available than NOSPLIT would have us believe.
    	// To defeat the linker, we make our own stack frame with
    	// more space:
    	SUBQ    $168, SP
    	// save registers
    	MOVQ    BX, 24(SP)
    	MOVQ    BP, 32(SP)
    	MOVQ	R12, 40(SP)
    	MOVQ	R13, 48(SP)
    	MOVQ	R14, 56(SP)
    	MOVQ	R15, 64(SP)
    
    	get_tls(BX)
    	// check that g exists
    	MOVQ	g(BX), R10
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:29:00 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  9. src/crypto/aes/gcm_amd64.s

    	MOVOU (16*3)(KS), T0
    	AESENC T0, B0
    	MOVOU (16*4)(KS), T0
    	AESENC T0, B0
    	MOVOU (16*5)(KS), T0
    	AESENC T0, B0
    	MOVOU (16*6)(KS), T0
    	AESENC T0, B0
    	MOVOU (16*7)(KS), T0
    	AESENC T0, B0
    	MOVOU (16*8)(KS), T0
    	AESENC T0, B0
    	MOVOU (16*9)(KS), T0
    	AESENC T0, B0
    	MOVOU (16*10)(KS), T0
    	CMPQ NR, $12
    	JB initEncLast
    	AESENC T0, B0
    	MOVOU (16*11)(KS), T0
    	AESENC T0, B0
    	MOVOU (16*12)(KS), T0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  10. src/math/tan.go

    //
    // ACCURACY:
    //                      Relative error:
    // arithmetic   domain     # trials      peak         rms
    //    DEC      +-1.07e9      44000      4.1e-17     1.0e-17
    //    IEEE     +-1.07e9      30000      2.9e-16     8.1e-17
    //
    // Partial loss of accuracy begins to occur at x = 2**30 = 1.074e9.  The loss
    // is not gradual, but jumps suddenly to about 1 part in 10e7.  Results may
    // be meaningless for x > 2**49 = 5.6e14.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 08 17:27:54 UTC 2022
    - 3.7K bytes
    - Viewed (0)
Back to top