Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for SIB (0.02 sec)

  1. src/cmd/vendor/golang.org/x/arch/x86/x86asm/inst.go

    	PrefixREXR      Prefix = 0x04 // extension bit R (r field in modrm)
    	PrefixREXX      Prefix = 0x02 // extension bit X (index field in sib)
    	PrefixREXB      Prefix = 0x01 // extension bit B (r/m field in modrm or base field in sib)
    	PrefixVEX2Bytes Prefix = 0xC5 // Short form of vex prefix
    	PrefixVEX3Bytes Prefix = 0xC4 // Long form of vex prefix
    )
    
    // IsREX reports whether p is a REX prefix byte.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/internal/SourceFoldersCreatorTest.groovy

            when:
            def folders = externalSourceFolders("../parent1/sibling1/src", "../parent2/sibling1/src", "../sibling2/src", "../parent1/sibling1/sib-src")
            then:
            folders.collect { it.path } ==  ["sibling1-src", "parent2-sibling1-src", "sibling2-src", "sib-src"]
        }
    
        private List<SourceFolder> regularSourceFolders() {
            _ * java.srcDirs >> [javaTree.dir]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  3. src/cmd/internal/dwarf/dwarf.go

    		if !v.IsInAbstract {
    			continue
    		}
    		putvar(ctxt, s, v, callee, abbrev, inlIndex, encbuf[:0])
    	}
    
    	// Children of this inline.
    	for _, sib := range inlChildren(callIdx, &s.InlCalls) {
    		err := putInlinedFunc(ctxt, s, sib)
    		if err != nil {
    			return err
    		}
    	}
    
    	Uleb128put(ctxt, s.Info, 0)
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 43K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/arch/x86/x86asm/gnu.go

    var gccRegName = [...]string{
    	0:    "REG0",
    	AL:   "%al",
    	CL:   "%cl",
    	BL:   "%bl",
    	DL:   "%dl",
    	AH:   "%ah",
    	CH:   "%ch",
    	BH:   "%bh",
    	DH:   "%dh",
    	SPB:  "%spl",
    	BPB:  "%bpl",
    	SIB:  "%sil",
    	DIB:  "%dil",
    	R8B:  "%r8b",
    	R9B:  "%r9b",
    	R10B: "%r10b",
    	R11B: "%r11b",
    	R12B: "%r12b",
    	R13B: "%r13b",
    	R14B: "%r14b",
    	R15B: "%r15b",
    	AX:   "%ax",
    	CX:   "%cx",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/x86/asm6.go

    	RxrEvex = 1 << 4 // AVX512 extension to REX.R/VEX.R
    	Rxw     = 1 << 3 // =1, 64-bit operand size
    	Rxr     = 1 << 2 // extend modrm reg
    	Rxx     = 1 << 1 // extend sib index
    	Rxb     = 1 << 0 // extend modrm r/m, sib base, or opcode reg
    )
    
    const (
    	// Encoding for VEX prefix in tables.
    	// The P, L, and W fields are chosen to match
    	// their eventual locations in the VEX prefix bytes.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  6. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

      <mime-type type="application/x-sibelius">
        <_comment>Sibelius</_comment>
        <magic priority="50">
          <match value="\x0FSIBELIUS" type="string" offset="0"/>
        </magic>
        <glob pattern="*.sib"/>
      </mime-type>
      <mime-type type="application/x-silverlight-app">
        <glob pattern="*.xap"/>
      </mime-type>
    
      <mime-type type="application/x-snappy-framed">
        <_comment>Snappy Framed</_comment>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
Back to top