Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 56 for Func1 (0.04 sec)

  1. src/crypto/sha1/sha1block_amd64.s

    	ADDL	R9, e; \
    	MOVL	a, R8; \
    	ROLL	$5, R8; \
    	LEAL	const(e)(R10*1), e; \
    	ADDL	R8, e
    
    #define ROUND1(a, b, c, d, e, index) \
    	LOAD(index); \
    	FUNC1(a, b, c, d, e); \
    	MIX(a, b, c, d, e, 0x5A827999)
    
    #define ROUND1x(a, b, c, d, e, index) \
    	SHUFFLE(index); \
    	FUNC1(a, b, c, d, e); \
    	MIX(a, b, c, d, e, 0x5A827999)
    
    #define ROUND2(a, b, c, d, e, index) \
    	SHUFFLE(index); \
    	FUNC2(a, b, c, d, e); \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  2. src/runtime/race/output_test.go

    	data := make([]byte, 10)
    	go func() {
    		done <- string(data)
    	}()
    	data[0] = 1
    	<-done
    }
    `, []string{`
      runtime\.slicebytetostring\(\)
          .*/runtime/string\.go:.*
      main\.main\.func1\(\)
          .*/main.go:7`}},
    
    	// Test for https://golang.org/issue/33309
    	{"midstack_inlining_traceback", "run", "linux", "atexit_sleep_ms=0", `
    package main
    
    var x int
    var c chan int
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 25 20:44:25 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  3. src/go/printer/testdata/expressions.input

    		   s[i].match[0] < pos {	// earlier match already going; leftmost wins
    		   	return s
    		 }
    	}
    }
    
    func (self *T) foo(x int) *T { return self }
    
    func _() { module.Func1().Func2() }
    
    func _() {
    	_ = new(T).
    		foo(1).
    			foo(2).
    		foo(3)
    
    	_ = new(T).
    	foo(1).
    	foo(2). // inline comments
    	foo(3)
    
    	_ = new(T).foo(1).foo(2).foo(3)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 16:41:54 UTC 2017
    - 12.1K bytes
    - Viewed (0)
  4. src/internal/trace/summary_test.go

    	var (
    		hasSchedWaitTime    bool
    		hasSyncBlockTime    bool
    		hasGCMarkAssistTime bool
    	)
    
    	assertContainsGoroutine(t, summaries, "runtime.gcBgMarkWorker")
    	assertContainsGoroutine(t, summaries, "main.main.func1")
    
    	for _, summary := range summaries {
    		basicGoroutineSummaryChecks(t, summary)
    		hasSchedWaitTime = hasSchedWaitTime || summary.SchedWaitTime > 0
    		if dt, ok := summary.BlockTimeByReason["sync"]; ok && dt > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  5. src/runtime/crash_test.go

    	if !strings.HasPrefix(output, want) {
    		t.Fatalf("output does not start with %q:\n%s", want, output)
    	}
    
    	// Check functions in the traceback.
    	fns := []string{"main.pt1.func1", "panic", "main.pt2.func1", "panic", "main.pt2", "main.pt1"}
    	for _, fn := range fns {
    		re := regexp.MustCompile(`(?m)^` + regexp.QuoteMeta(fn) + `\(.*\n`)
    		idx := re.FindStringIndex(output)
    		if idx == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 19:46:10 UTC 2024
    - 27K bytes
    - Viewed (0)
  6. src/go/printer/testdata/expressions.golden

    			s[i].match[0] < pos {	// earlier match already going; leftmost wins
    			return s
    		}
    	}
    }
    
    func (self *T) foo(x int) *T	{ return self }
    
    func _()	{ module.Func1().Func2() }
    
    func _() {
    	_ = new(T).
    		foo(1).
    		foo(2).
    		foo(3)
    
    	_ = new(T).
    		foo(1).
    		foo(2).	// inline comments
    		foo(3)
    
    	_ = new(T).foo(1).foo(2).foo(3)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 16:41:54 UTC 2017
    - 12.4K bytes
    - Viewed (0)
  7. src/go/printer/testdata/expressions.raw

    			s[i].match[0] < pos {	// earlier match already going; leftmost wins
    			return s
    		}
    	}
    }
    
    func (self *T) foo(x int) *T	{ return self }
    
    func _()	{ module.Func1().Func2() }
    
    func _() {
    	_ = new(T).
    		foo(1).
    		foo(2).
    		foo(3)
    
    	_ = new(T).
    		foo(1).
    		foo(2).	// inline comments
    		foo(3)
    
    	_ = new(T).foo(1).foo(2).foo(3)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 16:41:54 UTC 2017
    - 12.4K bytes
    - Viewed (0)
  8. src/internal/trace/trace_test.go

    				{"main.main", mainLine + 11},
    			}},
    			{trace.EventStateTransition, "Goroutine Running->Waiting", []frame{
    				{"runtime.block", 0},
    				{"main.main.func1", 0},
    			}},
    			{trace.EventStateTransition, "Goroutine Running->Waiting", []frame{
    				{"runtime.chansend1", 0},
    				{"main.main.func2", 0},
    			}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  9. test/live.go

    	r = p
    	defer func() {
    		recover()
    	}()
    	printint(0) // ERROR "live at call to printint: .autotmp_[0-9]+ q r$"
    	r = q
    	return // ERROR "live at call to f41.func1: .autotmp_[0-9]+ r$"
    }
    
    func f42() {
    	var p, q, r int
    	f43([]*int{&p, &q, &r}) // ERROR "stack object .autotmp_[0-9]+ \[3\]\*int$"
    	f43([]*int{&p, &r, &q})
    	f43([]*int{&q, &p, &r})
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 18K bytes
    - Viewed (0)
  10. src/net/http/clientserver_test.go

    	}
    	gotLog := strings.TrimSpace(errorLog.String())
    	wantLog := "http: superfluous response.WriteHeader call from net/http_test.testWriteHeaderAfterWrite.func1 (clientserver_test.go:"
    	if hijack {
    		wantLog = "http: response.WriteHeader on hijacked connection from net/http_test.testWriteHeaderAfterWrite.func1 (clientserver_test.go:"
    	}
    	if !strings.HasPrefix(gotLog, wantLog) {
    		t.Errorf("stderr output = %q; want %q", gotLog, wantLog)
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 46.6K bytes
    - Viewed (0)
Back to top