Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for aarch64 (0.14 sec)

  1. misc/go_android_exec/README

    C compiler from the Android NDK. For example,
    
    	CGO_ENABLED=1 \
    	GOOS=android \
    	GOARCH=arm64 \
    	CC_FOR_TARGET=$NDK/toolchains/llvm/prebuilt/linux-x86_64/bin/aarch64-linux-android21-clang \
    	./all.bash
    
    To run tests on the Android device, add the bin directory to PATH so the
    go tool can find the go_android_$GOARCH_exec wrapper generated by
    make.bash. For example, to run the go1 benchmarks
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon May 01 14:45:55 GMT 2023
    - 732 bytes
    - Viewed (0)
  2. src/cmd/asm/internal/arch/arm64.go

    	default:
    		return 0, errors.New("invalid arrangement in ARM64 register list")
    	}
    	return (int64(curQ) & 1 << 30) | (int64(curSize&3) << 10), nil
    }
    
    // ARM64RegisterListOffset generates offset encoding according to AArch64 specification.
    func ARM64RegisterListOffset(firstReg, regCnt int, arrangement int64) (int64, error) {
    	offset := int64(firstReg)
    	switch regCnt {
    	case 1:
    		offset |= 0x7 << 12
    	case 2:
    		offset |= 0xa << 12
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Sep 29 09:04:58 GMT 2022
    - 10.4K bytes
    - Viewed (0)
  3. api/go1.16.txt

    pkg debug/elf, const DT_VERDEF DynTag
    pkg debug/elf, const DT_VERDEFNUM = 1879048189
    pkg debug/elf, const DT_VERDEFNUM DynTag
    pkg debug/elf, const PT_AARCH64_ARCHEXT = 1879048192
    pkg debug/elf, const PT_AARCH64_ARCHEXT ProgType
    pkg debug/elf, const PT_AARCH64_UNWIND = 1879048193
    pkg debug/elf, const PT_AARCH64_UNWIND ProgType
    pkg debug/elf, const PT_ARM_ARCHEXT = 1879048192
    pkg debug/elf, const PT_ARM_ARCHEXT ProgType
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Viewed (0)
Back to top