Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for INL (0.02 sec)

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

    Matthew Dempsky <******@****.***> 1684787115 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 22:47:15 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  2. src/cmd/internal/goobj/funcinfo.go

    	ParentPC int32
    }
    
    func (inl *InlTreeNode) Write(w *bytes.Buffer) {
    	var b [4]byte
    	writeUint32 := func(x uint32) {
    		binary.LittleEndian.PutUint32(b[:], x)
    		w.Write(b[:])
    	}
    	writeUint32(uint32(inl.Parent))
    	writeUint32(uint32(inl.File))
    	writeUint32(uint32(inl.Line))
    	writeUint32(inl.Func.PkgIdx)
    	writeUint32(inl.Func.SymIdx)
    	writeUint32(uint32(inl.ParentPC))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:28:46 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.s

    	LEAQ  64(inp), inp
    	SUBQ  $64, inl
    	MOVQ  $6, itr1
    	MOVQ  $4, itr2
    	CMPQ  inl, $192
    	JG    sealSSEMainLoop
    
    	MOVQ  inl, itr1
    	TESTQ inl, inl
    	JE    sealSSE128SealHash
    	MOVQ  $6, itr1
    	CMPQ  inl, $64
    	JBE   sealSSETail64
    	CMPQ  inl, $128
    	JBE   sealSSETail128
    	JMP   sealSSETail192
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 105.6K bytes
    - Viewed (0)
  4. src/cmd/internal/src/xpos_test.go

    	xpos := tab.XPos(orig)
    
    	pos := tab.Pos(xpos)
    	new := NewInliningBase(b1, 2)
    	pos.SetBase(new)
    	xpos = tab.XPos(pos)
    
    	pos = tab.Pos(xpos)
    	if inl := pos.Base().InliningIndex(); inl != 2 {
    		t.Fatalf("wrong inlining index: %d", inl)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  5. platforms/ide/ide-native/src/main/resources/org/gradle/ide/visualstudio/tasks/internal/default.vcxproj.filters

          </Filter>
          <Filter Include="Header Files">
            <!-- if you would like to add more endings to this pattern, make sure to also edit DefaultCppLibrary.java and DefaultCppComponent.java-->
            <Extensions>h;hpp;h++;hxx;hm;inl;inc;xsd</Extensions>
          </Filter>
          <Filter Include="Resource Files">
            <Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav</Extensions>
          </Filter>
        </ItemGroup>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 04:34:07 UTC 2023
    - 808 bytes
    - Viewed (0)
  6. src/cmd/compile/internal/inline/inlheur/scoring.go

    		var cprops *FuncProps
    		fihcprops := false
    		desercprops := false
    		if funcInlHeur, ok := fpmap[cs.Callee]; ok {
    			cprops = funcInlHeur.props
    			fihcprops = true
    		} else if cs.Callee.Inl != nil {
    			cprops = DeserializeFromString(cs.Callee.Inl.Properties)
    			desercprops = true
    		} else {
    			if base.Debug.DumpInlFuncProps != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  7. src/cmd/internal/src/pos.go

    	filename    string // file name used to open source file, for error messages
    	absFilename string // absolute file name, for PC-Line tables
    	line, col   uint   // relative line, column number at pos
    	inl         int    // inlining index (see cmd/internal/obj/inl.go)
    	fileIndex   int    // index of absFilename within PosTable.FileTable
    }
    
    // NewFileBase returns a new *PosBase for a file with the given (relative and
    // absolute) filenames.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/main/java/org/gradle/language/cpp/internal/DefaultCppComponent.java

            patterns.include("**/*.h");
            patterns.include("**/*.hpp");
            patterns.include("**/*.h++");
            patterns.include("**/*.hxx");
            patterns.include("**/*.hm");
            patterns.include("**/*.inl");
            patterns.include("**/*.inc");
            patterns.include("**/*.xsd");
            return getAllHeaderDirs().getAsFileTree().matching(patterns);
        }
    
        public FileCollection getAllHeaderDirs() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 04:34:07 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/report/report.go

    	var flatSum int64
    	for _, item := range items {
    		inl := item.InlineLabel
    		if inl != "" {
    			inl = " " + inl
    		}
    		flatSum += item.Flat
    		fmt.Fprintf(w, "%10s %s %s %10s %s  %s%s\n",
    			item.FlatFormat, measurement.Percentage(item.Flat, rpt.total),
    			measurement.Percentage(flatSum, rpt.total),
    			item.CumFormat, measurement.Percentage(item.Cum, rpt.total),
    			item.Name, inl)
    	}
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  10. test/inline_big.go

    	// Cost 16 body (need cost < 20).
    	// See cmd/compile/internal/gc/inl.go:inlineBigFunction*
    	return a[0] + a[1] + a[2] + a[3]
    }
    func medium(a []int) int { // ERROR "can inline medium with cost .* as:.*" "a does not escape"
    	// Cost 32 body (need cost > 20 and cost < 80).
    	// See cmd/compile/internal/gc/inl.go:inlineBigFunction*
    	return a[0] + a[1] + a[2] + a[3] + a[4] + a[5] + a[6] + a[7]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 18 11:58:37 UTC 2023
    - 12.7K bytes
    - Viewed (0)
Back to top