Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 93 for perblock (0.34 sec)

  1. src/cmd/compile/internal/ssa/func_test.go

    	blocks := make(map[string]*Block)
    	values := make(map[string]*Value)
    	// Create all the blocks and values.
    	for _, bloc := range blocs {
    		b := f.NewBlock(bloc.control.kind)
    		blocks[bloc.name] = b
    		for _, valu := range bloc.valus {
    			// args are filled in the second pass.
    			values[valu.name] = b.NewValue0IA(src.NoXPos, valu.op, valu.t, valu.auxint, valu.aux)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:01:04 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/func.go

    	id := v.ID
    	if v.InCache {
    		f.unCache(v)
    	}
    	*v = Value{}
    	v.ID = id
    	v.argstorage[0] = f.freeValues
    	f.freeValues = v
    }
    
    // NewBlock allocates a new Block of the given kind and places it at the end of f.Blocks.
    func (f *Func) NewBlock(kind BlockKind) *Block {
    	var b *Block
    	if f.freeBlocks != nil {
    		b = f.freeBlocks
    		f.freeBlocks = b.succstorage[0].b
    		b.succstorage[0].b = nil
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/report/source.go

    	Flat         string
    	Cumulative   string
    	Instructions []WebListInstruction
    }
    
    // WebListInstruction holds the per-instruction information for HTML source code listing.
    type WebListInstruction struct {
    	NewBlock     bool // Insert marker that indicates separation from previous block
    	Flat         string
    	Cumulative   string
    	Synthetic    bool
    	Address      uint64
    	Disasm       string
    	FileLine     string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/css/manual.css

    }
    
    .subheader,
    .admonitionblock td.content>.title,
    .audioblock>.title,
    .exampleblock>.title,
    .imageblock>.title,
    .listingblock>.title,
    .literalblock>.title,
    .stemblock>.title,
    .openblock>.title,
    .paragraph>.title,
    .quoteblock>.title,
    table.tableblock>.title,
    .verseblock>.title,
    .videoblock>.title,
    .dlist>.title,
    .olist>.title,
    .ulist>.title,
    .qlist>.title,
    .hdlist>.title {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

                    // K1 creates a fake expression in this case.
                    whenRef.value.subject?.findSourceKtExpressionForCallArgument()
                // FirBlock is a fake container for desugared expressions like `++index` or `++list[0]`
                is FirBlock -> psi as? KtExpression
                else -> realPsi as? KtExpression
            }
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/debug.go

    	// Run through the function in program text order, building up location
    	// lists as we go. The heavy lifting has mostly already been done.
    
    	var prevBlock *Block
    	for _, b := range state.f.Blocks {
    		state.mergePredecessors(b, blockLocs, prevBlock, true)
    
    		// Handle any differences among predecessor blocks and previous block (perhaps not a predecessor)
    		for _, varID := range state.changedVars.contents() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  7. src/archive/tar/reader_test.go

    			t.Errorf("test %d, Header.Size = %d, want %d", i, hdr.Size, v.wantSize)
    		}
    	}
    }
    
    func TestReadGNUSparsePAXHeaders(t *testing.T) {
    	padInput := func(s string) string {
    		return s + string(zeroBlock[:blockPadding(int64(len(s)))])
    	}
    
    	vectors := []struct {
    		inputData string
    		inputHdrs map[string]string
    		wantMap   sparseDatas
    		wantSize  int64
    		wantName  string
    		wantErr   error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 21 21:14:38 UTC 2022
    - 47.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/convert_control_to_data_outputs.cc

             func.getNumArguments());
      auto graph_op = cast<GraphOp>(func.front().front());
    
      auto fetch = graph_op.GetFetch();
      OpBuilder builder_chain_src(fetch);
      builder_chain_src.setInsertionPointToStart(fetch->getBlock());
    
      OpBuilder builder_chain_sink(fetch);
      int chain_index = num_old_outputs;
    
      // Iterate over all equivalence classes.
      for (auto class_iter = resource_equivalence_classes.begin();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  9. src/cmd/link/internal/amd64/asm.go

    		v |= 0 << 25
    
    	case 2:
    		v |= 1 << 25
    
    	case 4:
    		v |= 2 << 25
    
    	case 8:
    		v |= 3 << 25
    	}
    
    	out.Write32(uint32(sectoff))
    	out.Write32(v)
    	return true
    }
    
    func pereloc1(arch *sys.Arch, out *ld.OutBuf, ldr *loader.Loader, s loader.Sym, r loader.ExtReloc, sectoff int64) bool {
    	var v uint32
    
    	rs := r.Xsym
    	rt := r.Type
    
    	if ldr.SymDynid(rs) < 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 21K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/FirReferenceResolveHelper.kt

        ): List<KaSymbol> {
            // Handle situation when we're in the middle/beginning of qualifier
            // <caret>A.B.C.foo() or A.<caret>B.C.foo()
            // NB: in this case we get some parent FIR, like FirBlock, FirProperty, FirFunction or the like
            var parent = expression.parent as? KtDotQualifiedExpression
            var unresolvedCounter = 1
            while (parent != null) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 37K bytes
    - Viewed (0)
Back to top