Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 24 for modifier (0.21 sec)

  1. api/go1.txt

    pkg syscall (darwin-386), const RTF_IFSCOPE ideal-int
    pkg syscall (darwin-386), const RTF_LLINFO ideal-int
    pkg syscall (darwin-386), const RTF_LOCAL ideal-int
    pkg syscall (darwin-386), const RTF_MODIFIED ideal-int
    pkg syscall (darwin-386), const RTF_MULTICAST ideal-int
    pkg syscall (darwin-386), const RTF_PINNED ideal-int
    pkg syscall (darwin-386), const RTF_PRCLONING ideal-int
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (2)
  2. api/go1.14.txt

    pkg syscall (freebsd-arm64), const RTF_LOCAL = 2097152
    pkg syscall (freebsd-arm64), const RTF_LOCAL ideal-int
    pkg syscall (freebsd-arm64), const RTF_MODIFIED = 32
    pkg syscall (freebsd-arm64), const RTF_MODIFIED ideal-int
    pkg syscall (freebsd-arm64), const RTF_MULTICAST = 8388608
    pkg syscall (freebsd-arm64), const RTF_MULTICAST ideal-int
    pkg syscall (freebsd-arm64), const RTF_PINNED = 1048576
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 508.9K bytes
    - Viewed (0)
  3. doc/asm.html

    <code>R27</code> and <code>R28</code> are reserved by the compiler and linker.
    <code>R29</code> is the frame pointer.
    <code>R30</code> is the link register.
    </p>
    
    <p>
    Instruction modifiers are appended to the instruction following a period.
    The only modifiers are <code>P</code> (postincrement) and <code>W</code>
    (preincrement):
    <code>MOVW.P</code>, <code>MOVW.W</code>
    </p>
    
    <p>
    Addressing modes:
    </p>
    
    <ul>
    
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Tue Nov 28 19:15:27 GMT 2023
    - 36.3K bytes
    - Viewed (0)
  4. src/bufio/scan.go

    type Scanner struct {
    	r            io.Reader // The reader provided by the client.
    	split        SplitFunc // The function to split the tokens.
    	maxTokenSize int       // Maximum size of a token; modified by tests.
    	token        []byte    // Last token returned by split.
    	buf          []byte    // Buffer used as argument to split.
    	start        int       // First non-processed byte in buf.
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Oct 23 09:06:30 GMT 2023
    - 14.2K bytes
    - Viewed (0)
  5. api/go1.20.txt

    pkg syscall (freebsd-riscv64), const RTF_LOCAL = 2097152 #53466
    pkg syscall (freebsd-riscv64), const RTF_LOCAL ideal-int #53466
    pkg syscall (freebsd-riscv64), const RTF_MODIFIED = 32 #53466
    pkg syscall (freebsd-riscv64), const RTF_MODIFIED ideal-int #53466
    pkg syscall (freebsd-riscv64), const RTF_MULTICAST = 8388608 #53466
    pkg syscall (freebsd-riscv64), const RTF_MULTICAST ideal-int #53466
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Feb 17 21:23:32 GMT 2023
    - 602.6K bytes
    - Viewed (0)
  6. src/archive/zip/zip_test.go

    		Name:             "foo.txt",
    		UncompressedSize: 987654321,
    		Modified:         time.Now().Local(),
    		ModifiedTime:     1234,
    		ModifiedDate:     5678,
    	}
    	fi := fh.FileInfo()
    	fh2, err := FileInfoHeader(fi)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if got, want := fh2.Modified, fh.Modified.UTC(); got != want {
    		t.Errorf("Modified: got %s, want %s\n", got, want)
    	}
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Mar 27 18:23:49 GMT 2024
    - 19.5K bytes
    - Viewed (0)
  7. src/bytes/bytes.go

    func HasSuffix(s, suffix []byte) bool {
    	return len(s) >= len(suffix) && Equal(s[len(s)-len(suffix):], suffix)
    }
    
    // Map returns a copy of the byte slice s with all its characters modified
    // according to the mapping function. If mapping returns a negative value, the character is
    // dropped from the byte slice with no replacement. The characters in s and the
    // output are interpreted as UTF-8-encoded code points.
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Feb 19 19:51:15 GMT 2024
    - 33.8K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/asm/parse.go

    			tok = p.nextToken()
    			if len(operands) == 0 && len(items) == 0 {
    				if p.arch.InFamily(sys.ARM, sys.ARM64, sys.AMD64, sys.I386, sys.RISCV64) && tok == '.' {
    					// Suffixes: ARM conditionals, RISCV rounding mode or x86 modifiers.
    					tok = p.nextToken()
    					str := p.lex.Text()
    					if tok != scanner.Ident {
    						p.errorf("instruction suffix expected identifier, found %s", str)
    					}
    					cond = cond + "." + str
    					continue
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Feb 21 14:34:57 GMT 2024
    - 36.9K bytes
    - Viewed (0)
  9. api/go1.1.txt

    pkg syscall (darwin-386), const RTF_IFSCOPE = 16777216
    pkg syscall (darwin-386), const RTF_LLINFO = 1024
    pkg syscall (darwin-386), const RTF_LOCAL = 2097152
    pkg syscall (darwin-386), const RTF_MODIFIED = 32
    pkg syscall (darwin-386), const RTF_MULTICAST = 8388608
    pkg syscall (darwin-386), const RTF_PINNED = 1048576
    pkg syscall (darwin-386), const RTF_PRCLONING = 65536
    pkg syscall (darwin-386), const RTF_PROTO1 = 32768
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (1)
  10. doc/go_spec.html

    [<a href="#Go_1.20">Go 1.20</a>]
    </p>
    
    <p>
    The function <code>StringData</code> returns a pointer to the underlying bytes of the <code>str</code> argument.
    For an empty string the return value is unspecified, and may be <code>nil</code>.
    Since Go strings are immutable, the bytes returned by <code>StringData</code> must not be modified
    [<a href="#Go_1.20">Go 1.20</a>].
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu May 02 22:43:51 GMT 2024
    - 279.6K bytes
    - Viewed (0)
Back to top