Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for GoF (0.07 sec)

  1. src/cmd/cgo/internal/testcarchive/testdata/main9.c

    #include "libgo9.h"
    
    void use(int *x) { (*x)++; }
    
    void callGoFWithDeepStack() {
    	int x[10000];
    
    	use(&x[0]);
    	use(&x[9999]);
    
    	GoF();
    
    	use(&x[0]);
    	use(&x[9999]);
    }
    
    int main() {
    	GoF();                  // call GoF without using much stack
    	callGoFWithDeepStack(); // call GoF with a deep stack
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 21:53:11 UTC 2023
    - 460 bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/testcarchive/testdata/libgo9/a.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    import "runtime"
    
    import "C"
    
    func main() {}
    
    //export GoF
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 21:53:11 UTC 2023
    - 261 bytes
    - Viewed (0)
Back to top