Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 135 for Ra (0.02 sec)

  1. src/cmd/internal/obj/riscv/obj.go

    		// Handle register to register moves.
    		switch p.As {
    		case AMOV: // MOV Ra, Rb -> ADDI $0, Ra, Rb
    			ins.as, ins.rs1, ins.rs2, ins.imm = AADDI, uint32(p.From.Reg), obj.REG_NONE, 0
    		case AMOVW: // MOVW Ra, Rb -> ADDIW $0, Ra, Rb
    			ins.as, ins.rs1, ins.rs2, ins.imm = AADDIW, uint32(p.From.Reg), obj.REG_NONE, 0
    		case AMOVBU: // MOVBU Ra, Rb -> ANDI $255, Ra, Rb
    			ins.as, ins.rs1, ins.rs2, ins.imm = AANDI, uint32(p.From.Reg), obj.REG_NONE, 255
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  2. src/runtime/signal_freebsd_riscv64.go

    import "unsafe"
    
    type sigctxt struct {
    	info *siginfo
    	ctxt unsafe.Pointer
    }
    
    //go:nosplit
    //go:nowritebarrierrec
    func (c *sigctxt) regs() *mcontext { return &(*ucontext)(c.ctxt).uc_mcontext }
    
    func (c *sigctxt) ra() uint64  { return c.regs().mc_gpregs.gp_ra }
    func (c *sigctxt) sp() uint64  { return c.regs().mc_gpregs.gp_sp }
    func (c *sigctxt) gp() uint64  { return c.regs().mc_gpregs.gp_gp }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 03:17:13 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/util/mime.map

    audio/basic                    au snd           # Audio Sound File
    audio/x-aiff                   aif aiff aifc    # AIFF Sound File
    audio/x-midi                   mid              # MIDI Sound File
    audio/x-pn-realaudio           ra ram rm rpm    # REALAUDIO Sound File
    audio/x-wav                    wav              # WAV Sound File
    audio/x-mpegurl                mp3              # MP3 Sound File
    audio/mpeg3                    mp3              # MP3 Sound File
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 5.9K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/io/LineBufferTest.java

        bufferHelper("\n\r", "\n", "\r");
        bufferHelper("\r", "\r");
        bufferHelper("\n\n", "\n", "\n");
        bufferHelper("\r\n\r\n", "\r\n", "\r\n");
        bufferHelper("\r\r", "\r", "\r");
        bufferHelper("\ra\r\n\n\r\r", "\r", "a\r\n", "\n", "\r", "\r");
        bufferHelper("no newlines at all", "no newlines at all");
        bufferHelper("two lines\nbut no newline at end", "two lines\n", "but no newline at end");
        bufferHelper(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 4.7K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/io/LineBufferTest.java

        bufferHelper("\n\r", "\n", "\r");
        bufferHelper("\r", "\r");
        bufferHelper("\n\n", "\n", "\n");
        bufferHelper("\r\n\r\n", "\r\n", "\r\n");
        bufferHelper("\r\r", "\r", "\r");
        bufferHelper("\ra\r\n\n\r\r", "\r", "a\r\n", "\n", "\r", "\r");
        bufferHelper("no newlines at all", "no newlines at all");
        bufferHelper("two lines\nbut no newline at end", "two lines\n", "but no newline at end");
        bufferHelper(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 4.7K bytes
    - Viewed (0)
  6. pilot/pkg/model/authentication_test.go

    ) *config.Config {
    	ra := &config.Config{
    		Meta: config.Meta{
    			GroupVersionKind: gvk.RequestAuthentication,
    			Name:             name,
    			Namespace:        namespace,
    		},
    		Spec: &securityBeta.RequestAuthentication{},
    	}
    
    	if targetRef != nil {
    		ra.Spec.(*securityBeta.RequestAuthentication).TargetRef = targetRef
    	} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 45.1K bytes
    - Viewed (0)
  7. src/net/tcpsock_test.go

    			t.Fatalf("got %v; expected a proper address with zone identifier", la)
    		}
    		if ra, ok := c.RemoteAddr().(*TCPAddr); !ok || !tt.nameLookup && ra.Zone == "" {
    			t.Fatalf("got %v; expected a proper address with zone identifier", ra)
    		}
    
    		if _, err := c.Write([]byte("TCP OVER IPV6 LINKLOCAL TEST")); err != nil {
    			t.Fatal(err)
    		}
    		b := make([]byte, 32)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  8. src/runtime/sys_freebsd_riscv64.s

    	RET
    
    // func sigfwd(fn uintptr, sig uint32, info *siginfo, ctx unsafe.Pointer)
    TEXT runtime·sigfwd(SB),NOSPLIT,$0-32
    	MOVW	sig+8(FP), A0
    	MOV	info+16(FP), A1
    	MOV	ctx+24(FP), A2
    	MOV	fn+0(FP), T1
    	JALR	RA, T1
    	RET
    
    // func sigtramp(signo, ureg, ctxt unsafe.Pointer)
    TEXT runtime·sigtramp(SB),NOSPLIT,$64
    	MOVW	A0, 8(X2)
    	MOV	A1, 16(X2)
    	MOV	A2, 24(X2)
    
    	// this might be called in external code context,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (MOVWreg (SRAWconst [c] (MOVWreg x))) => (SRAWconst [c] (MOVWreg x))
    
    (MOV(WZ|W)reg (S(R|RA)Wconst [c] x)) && sizeof(x.Type) <= 32 => (S(R|RA)Wconst [c] x)
    (MOV(HZ|H)reg (S(R|RA)Wconst [c] x)) && sizeof(x.Type) <= 16 => (S(R|RA)Wconst [c] x)
    (MOV(BZ|B)reg (S(R|RA)Wconst [c] x)) && sizeof(x.Type) == 8 => (S(R|RA)Wconst [c] x)
    
    // initial right shift will handle sign/zero extend
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/text/AbstractLineChoppingStyledTextOutputTest.groovy

            System.setProperty("line.separator", "\r\n")
            def output = output()
    
            when:
            output.text('\r')
            output.text('a')
    
            then:
            result.toString() == "[\ra]"
        }
    
        def "can append new line after multiple carriage return followed by data on Windows"() {
            System.setProperty("line.separator", "\r\n")
            def output = output()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 6.4K bytes
    - Viewed (0)
Back to top