Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for aarch64 (0.19 sec)

  1. api/go1.4.txt

    pkg debug/elf, const R_AARCH64_CALL26 R_AARCH64
    pkg debug/elf, const R_AARCH64_CONDBR19 = 280
    pkg debug/elf, const R_AARCH64_CONDBR19 R_AARCH64
    pkg debug/elf, const R_AARCH64_COPY = 1024
    pkg debug/elf, const R_AARCH64_COPY R_AARCH64
    pkg debug/elf, const R_AARCH64_GLOB_DAT = 1025
    pkg debug/elf, const R_AARCH64_GLOB_DAT R_AARCH64
    pkg debug/elf, const R_AARCH64_GOT_LD_PREL19 = 309
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 12 03:01:01 GMT 2014
    - 34K bytes
    - Viewed (0)
  2. api/go1.10.txt

    pkg debug/elf, const R_AARCH64_TLSGD_MOVW_G1 = 515
    pkg debug/elf, const R_AARCH64_TLSGD_MOVW_G1 R_AARCH64
    pkg debug/elf, const R_AARCH64_TLSLD_ADR_PAGE21 = 518
    pkg debug/elf, const R_AARCH64_TLSLD_ADR_PAGE21 R_AARCH64
    pkg debug/elf, const R_AARCH64_TLSLD_ADR_PREL21 = 517
    pkg debug/elf, const R_AARCH64_TLSLD_ADR_PREL21 R_AARCH64
    pkg debug/elf, const R_AARCH64_TLSLD_LDST128_DTPREL_LO12 = 572
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Feb 06 05:00:01 GMT 2018
    - 30.1K bytes
    - Viewed (0)
  3. 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)
  4. 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 Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Viewed (0)
  5. 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)
Back to top