MCPcopy Create free account

hub / github.com/davecheney/high-performance-go-workshop / functions

Functions177 in github.com/davecheney/high-performance-go-workshop

FunctionBenchmarkInc
(b *testing.B)
examples/mutex/mutex_test.go:20
FunctionBenchmarkMapLookup
(b *testing.B)
examples/benchmap/benchmap_test.go:33
FunctionBenchmarkMapLookup2
(b *testing.B)
examples/benchmap/benchmap_test.go:43
FunctionBenchmarkMathBitsPopcnt
tag::benchmark[]
examples/popcnt-intrinsic/popcnt_test.go:31
FunctionBenchmarkNilCheckElided
(b *testing.B)
examples/nilcheck/nilcheck_test.go:26
FunctionBenchmarkNilCheckNotElided
(b *testing.B)
examples/nilcheck/nilcheck_test.go:14
FunctionBenchmarkPopcnt
START OMIT
02-benchmarking/examples/popcnt/popcnt2_test.go:20
FunctionBenchmarkPopcnt
(b *testing.B)
02-benchmarking/examples/popcnt/popcnt_test.go:18
FunctionBenchmarkPopcnt
tag::benchmark[]
examples/popcnt/popcnt_nobuild.go:8
FunctionBenchmarkPopcnt
(b *testing.B)
examples/popcnt/popcnt2_test.go:22
FunctionBenchmarkPopcnt
(b *testing.B)
examples/popcnt/popcnt_test.go:18
FunctionBenchmarkPopcnt
(b *testing.B)
examples/popcnt-intrinsic/popcnt_test.go:22
FunctionBenchmarkPopcnt
(b *testing.B)
examples/popcnt-rand/popcnt_test.go:23
FunctionBenchmarkRange
(b *testing.B)
examples/range/range_test.go:13
FunctionBenchmarkRead
(b *testing.B)
02-benchmarking/examples/benchmark.go:5
FunctionBenchmarkSprintf
(b *testing.B)
examples/concat/concat_test.go:62
FunctionBenchmarkStartStop
(b *testing.B)
examples/benchstartstop/benchstartstop_test.go:10
FunctionBenchmarkStrconv
(b *testing.B)
examples/concat/concat_test.go:77
FunctionBenchmarkStringsBuilder
(b *testing.B)
examples/concat/concat_test.go:98
FunctionBenchmarkSum
(b *testing.B)
03-compiler-optimisations/examples/esc/esc_test.go:7
FunctionBenchmarkSum
(b *testing.B)
examples/esc/esc_test.go:7
MethodBounds
()
examples/mandelbrot-pkg-profile/mandelbrot.go:77
MethodBounds
()
examples/mandelbrot-runtime-pprof/mandelbrot.go:78
MethodBounds
()
examples/mandelweb/mandelweb.go:51
MethodBounds
()
examples/mandelbrot/mandelbrot.go:70
MethodBounds
()
examples/mandelbrot-buffered/mandelbrot.go:77
MethodBounds
()
examples/mandelbrot-buffered/exercise/mandelbrot.go:77
MethodBounds
()
examples/mandelbrot-trace/mandelbrot.go:77
MethodColorModel
()
examples/mandelbrot-pkg-profile/mandelbrot.go:76
MethodColorModel
()
examples/mandelbrot-runtime-pprof/mandelbrot.go:77
MethodColorModel
()
examples/mandelweb/mandelweb.go:50
MethodColorModel
()
examples/mandelbrot/mandelbrot.go:69
MethodColorModel
()
examples/mandelbrot-buffered/mandelbrot.go:76
MethodColorModel
()
examples/mandelbrot-buffered/exercise/mandelbrot.go:76
MethodColorModel
()
examples/mandelbrot-trace/mandelbrot.go:76
FunctionFib
Fib computes the n'th number in the Fibonacci series. tag::fib[]
examples/fib/fib_nobuild.go:6
FunctionFib2
(n int)
examples/fib/fib_test.go:44
MethodLoop
()
examples/ioloop.go:14
FunctionNewPoint
()
03-compiler-optimisations/examples/esc/center.go:17
FunctionNewPoint
()
examples/esc/center.go:16
FunctionTestAdd
(t *testing.T)
examples/asm/add_test.go:5
FunctionTestFib
ENDBENCH OMIT
02-benchmarking/examples/fib/fib_test.go:29
FunctionTestFib
(t *testing.T)
examples/fib/fib_test.go:34
Functionfn
()
examples/pool/pool.go:8
Functionmain
()
04-execution-tracer/examples/daisy/main.go:24
Functionmain
()
04-execution-tracer/examples/ping-pong/main.go:26
Functionmain
()
04-execution-tracer/examples/timers/main.go:18
Functionmain
()
01-profiling/examples/mutex/mutex.go:21
Functionmain
END OMIT
03-compiler-optimisations/examples/esc/sum.go:24
Functionmain
END OMIT
03-compiler-optimisations/examples/max/max.go:20
Functionmain
END OMIT
03-compiler-optimisations/examples/max/max2.go:15
Functionmain
()
examples/mandelbrot-pkg-profile/mandelbrot.go:19
Functionmain
()
examples/counter/counter.go:27
Functionmain
()
examples/mandelbrot-runtime-pprof/mandelbrot.go:19
Functionmain
tag::main[]
examples/words/main2.go:23
Functionmain
()
examples/words/main3.go:24
Functionmain
()
examples/words/main.go:17
Functionmain
()
examples/prove/foo.go:13
Functionmain
()
examples/mandelweb/mandelweb.go:18
Functionmain
()
examples/inuseallocs/main.go:16
Functionmain
()
examples/mandelbrot/mandelbrot.go:15
Functionmain
()
examples/esc/sum.go:20
Functionmain
()
examples/mandelbrot-buffered/mandelbrot.go:19
Functionmain
()
examples/mandelbrot-buffered/exercise/mandelbrot.go:19
Functionmain
()
examples/mandelbrot-trace/mandelbrot.go:19
Functionmain
end::padding[]
examples/fields/fields.go:28
Functionmain
()
examples/block/block.go:16
Functionmain
tag::main[]
examples/grow/grow.go:6
Functionmain
The prime sieve: Daisy-chain Filter processes.
examples/sieve/main.go:32
Functionmain
end::max[]
examples/inl/max.go:20
Functionmain
end::max[]
examples/inl/max3.go:21
Functionmain
end::max[]
examples/inl/max2.go:21
Functionmandelbrot
(w http.ResponseWriter, req *http.Request)
examples/mandelweb/mandelweb.go:32
FunctionnWorkersPerRowFillImg
(m *img, workers int)
examples/mandelbrot/mandelbrot.go:129
Functionpopcnt
(x uint64)
02-benchmarking/examples/popcnt/popcnt2_test.go:12
FunctionprocessRequest
(work *Work)
examples/semaphore/semaphore.go:8
Functionroot
(w http.ResponseWriter, r *http.Request)
01-profiling/examples/mutex/mutex.go:27
← previous101–177 of 177, ranked by callers