Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for virtual (0.2 sec)

  1. src/cmd/cgo/internal/swig/testdata/callback/main.swigcxx

    /* Copyright 2011 The Go Authors. All rights reserved.
       Use of this source code is governed by a BSD-style
       license that can be found in the LICENSE file.  */
    
    /* An example of writing a C++ virtual function in Go.  */
    
    %module(directors="1") callback
    
    %{
    #include <string>
    #include "main.h"
    %}
    
    %include "std_string.i"
    
    %feature("director");
    
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri May 12 12:00:07 GMT 2023
    - 366 bytes
    - Viewed (0)
  2. doc/asm.html

    <code>foo+4(SB)</code> is four bytes past the start of <code>foo</code>.
    </p>
    
    <p>
    The <code>FP</code> pseudo-register is a virtual frame pointer
    used to refer to function arguments.
    The compilers maintain a virtual frame pointer and refer to the arguments on the stack as offsets from that pseudo-register.
    Thus <code>0(FP)</code> is the first argument to the function,
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Tue Nov 28 19:15:27 GMT 2023
    - 36.3K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/swig/testdata/callback/main.h

    // Copyright 2011 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    class Callback {
    public:
    	virtual ~Callback() { }
    	virtual std::string run() { return "Callback::run"; }
    };
    
    class Caller {
    private:
    	Callback *callback_;
    public:
    	Caller(): callback_(0) { }
    	~Caller() { delCallback(); }
    	void delCallback() { delete callback_; callback_ = 0; }
    C
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri May 12 12:00:07 GMT 2023
    - 529 bytes
    - Viewed (0)
  4. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const IFT_VIRTUALIPADDRESS = 112
    pkg syscall (netbsd-arm64-cgo), const IFT_VIRTUALIPADDRESS ideal-int
    pkg syscall (netbsd-arm64-cgo), const IFT_VIRTUALTG = 202
    pkg syscall (netbsd-arm64-cgo), const IFT_VIRTUALTG ideal-int
    pkg syscall (netbsd-arm64-cgo), const IFT_VOICEDID = 213
    pkg syscall (netbsd-arm64-cgo), const IFT_VOICEDID ideal-int
    pkg syscall (netbsd-arm64-cgo), const IFT_VOICEEM = 100
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/asm/parse.go

    	errorLine     int   // Line number of last error.
    	errorCount    int   // Number of errors.
    	sawCode       bool  // saw code in this file (as opposed to comments and blank lines)
    	pc            int64 // virtual PC; count of Progs; doesn't advance for GLOBL or DATA.
    	input         []lex.Token
    	inputPos      int
    	pendingLabels []string // Labels to attach to next instruction.
    	labels        map[string]*obj.Prog
    	toPatch       []Patch
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Feb 21 14:34:57 GMT 2024
    - 36.9K bytes
    - Viewed (0)
  6. api/go1.1.txt

    pkg syscall (netbsd-386), const IFT_V37 = 120
    pkg syscall (netbsd-386), const IFT_VDSL = 97
    pkg syscall (netbsd-386), const IFT_VIRTUALIPADDRESS = 112
    pkg syscall (netbsd-386), const IFT_VIRTUALTG = 202
    pkg syscall (netbsd-386), const IFT_VOICEDID = 213
    pkg syscall (netbsd-386), const IFT_VOICEEM = 100
    pkg syscall (netbsd-386), const IFT_VOICEEMFGD = 211
    pkg syscall (netbsd-386), const IFT_VOICEENCAP = 103
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
  7. api/go1.2.txt

    pkg syscall (netbsd-386), const IFT_V37 ideal-int
    pkg syscall (netbsd-386), const IFT_VDSL ideal-int
    pkg syscall (netbsd-386), const IFT_VIRTUALIPADDRESS ideal-int
    pkg syscall (netbsd-386), const IFT_VIRTUALTG ideal-int
    pkg syscall (netbsd-386), const IFT_VOICEDID ideal-int
    pkg syscall (netbsd-386), const IFT_VOICEEM ideal-int
    pkg syscall (netbsd-386), const IFT_VOICEEMFGD ideal-int
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Oct 18 04:36:59 GMT 2013
    - 1.9M bytes
    - Viewed (2)
Back to top