Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for amir (0.15 sec)

  1. src/cmd/asm/internal/asm/testdata/arm64.s

    	MSR	R19, AFSR1_EL1                     // 335118d5
    	MRS	AIDR_EL1, R11                      // eb0039d5
    	MRS	AMAIR_EL1, R0                      // 00a338d5
    	MSR	R22, AMAIR_EL1                     // 16a318d5
    	MRS	AMAIR_EL1, R14                     // 0ea338d5
    	MSR	R0, AMAIR_EL1                      // 00a318d5
    	MRS	APDAKeyHi_EL1, R16                 // 302238d5
    	MSR	R26, APDAKeyHi_EL1                 // 3a2218d5
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 08 03:28:17 GMT 2023
    - 94.9K bytes
    - Viewed (0)
  2. src/bytes/example_test.go

    	// true
    }
    
    func ExampleHasSuffix() {
    	fmt.Println(bytes.HasSuffix([]byte("Amigo"), []byte("go")))
    	fmt.Println(bytes.HasSuffix([]byte("Amigo"), []byte("O")))
    	fmt.Println(bytes.HasSuffix([]byte("Amigo"), []byte("Ami")))
    	fmt.Println(bytes.HasSuffix([]byte("Amigo"), []byte("")))
    	// Output:
    	// true
    	// false
    	// false
    	// true
    }
    
    func ExampleIndex() {
    	fmt.Println(bytes.Index([]byte("chicken"), []byte("ken")))
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Mar 04 15:54:40 GMT 2024
    - 15K bytes
    - Viewed (1)
  3. doc/go_mem.html

    and <i>w'</i> happens before <i>r</i>.
    That is, each read must observe a value written by a preceding or concurrent write.
    </p>
    
    <p>
    Additionally, observation of acausal and “out of thin air” writes is disallowed.
    </p>
    
    <p>
    Reads of memory locations larger than a single machine word
    are encouraged but not required to meet the same semantics
    as word-sized memory locations,
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Mon Mar 04 15:54:42 GMT 2024
    - 26.6K bytes
    - Viewed (0)
Back to top