Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for OnesCount64 (0.1 sec)

  1. src/runtime/gc_test.go

    		// This is a serious bug - an object is live (due to the KeepAlive
    		// call below), but isn't reported as such.
    		t.Fatalf("live object not in reachable set; want %b, got %b", want, got)
    	}
    	if bits.OnesCount64(got&^want) > 1 {
    		// Note: we can occasionally have a value that is retained even though
    		// it isn't live, due to conservative scanning of stack frames.
    		// See issue 67204. For now, we allow a "slop" of 1 unintentionally
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 22:33:52 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    			// Merge results.
    			s.startBlock(bEnd)
    			return s.variable(n, types.Types[types.TINT])
    		}
    	}
    	addF("math/bits", "OnesCount64",
    		makeOnesCountAMD64(ssa.OpPopCount64),
    		sys.AMD64)
    	addF("math/bits", "OnesCount64",
    		func(s *state, n *ir.CallExpr, args []*ssa.Value) *ssa.Value {
    			return s.newValue1(ssa.OpPopCount64, types.Types[types.TINT], args[0])
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top