Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for rh (0.17 sec)

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

    		if rl < REG_F0 || REG_F31 < rl || rh < REG_F0 || REG_F31 < rh {
    			c.ctxt.Diag("invalid register pair %v\n", p)
    		}
    	case ALDP, ALDPW, ALDPSW:
    		if rl < REG_R0 || REG_R31 < rl || rh < REG_R0 || REG_R31 < rh {
    			c.ctxt.Diag("invalid register pair %v\n", p)
    		}
    	case ASTP, ASTPW:
    		if rl < REG_R0 || REG_R31 < rl || rh < REG_R0 || REG_R31 < rh {
    			c.ctxt.Diag("invalid register pair %v\n", p)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  2. src/net/http/server.go

    	return htmlReplacer.Replace(s)
    }
    
    // Redirect to a fixed URL
    type redirectHandler struct {
    	url  string
    	code int
    }
    
    func (rh *redirectHandler) ServeHTTP(w ResponseWriter, r *Request) {
    	Redirect(w, r, rh.url, rh.code)
    }
    
    // RedirectHandler returns a request handler that redirects
    // each request it receives to the given url using the given
    // status code.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  3. src/debug/elf/elf.go

    	EM_S390          Machine = 22  /* IBM System/390. */
    	EM_V800          Machine = 36  /* NEC V800. */
    	EM_FR20          Machine = 37  /* Fujitsu FR20. */
    	EM_RH32          Machine = 38  /* TRW RH-32. */
    	EM_RCE           Machine = 39  /* Motorola RCE. */
    	EM_ARM           Machine = 40  /* ARM. */
    	EM_SH            Machine = 42  /* Hitachi SH. */
    	EM_SPARCV9       Machine = 43  /* SPARC v9 64-bit. */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
Back to top