Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 41 for tstf (0.21 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. 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)
  6. 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)
  7. 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)
  8. src/cmd/internal/obj/arm64/anames.go

    	"SWPH",
    	"SWPLB",
    	"SWPLD",
    	"SWPLH",
    	"SWPLW",
    	"SWPW",
    	"SXTB",
    	"SXTBW",
    	"SXTH",
    	"SXTHW",
    	"SXTW",
    	"SYS",
    	"SYSL",
    	"TBNZ",
    	"TBZ",
    	"TLBI",
    	"TST",
    	"TSTW",
    	"UBFIZ",
    	"UBFIZW",
    	"UBFM",
    	"UBFMW",
    	"UBFX",
    	"UBFXW",
    	"UCVTFD",
    	"UCVTFS",
    	"UCVTFWD",
    	"UCVTFWS",
    	"UDIV",
    	"UDIVW",
    	"UMADDL",
    	"UMNEGL",
    	"UMSUBL",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 18 01:40:37 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  9. pkg/test/framework/integration/framework_test.go

    }
    
    func (tst *test) doCheck() error {
    	// Make sure the component was closed after the test's run method exited.
    	if tst.componentCloseStart.Before(tst.runEnd) {
    		return fmt.Errorf("test %s: componentCloseStart (%v) occurred before runEnd (%v)",
    			tst.name, tst.componentCloseStart, tst.runEnd)
    	}
    
    	// Make sure the component was closed before the cleanup for this test was performed.
    	if tst.cleanupStart.Before(tst.componentCloseEnd) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  10. tensorflow/c/tf_tstring.h

    TF_CAPI_EXPORT extern const char *TF_StringGetDataPointer(
        const TF_TString *tstr);
    
    TF_CAPI_EXPORT extern TF_TString_Type TF_StringGetType(const TF_TString *str);
    
    TF_CAPI_EXPORT extern size_t TF_StringGetSize(const TF_TString *tstr);
    
    TF_CAPI_EXPORT extern size_t TF_StringGetCapacity(const TF_TString *str);
    
    TF_CAPI_EXPORT extern void TF_StringDealloc(TF_TString *tstr);
    
    #ifdef __cplusplus
    } /* end extern "C" */
    #endif
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 27 21:07:00 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top