Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for b_cap (0.1 sec)

  1. src/go/types/builtins.go

    	// false for the evaluation of x so that we can check it afterwards.
    	// Note: We must do this _before_ calling exprList because exprList evaluates
    	//       all arguments.
    	if id == _Len || id == _Cap {
    		defer func(b bool) {
    			check.hasCallOrRecv = b
    		}(check.hasCallOrRecv)
    		check.hasCallOrRecv = false
    	}
    
    	// Evaluate arguments for built-ins that use ordinary (value) arguments.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/builtins.go

    	// false for the evaluation of x so that we can check it afterwards.
    	// Note: We must do this _before_ calling exprList because exprList evaluates
    	//       all arguments.
    	if id == _Len || id == _Cap {
    		defer func(b bool) {
    			check.hasCallOrRecv = b
    		}(check.hasCallOrRecv)
    		check.hasCallOrRecv = false
    	}
    
    	// Evaluate arguments for built-ins that use ordinary (value) arguments.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/asmdecl/asmdecl.go

    		cc = append(cc, newComponent(suffix+"_len", asmKind(arch.intSize), "slice len", off+arch.ptrSize, arch.intSize, suffix))
    		cc = append(cc, newComponent(suffix+"_cap", asmKind(arch.intSize), "slice cap", off+arch.ptrSize+arch.intSize, arch.intSize, suffix))
    
    	case asmString:
    		cc = append(cc, newComponent(suffix+"_base", asmKind(arch.ptrSize), "string base", off, arch.ptrSize, suffix))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 22.8K bytes
    - Viewed (0)
Back to top