Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,943 for havepc (0.11 sec)

  1. src/cmd/internal/obj/pcln.go

    			}
    			havefunc[p.From.Offset/32] |= 1 << uint64(p.From.Offset%32)
    		}
    
    		if p.As == APCDATA && p.To.Offset != -1 {
    			havepc[p.From.Offset/32] |= 1 << uint64(p.From.Offset%32)
    		}
    	}
    
    	// pcdata.
    	for i := 0; i < npcdata; i++ {
    		if (havepc[i/32]>>uint(i%32))&1 == 0 {
    			// use an empty symbol.
    			pcln.Pcdata[i] = &LSym{
    				Type:      objabi.SRODATA,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 20:45:15 UTC 2022
    - 11.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/x86/x86asm/gnu.go

    			}
    			return fmt.Sprintf("%s%s", s, suffix)
    		}
    		seg := ""
    		var haveCS, haveDS, haveES, haveFS, haveGS, haveSS bool
    		switch x.Segment {
    		case CS:
    			haveCS = true
    		case DS:
    			haveDS = true
    		case ES:
    			haveES = true
    		case FS:
    			haveFS = true
    		case GS:
    			haveGS = true
    		case SS:
    			haveSS = true
    		}
    		switch inst.Op {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/telemetry/internal/counter/counter.go

    	for ; ; state = c.state.load() {
    		if !state.havePtr() {
    			// Set havePtr before updating ptr,
    			// to avoid race with the next clear of havePtr.
    			if !c.state.update(&state, state.setHavePtr()) {
    				continue
    			}
    			debugPrintf("releaseLock %s: reset havePtr (extra=%d)\n", c.name, state.extra())
    
    			// Optimization: only bother loading a new pointer
    			// if we have a value to add to it.
    			c.ptr = counterPtr{nil, nil}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. src/internal/fuzz/trace.go

    func libfuzzerTraceCmp1(arg0, arg1 uint8, fakePC uint)  {}
    func libfuzzerTraceCmp2(arg0, arg1 uint16, fakePC uint) {}
    func libfuzzerTraceCmp4(arg0, arg1 uint32, fakePC uint) {}
    func libfuzzerTraceCmp8(arg0, arg1 uint64, fakePC uint) {}
    
    func libfuzzerTraceConstCmp1(arg0, arg1 uint8, fakePC uint)  {}
    func libfuzzerTraceConstCmp2(arg0, arg1 uint16, fakePC uint) {}
    func libfuzzerTraceConstCmp4(arg0, arg1 uint32, fakePC uint) {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 12 00:12:53 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  5. src/runtime/libfuzzer.go

    	libfuzzerCallTraceIntCmp(&__sanitizer_cov_trace_const_cmp1, uintptr(arg0), uintptr(arg1), uintptr(fakePC))
    }
    
    //go:nosplit
    func libfuzzerTraceConstCmp2(arg0, arg1 uint16, fakePC uint) {
    	fakePC = fakePC % retSledSize
    	libfuzzerCallTraceIntCmp(&__sanitizer_cov_trace_const_cmp2, uintptr(arg0), uintptr(arg1), uintptr(fakePC))
    }
    
    //go:nosplit
    func libfuzzerTraceConstCmp4(arg0, arg1 uint32, fakePC uint) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 23 01:12:02 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  6. src/runtime/libfuzzer_arm64.s

    #define RARG2 R2
    #define RARG3 R3
    
    #define REPEAT_2(a) a a
    #define REPEAT_8(a) REPEAT_2(REPEAT_2(REPEAT_2(a)))
    #define REPEAT_128(a) REPEAT_2(REPEAT_8(REPEAT_8(a)))
    
    // void runtime·libfuzzerCallTraceIntCmp(fn, arg0, arg1, fakePC uintptr)
    // Calls C function fn from libFuzzer and passes 2 arguments to it after
    // manipulating the return address so that libfuzzer's integer compare hooks
    // work.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 07 14:47:46 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  7. maven-core/src/test/java/org/apache/maven/internal/aether/ReverseTreeRepositoryListenerTest.java

            RequestTrace haveIt = RequestTrace.newChild(null, "foo")
                    .newChild("bar")
                    .newChild(data)
                    .newChild("baz");
            assertThat(ReverseTreeRepositoryListener.lookupCollectStepData(haveIt), sameInstance(data));
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Apr 15 17:24:20 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. pkg/apis/core/pods/helpers_test.go

    	"k8s.io/apimachinery/pkg/util/validation/field"
    	api "k8s.io/kubernetes/pkg/apis/core"
    )
    
    func TestVisitContainersWithPath(t *testing.T) {
    	testCases := []struct {
    		description string
    		path        *field.Path
    		haveSpec    *api.PodSpec
    		wantNames   []string
    	}{
    		{
    			"empty podspec",
    			field.NewPath("spec"),
    			&api.PodSpec{},
    			[]string{},
    		},
    		{
    			"regular containers",
    			field.NewPath("spec"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 01:35:30 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  9. src/runtime/select.go

    			goto sclose
    		}
    	} else {
    		recvOK = caseSuccess
    	}
    
    	if raceenabled {
    		if casi < nsends {
    			raceReadObjectPC(c.elemtype, cas.elem, casePC(casi), chansendpc)
    		} else if cas.elem != nil {
    			raceWriteObjectPC(c.elemtype, cas.elem, casePC(casi), chanrecvpc)
    		}
    	}
    	if msanenabled {
    		if casi < nsends {
    			msanread(cas.elem, c.elemtype.Size_)
    		} else if cas.elem != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 13 21:36:04 UTC 2024
    - 15K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/walk/compare.go

    	"cmd/compile/internal/ssagen"
    	"cmd/compile/internal/typecheck"
    	"cmd/compile/internal/types"
    )
    
    func fakePC(n ir.Node) ir.Node {
    	// In order to get deterministic IDs, we include the package path, absolute filename, line number, column number
    	// in the calculation of the fakePC for the IR node.
    	hash := fnv.New32()
    	// We ignore the errors here because the `io.Writer` in the `hash.Hash` interface never returns an error.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 21:55:14 UTC 2023
    - 16.2K bytes
    - Viewed (0)
Back to top