Lines Matching refs:b
323 func Benchmark_parseNinjaString(b *testing.B) {
324 b.Run("constant", func(b *testing.B) {
326 b.Run(strconv.Itoa(l), func(b *testing.B) {
327 b.ReportAllocs()
328 for n := 0; n < b.N; n++ {
334 b.Run("variable", func(b *testing.B) {
338 b.Run(strconv.Itoa(l), func(b *testing.B) {
339 b.ReportAllocs()
340 for n := 0; n < b.N; n++ {
346 b.Run("variables", func(b *testing.B) {
354 b.Run(strconv.Itoa(l), func(b *testing.B) {
355 b.ReportAllocs()
356 for n := 0; n < b.N; n++ {
365 func BenchmarkNinjaString_Value(b *testing.B) {
366 b.Run("constant", func(b *testing.B) {
369 b.Run(strconv.Itoa(l), func(b *testing.B) {
370 b.ReportAllocs()
371 for n := 0; n < b.N; n++ {
377 b.Run("variable", func(b *testing.B) {
382 b.Run(strconv.Itoa(l), func(b *testing.B) {
383 b.ReportAllocs()
384 for n := 0; n < b.N; n++ {
390 b.Run("variables", func(b *testing.B) {
399 b.Run(strconv.Itoa(l), func(b *testing.B) {
400 b.ReportAllocs()
401 for n := 0; n < b.N; n++ {