Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for _lo (0.17 sec)

  1. api/go1.5.txt

    pkg debug/elf, const R_PPC64_ADDR16_HIGHESTA = 42
    pkg debug/elf, const R_PPC64_ADDR16_HIGHESTA R_PPC64
    pkg debug/elf, const R_PPC64_ADDR16_LO = 4
    pkg debug/elf, const R_PPC64_ADDR16_LO R_PPC64
    pkg debug/elf, const R_PPC64_ADDR16_LO_DS = 57
    pkg debug/elf, const R_PPC64_ADDR16_LO_DS R_PPC64
    pkg debug/elf, const R_PPC64_ADDR24 = 2
    pkg debug/elf, const R_PPC64_ADDR24 R_PPC64
    pkg debug/elf, const R_PPC64_ADDR32 = 1
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Jul 30 21:14:09 GMT 2015
    - 46.6K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/arch/arm.go

    	"WP": arm.C_WBIT | arm.C_PBIT,
    }
    
    var armSCOND = map[string]uint8{
    	"EQ":  arm.C_SCOND_EQ,
    	"NE":  arm.C_SCOND_NE,
    	"CS":  arm.C_SCOND_HS,
    	"HS":  arm.C_SCOND_HS,
    	"CC":  arm.C_SCOND_LO,
    	"LO":  arm.C_SCOND_LO,
    	"MI":  arm.C_SCOND_MI,
    	"PL":  arm.C_SCOND_PL,
    	"VS":  arm.C_SCOND_VS,
    	"VC":  arm.C_SCOND_VC,
    	"HI":  arm.C_SCOND_HI,
    	"LS":  arm.C_SCOND_LS,
    	"GE":  arm.C_SCOND_GE,
    	"LT":  arm.C_SCOND_LT,
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Nov 18 17:59:44 GMT 2022
    - 6.1K bytes
    - Viewed (0)
  3. api/go1.10.txt

    pkg debug/elf, const R_PPC64_PLTGOT16_HI = 54
    pkg debug/elf, const R_PPC64_PLTGOT16_HI R_PPC64
    pkg debug/elf, const R_PPC64_PLTGOT16_LO = 53
    pkg debug/elf, const R_PPC64_PLTGOT16_LO R_PPC64
    pkg debug/elf, const R_PPC64_PLTGOT_LO_DS = 66
    pkg debug/elf, const R_PPC64_PLTGOT_LO_DS R_PPC64
    pkg debug/elf, const R_PPC64_REL16DX_HA = 246
    pkg debug/elf, const R_PPC64_REL16DX_HA R_PPC64
    pkg debug/elf, const R_PPC64_REL24_NOTOC = 116
    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)
  4. api/go1.15.txt

    pkg debug/pe, const IMAGE_FILE_BYTES_REVERSED_HI = 32768
    pkg debug/pe, const IMAGE_FILE_BYTES_REVERSED_HI ideal-int
    pkg debug/pe, const IMAGE_FILE_BYTES_REVERSED_LO = 128
    pkg debug/pe, const IMAGE_FILE_BYTES_REVERSED_LO ideal-int
    pkg debug/pe, const IMAGE_FILE_DEBUG_STRIPPED = 512
    pkg debug/pe, const IMAGE_FILE_DEBUG_STRIPPED ideal-int
    pkg debug/pe, const IMAGE_FILE_DLL = 8192
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Jul 17 02:15:01 GMT 2020
    - 7.6K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/arch/arch.go

    		register[obj.Rconv(i)] = int16(i)
    	}
    	for i := mips.REG_FCR0; i <= mips.REG_FCR31; i++ {
    		register[obj.Rconv(i)] = int16(i)
    	}
    	register["HI"] = mips.REG_HI
    	register["LO"] = mips.REG_LO
    	// Pseudo-registers.
    	register["SB"] = RSB
    	register["FP"] = RFP
    	register["PC"] = RPC
    	// Avoid unintentionally clobbering g using R30.
    	delete(register, "R30")
    	register["g"] = mips.REG_R30
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Mar 21 06:51:28 GMT 2023
    - 21.3K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/arch/arm64.go

    		}
    
    		// Handle some special cases.
    		specialMapping := map[string]arm64.SpecialOperand{
    			// The internal representation of CS(CC) and HS(LO) are the same.
    			"CS": arm64.SPOP_HS,
    			"CC": arm64.SPOP_LO,
    		}
    		for s, opd := range specialMapping {
    			arm64SpecialOperand[s] = opd
    		}
    	}
    	if opd, ok := arm64SpecialOperand[name]; ok {
    		return opd
    	}
    	return arm64.SPOP_END
    }
    
    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)
  7. doc/asm.html

    and offsets match.
    On 32-bit systems, the low and high 32 bits of a 64-bit value are distinguished by adding
    a <code>_lo</code> or <code>_hi</code> suffix to the name, as in <code>arg_lo+0(FP)</code> or <code>arg_hi+4(FP)</code>.
    If a Go prototype does not name its result, the expected assembly name is <code>ret</code>.
    </p>
    
    <p>
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Nov 28 19:15:27 GMT 2023
    - 36.3K bytes
    - Viewed (0)
  8. api/except.txt

    pkg crypto/tls, type ConnectionState struct, TLSUnique //deprecated
    pkg debug/elf, const R_PPC64_SECTOFF_LO_DS = 61
    pkg encoding/json, method (*RawMessage) MarshalJSON() ([]uint8, error)
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu May 25 00:13:30 GMT 2023
    - 34.6K bytes
    - Viewed (0)
  9. api/go1.20.txt

    pkg debug/elf, const R_PPC64_SECTOFF_HI = 35 #54345
    pkg debug/elf, const R_PPC64_SECTOFF_HI R_PPC64 #54345
    pkg debug/elf, const R_PPC64_SECTOFF_LO = 34 #54345
    pkg debug/elf, const R_PPC64_SECTOFF_LO_DS = 62 #53356
    pkg debug/elf, const R_PPC64_SECTOFF_LO R_PPC64 #54345
    pkg debug/elf, const R_PPC64_SECTOFF R_PPC64 #54345
    pkg debug/elf, const R_PPC64_TPREL34 = 146 #54345
    pkg debug/elf, const R_PPC64_TPREL34 R_PPC64 #54345
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 17 21:23:32 GMT 2023
    - 602.6K bytes
    - Viewed (0)
  10. api/go1.txt

    pkg debug/elf, const R_PPC_ADDR16_LO R_PPC
    pkg debug/elf, const R_PPC_ADDR24 R_PPC
    pkg debug/elf, const R_PPC_ADDR32 R_PPC
    pkg debug/elf, const R_PPC_COPY R_PPC
    pkg debug/elf, const R_PPC_DTPMOD32 R_PPC
    pkg debug/elf, const R_PPC_DTPREL16 R_PPC
    pkg debug/elf, const R_PPC_DTPREL16_HA R_PPC
    pkg debug/elf, const R_PPC_DTPREL16_HI R_PPC
    pkg debug/elf, const R_PPC_DTPREL16_LO R_PPC
    pkg debug/elf, const R_PPC_DTPREL32 R_PPC
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
Back to top