Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for macao (0.12 sec)

  1. api/go1.10.txt

    pkg debug/macho, const FlagBindsToWeak uint32
    pkg debug/macho, const FlagCanonical = 16384
    pkg debug/macho, const FlagCanonical uint32
    pkg debug/macho, const FlagDeadStrippableDylib = 4194304
    pkg debug/macho, const FlagDeadStrippableDylib uint32
    pkg debug/macho, const FlagDyldLink = 4
    pkg debug/macho, const FlagDyldLink uint32
    pkg debug/macho, const FlagForceFlat = 256
    pkg debug/macho, const FlagForceFlat uint32
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Tue Feb 06 05:00:01 GMT 2018
    - 30.1K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/lex/input.go

    }
    
    // invokeMacro pushes onto the input Stack a Slice that holds the macro definition with the actual
    // parameters substituted for the formals.
    // Invoking a macro does not touch the PC/line history.
    func (in *Input) invokeMacro(macro *Macro) {
    	// If the macro has no arguments, just substitute the text.
    	if macro.args == nil {
    		in.Push(NewSlice(in.Base(), in.Line(), macro.tokens))
    		return
    	}
    	tok := in.Stack.Next()
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Aug 29 07:48:38 GMT 2023
    - 12.6K bytes
    - Viewed (0)
  3. doc/asm.html

    In the runtime package, assembly code can include <code>go_tls.h</code>, which defines
    an OS- and architecture-dependent macro <code>get_tls</code> for accessing this register.
    The <code>get_tls</code> macro takes one argument, which is the register to load the
    <code>g</code> pointer into.
    </p>
    
    <p>
    For example, the sequence to load <code>g</code> and <code>m</code>
    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. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleUserManualPlugin.java

            Map<String, Object> attributes = new HashMap<>();
            attributes.put("source-highlighter", "coderay");
            attributes.put("toc", "macro");
            attributes.put("toclevels", 2);
    
            // TODO: This breaks if version is changed later
            String versionUrl = DOCS_GRADLE_ORG + project.getVersion();
    Java
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Fri Mar 01 05:46:51 GMT 2024
    - 17.7K bytes
    - Viewed (0)
  5. api/go1.11.txt

    pkg debug/elf, const R_RISCV_TPREL_S R_RISCV
    pkg debug/elf, method (R_RISCV) GoString() string
    pkg debug/elf, method (R_RISCV) String() string
    pkg debug/elf, type R_RISCV int
    pkg debug/macho, const CpuArm64 = 16777228
    pkg debug/macho, const CpuArm64 Cpu
    pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_ARCHITECTURE = 7
    pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_ARCHITECTURE ideal-int
    pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_BASERELOC = 5
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Wed Aug 22 03:48:56 GMT 2018
    - 25K bytes
    - Viewed (2)
  6. src/cmd/asm/internal/asm/testdata/mips64.s

    //	LAND/LXOR/LOR imm ',' rreg
    //	{
    //		outcode(int($1), &$2, 0, &$4);
    //	}
    	AND	$11, R17, R7	// 3227000b
    	XOR	$341, R1, R23	// 38370155
    	OR	$254, R25, R13	// 372d00fe
    //
    // move immediate: macro for lui+or, addi, addis, and other combinations
    //
    //	LMOVW imm ',' rreg
    //	{
    //		outcode(int($1), &$2, 0, &$4);
    //	}
    	MOVW	$1, R1
    	MOVV	$1, R1
    
    //	LMOVW ximm ',' rreg
    //	{
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Aug 08 12:17:12 GMT 2023
    - 12.4K bytes
    - Viewed (0)
Back to top