Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for toRType (0.18 sec)

  1. src/reflect/type.go

    func (t *interfaceType) nameOff(off aNameOff) abi.Name {
    	return toRType(&t.Type).nameOff(off)
    }
    
    func nameOffFor(t *abi.Type, off aNameOff) abi.Name {
    	return toRType(t).nameOff(off)
    }
    
    func typeOffFor(t *abi.Type, off aTypeOff) *abi.Type {
    	return toRType(t).typeOff(off)
    }
    
    func (t *interfaceType) typeOff(off aTypeOff) *abi.Type {
    	return toRType(&t.Type).typeOff(off)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  2. src/runtime/mbitmap.go

    	}
    	if typ.Size_ != size {
    		println("runtime: typeBitsBulkBarrier with type ", toRType(typ).string(), " of size ", typ.Size_, " but memory size", size)
    		throw("runtime: invalid typeBitsBulkBarrier")
    	}
    	if typ.Kind_&abi.KindGCProg != 0 {
    		println("runtime: typeBitsBulkBarrier with type ", toRType(typ).string(), " with GC prog")
    		throw("runtime: invalid typeBitsBulkBarrier")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // instead of an argument type convertible to a target type.
    //
    // The syntax for using ImplicitCast_ is the same as for static_cast:
    //
    //   ImplicitCast_<ToType>(expr)
    //
    // ImplicitCast_ would have been part of the C++ standard library,
    // but the proposal was submitted too late.  It will probably make
    // its way into the language in the future.
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // instead of an argument type convertible to a target type.
    //
    // The syntax for using ImplicitCast_ is the same as for static_cast:
    //
    //   ImplicitCast_<ToType>(expr)
    //
    // ImplicitCast_ would have been part of the C++ standard library,
    // but the proposal was submitted too late.  It will probably make
    // its way into the language in the future.
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
Back to top