Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for AntType (0.26 sec)

  1. src/cmd/cgo/out.go

    		// Get the return type of the wrapper function
    		// compiled by gcc.
    		gccResult := ""
    		if fntype.Results == nil || len(fntype.Results.List) == 0 {
    			gccResult = "void"
    		} else if len(fntype.Results.List) == 1 && len(fntype.Results.List[0].Names) <= 1 {
    			gccResult = p.cgoType(fntype.Results.List[0].Type).C.String()
    		} else {
    			fmt.Fprintf(fgcch, "\n/* Return type for %s */\n", exp.ExpName)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types/type.go

    		if f.Type.NotInHeap() {
    			t.SetNotInHeap(true)
    			break
    		}
    	}
    
    	return t
    }
    
    var (
    	IsInt     [NTYPE]bool
    	IsFloat   [NTYPE]bool
    	IsComplex [NTYPE]bool
    	IsSimple  [NTYPE]bool
    )
    
    var IsOrdered [NTYPE]bool
    
    // IsReflexive reports whether t has a reflexive equality operator.
    // That is, if x==x for all x of type t.
    func IsReflexive(t *Type) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/syntax/parser.go

    		return t
    
    	case _Func:
    		// fntype
    		p.next()
    		_, t := p.funcType("function type")
    		return t
    
    	case _Lbrack:
    		// '[' oexpr ']' ntype
    		// '[' _DotDotDot ']' ntype
    		p.next()
    		if p.got(_Rbrack) {
    			return p.sliceType(pos)
    		}
    		return p.arrayType(pos, nil)
    
    	case _Chan:
    		// _Chan non_recvchantype
    		// _Chan _Comm ntype
    		p.next()
    		t := new(ChanType)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/xcoff.go

    	Nscnum  int16  // Section number of symbol
    	Ntype   uint16 // Basic and derived type specification
    	Nsclass uint8  // Storage class of symbol
    	Nnumaux int8   // Number of auxiliary entries
    }
    
    const SYMESZ = 18
    
    const (
    	// Nscnum
    	N_DEBUG = -2
    	N_ABS   = -1
    	N_UNDEF = 0
    
    	//Ntype
    	SYM_V_INTERNAL  = 0x1000
    	SYM_V_HIDDEN    = 0x2000
    	SYM_V_PROTECTED = 0x3000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  5. src/cmd/cgo/gcc.go

    					} else {
    						n.Const = fmt.Sprintf("%#x", ints[i])
    					}
    				}
    			case "fconst":
    				if i >= len(floats) {
    					break
    				}
    				switch base(types[i]).(type) {
    				case *dwarf.IntType, *dwarf.UintType:
    					// This has an integer type so it's
    					// not really a floating point
    					// constant. This can happen when the
    					// C compiler complains about using
    					// the value as an integer constant,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  6. src/crypto/tls/tls_test.go

    			conn.Close()
    			t.Errorf("DialWithTimeout unexpectedly completed successfully")
    		} else if !isTimeoutError(err) {
    			t.Errorf("resulting error not a timeout: %v\nType %T: %#v", err, err, err)
    		}
    
    		listener.Close()
    
    		// We're looking for a timeout during the handshake, so check that the
    		// Listener actually accepted the connection to initiate it. (If the server
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/elf.go

     * padded to a word boundary.  The values of n_namesz and n_descsz do
     * not include the padding.
     */
    type elfNote struct {
    	nNamesz uint32
    	nDescsz uint32
    	nType   uint32
    }
    
    /* For accessing the fields of r_info. */
    
    /* For constructing r_info from field values. */
    
    /*
     * Relocation types.
     */
    const (
    	ARM_MAGIC_TRAMP_NUMBER = 0x5c000003
    )
    
    /*
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
Back to top