Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for _base (0.55 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/asmdecl/asmdecl.go

    // or a composite type itself.
    type component struct {
    	size   int
    	offset int
    	kind   asmKind
    	typ    string
    	suffix string // Such as _base for string base, _0_lo for lo half of first element of [1]uint64 on 32 bit machine.
    	outer  string // The suffix for immediately containing composite type.
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/driver/fetch.go

    	}
    
    	bases := make([]profileSource, 0, len(s.Base))
    	for _, src := range s.Base {
    		bases = append(bases, profileSource{
    			addr:   src,
    			source: s,
    		})
    	}
    
    	p, pbase, m, mbase, save, err := grabSourcesAndBases(sources, bases, o.Fetch, o.Obj, o.UI, o.HTTPTransport)
    	if err != nil {
    		return nil, err
    	}
    
    	if pbase != nil {
    		if s.DiffBase {
    			pbase.SetLabel("pprof::base", []string{"true"})
    		}
    		if s.Normalize {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/BaseIncrementalCompilationAfterFailureIntegrationTest.groovy

                    static class AllPluginsValidation {
                        final ABase base
                        AllPluginsValidation(ABase base) {
                            this.base = base
                        }
                    }
                }
            """
            run "compileGroovy"
            outputs.recompiledClasses('ABase', 'A', 'WithTrait', 'WithTrait$Trait$FieldHelper', 'WithTrait$AllPluginsValidation', 'WithTrait$Trait$Helper')
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:30 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/css/base.css

    Laura Kassovic <******@****.***> 1716614102 -0700
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/test/inl_test.go

    			t.Fatalf("build failed (%v): %s", err, b)
    		}
    		mcov := collectInlCands(string(b))
    
    		// Make sure that there aren't any functions that are marked
    		// as inline candidates at base but not with coverage.
    		for k := range mbase {
    			if _, ok := mcov[k]; !ok {
    				t.Errorf("error: did not find %s in coverage -m output", k)
    			}
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/memcombine.go

    		}
    		if x.Aux.(*types.Type).Size() != size {
    			// TODO: the constant source and consecutive load source cases
    			// do not need all the stores to be the same size.
    			return false
    		}
    		base, off := splitPtr(x.Args[0])
    		if base != rbase {
    			return false
    		}
    		a = append(a, StoreRecord{x, off})
    	}
    	// Before we sort, grab the memory arg the result should have.
    	mem := a[n-1].store.Args[2]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 19:45:41 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/named.go

    	check := t.check
    	// Ensure that the original method is type-checked.
    	if check != nil {
    		check.objDecl(origm, nil)
    	}
    
    	origSig := origm.typ.(*Signature)
    	rbase, _ := deref(origSig.Recv().Type())
    
    	// If rbase is t, then origm is already the instantiated method we're looking
    	// for. In this case, we return origm to preserve the invariant that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  8. src/go/types/named.go

    	check := t.check
    	// Ensure that the original method is type-checked.
    	if check != nil {
    		check.objDecl(origm, nil)
    	}
    
    	origSig := origm.typ.(*Signature)
    	rbase, _ := deref(origSig.Recv().Type())
    
    	// If rbase is t, then origm is already the instantiated method we're looking
    	// for. In this case, we return origm to preserve the invariant that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 24K bytes
    - Viewed (0)
  9. src/crypto/sha256/sha256block_amd64.s

    	MOVL 28(CTX), h // h = H7
    
    	JMP avx2_do_last_block
    
    done_hash:
    	VZEROUPPER
    	RET
    
    sha_ni:
    	MOVQ		dig+0(FP), digestPtr		// init digest hash vector H0, H1,..., H7 pointer
    	MOVQ		p_base+8(FP), dataPtr		// init input data base pointer
    	MOVQ		p_len+16(FP), numBytes		// get number of input bytes to hash
    	SHRQ		$6, numBytes			// force modulo 64 input buffer length
    	SHLQ		$6, numBytes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  10. src/crypto/sha1/sha1block_amd64.s

    #define ROUND4(a, b, c, d, e, index) \
    	SHUFFLE(index); \
    	FUNC4(a, b, c, d, e); \
    	MIX(a, b, c, d, e, 0xCA62C1D6)
    
    TEXT ·blockAMD64(SB),NOSPLIT,$64-32
    	MOVQ	dig+0(FP),	BP
    	MOVQ	p_base+8(FP),	SI
    	MOVQ	p_len+16(FP),	DX
    	SHRQ	$6,		DX
    	SHLQ	$6,		DX
    
    	LEAQ	(SI)(DX*1),	DI
    	MOVL	(0*4)(BP),	AX
    	MOVL	(1*4)(BP),	BX
    	MOVL	(2*4)(BP),	CX
    	MOVL	(3*4)(BP),	DX
    	MOVL	(4*4)(BP),	BP
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 31.5K bytes
    - Viewed (0)
Back to top