Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for bfi1 (0.05 sec)

  1. test/codegen/bitfield.go

    	return ((x << 5) & (0xfff << 5)) >> 5
    }
    
    // bitfield ops
    // bfi
    func bfi1(x, y uint64) uint64 {
    	// arm64:"BFI\t[$]4, R[0-9]+, [$]12",-"LSL",-"LSR",-"AND"
    	return ((x & 0xfff) << 4) | (y & 0xffffffffffff000f)
    }
    
    func bfi2(x, y uint64) uint64 {
    	// arm64:"BFI\t[$]12, R[0-9]+, [$]40",-"LSL",-"LSR",-"AND"
    	return (x << 24 >> 12) | (y & 0xfff0000000000fff)
    }
    
    // bfxil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 23 06:11:32 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/arm64/anames.go

    	"ADDSW",
    	"ADDW",
    	"ADR",
    	"ADRP",
    	"AESD",
    	"AESE",
    	"AESIMC",
    	"AESMC",
    	"AND",
    	"ANDS",
    	"ANDSW",
    	"ANDW",
    	"ASR",
    	"ASRW",
    	"AT",
    	"BCC",
    	"BCS",
    	"BEQ",
    	"BFI",
    	"BFIW",
    	"BFM",
    	"BFMW",
    	"BFXIL",
    	"BFXILW",
    	"BGE",
    	"BGT",
    	"BHI",
    	"BHS",
    	"BIC",
    	"BICS",
    	"BICSW",
    	"BICW",
    	"BLE",
    	"BLO",
    	"BLS",
    	"BLT",
    	"BMI",
    	"BNE",
    	"BPL",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 18 01:40:37 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/arm64/doc.go

    Examples:
    
    	FMADDD F30, F20, F3, F29    <=>    fmadd d29, d3, d30, d20
    	FNMSUBS F7, F25, F7, F22    <=>    fnmsub s22, s7, s7, s25
    
    (4) BFI, BFXIL, SBFIZ, SBFX, UBFIZ, UBFX $<lsb>, <Rn>, $<width>, <Rd>
    
    Examples:
    
    	BFIW $16, R20, $6, R0      <=>    bfi w0, w20, #16, #6
    	UBFIZ $34, R26, $5, R20    <=>    ubfiz x20, x26, #34, #5
    
    (5) FCCMPD, FCCMPS, FCCMPED, FCCMPES <cond>, Fm. Fn, $<nzcv>
    
    Examples:
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:21:42 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  4. src/os/types.go

    // SameFile reports whether fi1 and fi2 describe the same file.
    // For example, on Unix this means that the device and inode fields
    // of the two underlying structures are identical; on other systems
    // the decision may be based on the path names.
    // SameFile only applies to results returned by this package's [Stat].
    // It returns false in other cases.
    func SameFile(fi1, fi2 FileInfo) bool {
    	fs1, ok1 := fi1.(*fileStat)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 20:52:06 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. src/os/executable_test.go

    	if !sameFile(outs, ep) {
    		t.Fatalf("Child returned %q, not the same file as %q", out, ep)
    	}
    }
    
    func sameFile(fn1, fn2 string) bool {
    	fi1, err := os.Stat(fn1)
    	if err != nil {
    		return false
    	}
    	fi2, err := os.Stat(fn2)
    	if err != nil {
    		return false
    	}
    	return os.SameFile(fi1, fi2)
    }
    
    func init() {
    	if e := os.Getenv(executable_EnvVar); e != "" {
    		// first chdir to another path
    		dir := "/"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:32 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  6. internal/ioutil/ioutil_test.go

    		t.Errorf("Error creating tmp file: %v", err)
    	}
    	tmpFile := f.Name()
    	f.Close()
    	defer os.Remove(f.Name())
    	fi1, err := os.Stat(tmpFile)
    	if err != nil {
    		t.Fatalf("Error Stat(): %v", err)
    	}
    	fi2, err := os.Stat(tmpFile)
    	if err != nil {
    		t.Fatalf("Error Stat(): %v", err)
    	}
    	if !SameFile(fi1, fi2) {
    		t.Fatal("Expected the files to be same")
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/controller_ref_test.go

    func BenchmarkGetControllerOf(b *testing.B) {
    	gvk := schema.GroupVersionKind{
    		Group:   "group",
    		Version: "v1",
    		Kind:    "Kind",
    	}
    	obj1 := &metaObj{
    		ObjectMeta: ObjectMeta{
    			UID:  "9d0cdf8a-dedc-11e9-bf91-42010a800167",
    			Name: "my-object",
    		},
    	}
    	controllerRef := NewControllerRef(obj1, gvk)
    	controllerRef2 := *controllerRef
    	controllerRef2.Controller = nil
    	obj2 := &metaObj{
    		ObjectMeta: ObjectMeta{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 05:14:33 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/arm/anames.go

    	"STREX",
    	"LDREXD",
    	"STREXD",
    	"DMB",
    	"PLD",
    	"CLZ",
    	"REV",
    	"REV16",
    	"REVSH",
    	"RBIT",
    	"XTAB",
    	"XTAH",
    	"XTABU",
    	"XTAHU",
    	"BFX",
    	"BFXU",
    	"BFC",
    	"BFI",
    	"MULWT",
    	"MULWB",
    	"MULBB",
    	"MULAWT",
    	"MULAWB",
    	"MULABB",
    	"MRC",
    	"LAST",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 16 15:58:33 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  9. src/os/stat_test.go

    	}
    	dirlinkWithSlash := dirlink + string(os.PathSeparator)
    
    	testDirStats(t, dirlinkWithSlash)
    
    	fi1, err := os.Stat(dir)
    	if err != nil {
    		t.Error(err)
    		return
    	}
    	fi2, err := os.Stat(dirlinkWithSlash)
    	if err != nil {
    		t.Error(err)
    		return
    	}
    	if !os.SameFile(fi1, fi2) {
    		t.Errorf("os.Stat(%q) and os.Stat(%q) are not the same file", dir, dirlinkWithSlash)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 22:38:03 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/sys/cpu/cpu_x86.go

    		{Name: "avx512bf16", Feature: &X86.HasAVX512BF16},
    		{Name: "amxtile", Feature: &X86.HasAMXTile},
    		{Name: "amxint8", Feature: &X86.HasAMXInt8},
    		{Name: "amxbf16", Feature: &X86.HasAMXBF16},
    		{Name: "bmi1", Feature: &X86.HasBMI1},
    		{Name: "bmi2", Feature: &X86.HasBMI2},
    		{Name: "cx16", Feature: &X86.HasCX16},
    		{Name: "erms", Feature: &X86.HasERMS},
    		{Name: "fma", Feature: &X86.HasFMA},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 4.9K bytes
    - Viewed (0)
Back to top