Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Distinguishes (0.11 sec)

  1. src/cmd/internal/obj/x86/asm6.go

    // function oclass computes the specific Ytype of an operand and then the set
    // of more general Ytypes that it satisfies is implied by the ycover table, set
    // up in instinit.  For example, oclass distinguishes the constants 0 and 1
    // from the more general 8-bit constants, but instinit says
    //
    //	ycover[Yi0*Ymax+Ys32] = 1
    //	ycover[Yi1*Ymax+Ys32] = 1
    //	ycover[Yi8*Ymax+Ys32] = 1
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/arm64/asm7.go

    	return o
    }
    
    // store(immediate)
    // scaled 12-bit unsigned immediate offset.
    // unscaled 9-bit signed immediate offset.
    // pre/post-indexed store.
    // and the 12-bit and 9-bit are distinguished in olsr12u and oslr9s.
    func (c *ctxt7) opstr(p *obj.Prog, a obj.As) uint32 {
    	enc := c.opldr(p, a)
    	switch p.As {
    	case AFMOVQ:
    		enc = enc &^ (1 << 22)
    	default:
    		enc = LD2STR(enc)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    // of the function, constant, or variable Xxx. An example of a method M with
    // receiver type T or *T is named ExampleT_M. There may be multiple examples
    // for a given function, constant, or variable, distinguished by a trailing _xxx,
    // where xxx is a suffix not beginning with an upper case letter.
    //
    // Here is an example of an example:
    //
    //	func ExamplePrintln() {
    //		Println("The output of\nthis example.")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top