Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 97 for tstf (0.06 sec)

  1. test/ken/slicearray.go

    	tstf()
    	fy = fx[2:10]
    	tstf()
    	fy = fx[2:]
    	tstf()
    
    	lb = 0
    	hb = 8
    	fy = fx[lb:hb]
    	tstf()
    	fy = fx[lb:8]
    	tstf()
    	fy = fx[:hb]
    	tstf()
    	fy = fx[0:hb]
    	tstf()
    	fy = fx[0:8]
    	tstf()
    	fy = fx[:8]
    	tstf()
    
    	lb = 2
    	hb = 8
    	fy = fx[lb:hb]
    	tstf()
    	fy = fx[lb:8]
    	tstf()
    	fy = fx[2:hb]
    	tstf()
    	fy = fx[2:8]
    	tstf()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Dec 05 12:50:44 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  2. test/ken/sliceslice.go

    	fy = fx[lb:]
    	tstf()
    	fy = fx[:hb]
    	tstf()
    	fy = fx[0:hb]
    	tstf()
    	fy = fx[0:10]
    	tstf()
    	fy = fx[0:]
    	tstf()
    	fy = fx[:10]
    	tstf()
    	fy = fx[:]
    	tstf()
    
    	lb = 2
    	hb = 10
    	fy = fx[lb:hb]
    	tstf()
    	fy = fx[lb:10]
    	tstf()
    	fy = fx[lb:]
    	tstf()
    	fy = fx[2:hb]
    	tstf()
    	fy = fx[2:10]
    	tstf()
    	fy = fx[2:]
    	tstf()
    
    	lb = 0
    	hb = 8
    	fy = fx[lb:hb]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 05:24:24 UTC 2012
    - 2.7K bytes
    - Viewed (0)
  3. test/fixedbugs/issue5470.dir/a.go

    type Foo interface {
    	Hi() string
    }
    
    func Test1() Foo { return make(tst1) }
    
    type tst1 map[string]bool
    
    func (r tst1) Hi() string { return "Hi!" }
    
    func Test2() Foo { return make(tst2, 0) }
    
    type tst2 []string
    
    func (r tst2) Hi() string { return "Hi!" }
    
    func Test3() Foo { return make(tst3) }
    
    type tst3 chan string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 07:01:43 UTC 2013
    - 532 bytes
    - Viewed (0)
  4. test/fixedbugs/issue26438.go

    // license that can be found in the LICENSE file.
    
    // Issue 26438: arm64 backend may use 64-bit TST for
    // "if uint32(a)&uint32(b) == 0", which should be
    // 32-bit TSTW
    
    package main
    
    //go:noinline
    func tstw(a, b uint64) uint64 {
    	if uint32(a)&uint32(b) == 0 {
    		return 100
    	} else {
    		return 200
    	}
    }
    
    func main() {
    	if tstw(0xff00000000, 0xaa00000000) == 200 {
    		panic("impossible")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 18 14:15:05 UTC 2018
    - 507 bytes
    - Viewed (0)
  5. tests/integration/security/authz_test.go

    		}
    	}
    }
    
    func (tsts authzTests) Filter(keep func(authzTest) bool) authzTests {
    	out := make(authzTests, 0, len(tsts))
    	for _, tst := range tsts {
    		if keep(tst) {
    			out = append(out, tst)
    		}
    	}
    	return out
    }
    
    func (tsts authzTests) RunAll(t framework.TestContext) {
    	t.Helper()
    
    	firstTest := tsts[0]
    	if len(tsts) == 1 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  6. src/runtime/cgo/gcc_aix_ppc64.S

    	bctrl
    
    	addi	1, 1, 296
    	bl	restoreregs
    	ld	2, 40(1)
    	ld	0, 16(1)
    	mtlr	0
    	blr
    
    saveregs:
    	// Save callee-save registers
    	// O=-288; for R in {14..31}; do echo "\tstd\t$R, $O(1)"; ((O+=8)); done; for F in f{14..31}; do echo "\tstfd\t$F, $O(1)"; ((O+=8)); done
    	std	14, -288(1)
    	std	15, -280(1)
    	std	16, -272(1)
    	std	17, -264(1)
    	std	18, -256(1)
    	std	19, -248(1)
    	std	20, -240(1)
    	std	21, -232(1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 24 22:38:02 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  7. test/codegen/comparisons.go

    	// arm64:`ADD`,-`CMNW`
    	// arm:`ADD`,-`CMN`
    	c5 := b+d == 0
    	// not optimized to single TSTW/TST due to further use of a&d
    	// arm64:`AND`,-`TSTW`
    	// arm:`AND`,-`TST`
    	// 386:`ANDL`
    	c6 := a&d >= 0
    	// arm64:`TST\sR[0-9]+<<3,\sR[0-9]+`
    	c7 := e&(f<<3) < 0
    	// arm64:`CMN\sR[0-9]+<<3,\sR[0-9]+`
    	c8 := e+(f<<3) < 0
    	// arm64:`TST\sR[0-9],\sR[0-9]+`
    	c9 := e&(-19) < 0
    	if c0 {
    		return 1
    	} else if c1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 16:31:02 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  8. tensorflow/c/tf_tstring.cc

      return TF_TString_GetType(str);
    }
    
    size_t TF_StringGetSize(const TF_TString *tstr) {
      return TF_TString_GetSize(tstr);
    }
    
    size_t TF_StringGetCapacity(const TF_TString *str) {
      return TF_TString_GetCapacity(str);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 25 03:28:30 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/ppc64/asm_test.go

    	for _, tst := range tsts {
    		var expect []int
    		switch tst.output.(type) {
    		case cmplx:
    			v := tst.output.(cmplx)
    			expect = []int{v.pic, v.pic_dyn, v.dyn, v.nonpic}
    		case int:
    			expect = []int{tst.output.(int), tst.output.(int), tst.output.(int), tst.output.(int)}
    		}
    		for i := range ctxts {
    			if output := ctxts[i].aclass(&tst.arg); output != expect[i] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 09 22:14:57 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/ARM64latelower.rules

    (ORconst  [c] x) && !isARM64bitcon(uint64(c))  => (OR  x (MOVDconst [c]))
    (XORconst [c] x) && !isARM64bitcon(uint64(c))  => (XOR x (MOVDconst [c]))
    (TSTconst [c] x) && !isARM64bitcon(uint64(c))  => (TST x (MOVDconst [c]))
    (TSTWconst [c] x) && !isARM64bitcon(uint64(c)|uint64(c)<<32)  => (TSTW x (MOVDconst [int64(c)]))
    
    (CMPconst [c] x) && !isARM64addcon(c)  => (CMP x (MOVDconst [c]))
    (CMPWconst [c] x) && !isARM64addcon(int64(c))  => (CMPW x (MOVDconst [int64(c)]))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top