Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for text_64 (0.71 sec)

  1. src/index/suffixarray/suffixarray.go

    // [Index] creation time is O(N) for N = len(data).
    func New(data []byte) *Index {
    	ix := &Index{data: data}
    	if len(data) <= maxData32 {
    		ix.sa.int32 = make([]int32, len(data))
    		text_32(data, ix.sa.int32)
    	} else {
    		ix.sa.int64 = make([]int64, len(data))
    		text_64(data, ix.sa.int64)
    	}
    	return ix
    }
    
    // writeInt writes an int x to w using buf to buffer the write.
    func writeInt(w io.Writer, buf []byte, x int) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  2. src/runtime/pprof/testdata/test64

    Russ Cox <******@****.***> 1488850797 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 08 01:09:18 UTC 2017
    - 760 bytes
    - Viewed (0)
  3. src/go/doc/comment/testdata/text6.txt

    Russ Cox <******@****.***> 1649017278 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:45 UTC 2022
    - 919 bytes
    - Viewed (0)
  4. src/go/doc/comment/testdata/text4.txt

    Russ Cox <******@****.***> 1649017278 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:45 UTC 2022
    - 937 bytes
    - Viewed (0)
  5. test/fixedbugs/issue12577.go

    	test32(-0.0)
    	test32(x0)
    	test32(x1)
    	test32(x2)
    	test32(x3)
    
    	if f := -y0; f != 0 || !math.Signbit(f) {
    		println("BUG: got", f, "want -0.0")
    	}
    
    	test64(-0.0)
    	test64(y0)
    	test64(y1)
    	test64(y2)
    	test64(y3)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 20 22:11:11 UTC 2015
    - 1011 bytes
    - Viewed (0)
  6. test/fixedbugs/issue24449.go

    	}
    	if len(a) <= len(b) {
    		atomic.AddInt64(&cnt64, 16)
    	}
    	return atomic.LoadInt64(&cnt64) == 31
    }
    
    func main() {
    	if !test32([]int{}, []int{}) {
    		panic("test32")
    	}
    	if !test64([]int{}, []int{}) {
    		panic("test64")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 20 09:44:50 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  7. test/fixedbugs/issue14651.go

    	test32(float32(m1011p149), f32(m1011p149))
    	test32(float32(m1100p149), f32(m1100p149))
    
    	test64(float64(m0000p1074), f64(m0000p1074))
    	test64(float64(m1000p1074), f64(m1000p1074))
    	test64(float64(m1001p1074), f64(m1001p1074))
    	test64(float64(m1011p1074), f64(m1011p1074))
    	test64(float64(m1100p1074), f64(m1100p1074))
    }
    
    func f32(x float64) float32 { return float32(x) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 22 17:09:29 UTC 2016
    - 1.9K bytes
    - Viewed (0)
  8. src/runtime/pprof/testdata/README

    These binaries were generated by:
    
    $ cat empty.s
    .global _start
    _start:
    $ as --32 -o empty.o empty.s && ld  --build-id -m elf_i386 -o test32 empty.o
    $ as --64 -o empty.o empty.s && ld --build-id -o test64 empty.o
    $ powerpc-linux-gnu-as -o empty.o empty.s && powerpc-linux-gnu-ld --build-id -o test32be empty.o
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 08 01:09:18 UTC 2017
    - 411 bytes
    - Viewed (0)
  9. test/armimm.go

    	return x &^ c64a
    }
    
    // Note: x-c gets rewritten to x+(-c), so SUB and SBC are not directly testable.
    // I disabled that rewrite rule before running this test.
    
    func main() {
    	test32()
    	test64()
    }
    
    func test32() {
    	var a uint32 = 0x11111111
    	var want, got uint32
    	if want, got = a+c32a, add32a(a); got != want {
    		panic(fmt.Sprintf("add32a(%x) = %x, want %x", a, got, want))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 11 13:53:54 UTC 2017
    - 3.9K bytes
    - Viewed (0)
  10. src/runtime/align_runtime_test.go

    }
    
    // AtomicVariables is the set of global variables on which we perform
    // 64-bit atomic operations.
    var AtomicVariables = []unsafe.Pointer{
    	unsafe.Pointer(&ncgocall),
    	unsafe.Pointer(&test_z64),
    	unsafe.Pointer(&blockprofilerate),
    	unsafe.Pointer(&mutexprofilerate),
    	unsafe.Pointer(&gcController),
    	unsafe.Pointer(&memstats),
    	unsafe.Pointer(&sched),
    	unsafe.Pointer(&ticks),
    	unsafe.Pointer(&work),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top