Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 52 for bigcall (0.12 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/FirReferenceResolveHelper.kt

            val firCall = ktCallExpression.getOrBuildFir(analysisSession.firResolveSession)?.unwrapSafeCall() as? FirCall ?: return emptyList()
            val parameter = firCall.findCorrespondingParameter(ktValueArgumentName.asName) ?: return emptyList()
            return listOfNotNull(parameter.buildSymbol(symbolBuilder))
        }
    
        private fun FirCall.findCorrespondingParameter(name: Name): FirValueParameter? {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 37K bytes
    - Viewed (0)
  2. src/go/types/assignments.go

    	// error message don't handle it as n:n mapping below.
    	isCall := false
    	if r == 1 {
    		_, isCall = ast.Unparen(orig_rhs[0]).(*ast.CallExpr)
    	}
    
    	// If we have a n:n mapping from lhs variable to rhs expression,
    	// each value can be assigned to its corresponding variable.
    	if l == r && !isCall {
    		var x operand
    		for i, lhs := range lhs {
    			desc := lhs.name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/assignments.go

    	// error message don't handle it as n:n mapping below.
    	isCall := false
    	if r == 1 {
    		_, isCall = syntax.Unparen(orig_rhs[0]).(*syntax.CallExpr)
    	}
    
    	// If we have a n:n mapping from lhs variable to rhs expression,
    	// each value can be assigned to its corresponding variable.
    	if l == r && !isCall {
    		var x operand
    		for i, lhs := range lhs {
    			desc := lhs.name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 23 21:21:43 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  4. src/runtime/syscall_aix.go

    //
    //go:nosplit
    //go:cgo_unsafe_args
    //go:linkname syscall_syscall6
    func syscall_syscall6(fn, nargs, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2, err uintptr) {
    	c := libcall{
    		fn:   fn,
    		n:    nargs,
    		args: uintptr(unsafe.Pointer(&a1)),
    	}
    
    	entersyscallblock()
    	asmcgocall(unsafe.Pointer(&asmsyscall6), unsafe.Pointer(&c))
    	exitsyscall()
    	return c.r1, 0, c.err
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/likelyadjust.go

    			// Any name-based heuristics are only relative to other calls,
    			// and less influential than inferences from loop structure.
    		case BlockDefer:
    			local[b.ID] = blCALL
    			certain[b.ID] = max8(blCALL, certain[b.Succs[0].b.ID])
    
    		default:
    			if len(b.Succs) == 1 {
    				certain[b.ID] = certain[b.Succs[0].b.ID]
    			} else if len(b.Succs) == 2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 15.4K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/bpxsvc_zos.s

    //
    //   arg2 function offset as in
    //       doc: https://www.ibm.com/support/knowledgecenter/en/SSLTBW_3.1.0/com.ibm.zos.v3r1.bpxb100/bpx2cr_List_of_offsets.htm
    //
    // func bpxcall(plist []unsafe.Pointer, bpx_offset int64)
    
    TEXT ยทbpxcall(SB), NOSPLIT|NOFRAME, $0
    	MOVD  plist_base+0(FP), R1  // r1 points to plist
    	MOVD  bpx_offset+24(FP), R2 // r2 offset to BPX vector table
    	MOVD  R14, R7               // save r14
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  7. src/runtime/map_benchmark_test.go

    	m := make(map[BigKey]bool)
    	k := BigKey{3, 4, 5}
    	m[k] = true
    	for i := 0; i < b.N; i++ {
    		_ = m[k]
    	}
    }
    
    type BigVal [3]int64
    
    func BenchmarkBigValMap(b *testing.B) {
    	m := make(map[BigKey]BigVal)
    	k := BigKey{3, 4, 5}
    	m[k] = BigVal{6, 7, 8}
    	for i := 0; i < b.N; i++ {
    		_ = m[k]
    	}
    }
    
    func BenchmarkSmallKeyMap(b *testing.B) {
    	m := make(map[int16]bool)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 09 16:41:16 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  8. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/compilerFacility/AbstractCompilerFacilityTest.kt

    import org.jetbrains.kotlin.ir.declarations.IrAnnotationContainer
    import org.jetbrains.kotlin.ir.declarations.IrDeclarationWithName
    import org.jetbrains.kotlin.ir.declarations.IrModuleFragment
    import org.jetbrains.kotlin.ir.expressions.IrCall
    import org.jetbrains.kotlin.ir.expressions.IrFieldAccessExpression
    import org.jetbrains.kotlin.ir.symbols.UnsafeDuringIrConstructionAPI
    import org.jetbrains.kotlin.ir.util.DumpIrTreeOptions
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/lostcancel/lostcancel.go

    		//
    		//   ctx, cancel    := context.WithCancel(...)
    		//   ctx, cancel     = context.WithCancel(...)
    		//   var ctx, cancel = context.WithCancel(...)
    		//
    		if !isContextWithCancel(pass.TypesInfo, n) || !isCall(stack[len(stack)-2]) {
    			return true
    		}
    		var id *ast.Ident // id of cancel var
    		stmt := stack[len(stack)-3]
    		switch stmt := stmt.(type) {
    		case *ast.ValueSpec:
    			if len(stmt.Names) > 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 9K bytes
    - Viewed (0)
  10. src/net/rpc/server.go

    		log.Fatal("arith error:", err)
    	}
    	fmt.Printf("Arith: %d*%d=%d", args.A, args.B, reply)
    
    or
    
    	// Asynchronous call
    	quotient := new(Quotient)
    	divCall := client.Go("Arith.Divide", args, quotient, nil)
    	replyCall := <-divCall.Done	// will be equal to divCall
    	// check errors, print, etc.
    
    A server implementation will often provide a simple, type-safe wrapper for the
    client.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 21.6K bytes
    - Viewed (0)
Back to top