Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 882 for pointerT (0.13 sec)

  1. test/gcgort.go

    	case a.name == "":
    		return errors.New("modifier without name")
    	case a.t == nil:
    		return errors.New(a.name + " missing t")
    	case a.pointerT == nil:
    		return errors.New(a.name + " missing pointerT")
    	case a.arrayT == nil:
    		return errors.New(a.name + " missing arrayT")
    	case a.sliceT == nil:
    		return errors.New(a.name + " missing sliceT")
    	case a.mapT == nil:
    		return errors.New(a.name + " missing mapT")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 08 21:15:48 UTC 2018
    - 34.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-printers.h

      }
    
      if (count > 0) {
        *os << ' ';
      }
      *os << '}';
    }
    
    // Used to print a pointer that is neither a char pointer nor a member
    // pointer, when the user doesn't define PrintTo() for it.  (A member
    // variable pointer or member function pointer doesn't really point to
    // a location in the address space.  Their representation is
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 30.9K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-printers.h

      }
    
      if (count > 0) {
        *os << ' ';
      }
      *os << '}';
    }
    
    // Used to print a pointer that is neither a char pointer nor a member
    // pointer, when the user doesn't define PrintTo() for it.  (A member
    // variable pointer or member function pointer doesn't really point to
    // a location in the address space.  Their representation is
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  4. src/go/printer/printer.go

    	commentNewline bool              // true if the comment group contains newlines
    }
    
    type printer struct {
    	// Configuration (does not change after initialization)
    	Config
    	fset *token.FileSet
    
    	// Current state
    	output       []byte       // raw printer result
    	indent       int          // current indentation
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 41.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/syntax/printer.go

    // that takes care of accounting and error handling.
    func (p *printer) write(data []byte) {
    	n, err := p.output.Write(data)
    	p.written += n
    	if err != nil {
    		panic(writeError{err})
    	}
    }
    
    var (
    	tabBytes    = []byte("\t\t\t\t\t\t\t\t")
    	newlineByte = []byte("\n")
    	blankByte   = []byte(" ")
    )
    
    func (p *printer) writeBytes(data []byte) {
    	if len(data) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 24 07:17:27 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  6. src/runtime/runtime-gdb.py

    	"""
    	find_goroutine attempts to find the goroutine identified by goid.
    	It returns a tuple of gdb.Value's representing the stack pointer
    	and program counter pointer for the goroutine.
    
    	@param int goid
    
    	@return tuple (gdb.Value, gdb.Value)
    	"""
    	vp = gdb.lookup_type('void').pointer()
    	for ptr in SliceValue(gdb.parse_and_eval("'runtime.allgs'")):
    		if ptr['atomicstatus']['value'] == G_DEAD:
    			continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 10 12:59:20 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  7. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/symbols/AbstractSymbolTest.kt

        private fun assertSymbolPointer(pointer: KaSymbolPointer<*>, testServices: TestServices) {
            testServices.assertions.assertTrue(value = pointer.pointsToTheSameSymbolAs(pointer)) {
                "The symbol is not equal to itself: ${pointer::class}"
            }
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  8. src/runtime/mgcstack.go

    // pointer. We call these variables "stack objects".
    //
    // We begin by determining all the stack objects on the stack and all
    // the statically live pointers that may point into the stack. We then
    // process each pointer to see if it points to a stack object. If it
    // does, we scan that stack object. It may contain pointers into the
    // heap, in which case those pointers are passed to the main garbage
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 21 21:06:52 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  9. src/runtime/map_fast32.go

    			}
    			// Only clear key if there are pointers in it.
    			// This can only happen if pointers are 32 bit
    			// wide as 64 bit pointers do not fit into a 32 bit key.
    			if goarch.PtrSize == 4 && t.Key.Pointers() {
    				// The key must be a pointer as we checked pointers are
    				// 32 bits wide and the key is 32 bits wide also.
    				*(*unsafe.Pointer)(k) = nil
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  10. src/runtime/mbarrier.go

    // pointer (because it doesn't know it's not a heap pointer).
    //
    //
    // Global writes:
    //
    // The Go garbage collector requires write barriers when heap pointers
    // are stored in globals. Many garbage collectors ignore writes to
    // globals and instead pick up global -> heap pointers during
    // termination. This increases pause time, so we instead rely on write
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
Back to top