Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 70 for rtmap (0.05 sec)

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

    		}
    
    	case ssa.OpPPC64LoweredAtomicAnd8,
    		ssa.OpPPC64LoweredAtomicAnd32,
    		ssa.OpPPC64LoweredAtomicOr8,
    		ssa.OpPPC64LoweredAtomicOr32:
    		// LWSYNC
    		// LBAR/LWAR	(Rarg0), Rtmp
    		// AND/OR	Rarg1, Rtmp
    		// STBCCC/STWCCC Rtmp, (Rarg0)
    		// BNE		-3(PC)
    		ld := ppc64.ALBAR
    		st := ppc64.ASTBCCC
    		if v.Op == ssa.OpPPC64LoweredAtomicAnd32 || v.Op == ssa.OpPPC64LoweredAtomicOr32 {
    			ld = ppc64.ALWAR
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/cel/common/values.go

    		return types.MaybeNoSuchOverloadErr(other)
    	}
    	sz := types.Int(len(t.elements))
    	if sz != oMapList.Size() {
    		return types.False
    	}
    	tMap := t.getMap()
    	for it := oMapList.Iterator(); it.HasNext() == types.True; {
    		v := it.Next()
    		k := t.toMapKey(v.Value())
    		tVal, ok := tMap[k]
    		if !ok {
    			return types.False
    		}
    		eq := UnstructuredToVal(tVal, t.itemsSchema).Equal(v)
    		if eq != types.True {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:30:17 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  3. cmd/site-replication.go

    		if existingRl, ok := rMap[id]; ok {
    			clonedRl := rl.CloneNonTransition()
    			clonedRl.Transition = existingRl.Transition
    			clonedRl.NoncurrentVersionTransition = existingRl.NoncurrentVersionTransition
    			rMap[id] = clonedRl
    		} else {
    			rMap[id] = rl
    		}
    	}
    
    	var rules []lifecycle.Rule
    	for _, rule := range rMap {
    		rules = append(rules, rule)
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types/fmt.go

    				b.WriteByte('(')
    				tconv2(b, t.Elem(), 0, mode, visited)
    				b.WriteByte(')')
    			} else {
    				tconv2(b, t.Elem(), 0, mode, visited)
    			}
    		}
    
    	case TMAP:
    		b.WriteString("map[")
    		tconv2(b, t.Key(), 0, mode, visited)
    		b.WriteByte(']')
    		tconv2(b, t.Elem(), 0, mode, visited)
    
    	case TINTER:
    		if t.IsEmptyInterface() {
    			b.WriteString("interface {}")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 15:41:17 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/typecheck/expr.go

    		n.SetOp(ir.OARRAYLIT)
    
    	case types.TSLICE:
    		length := typecheckarraylit(t.Elem(), -1, n.List, "slice literal")
    		n.SetOp(ir.OSLICELIT)
    		n.Len = length
    
    	case types.TMAP:
    		for i3, l := range n.List {
    			ir.SetPos(l)
    			if l.Op() != ir.OKEY {
    				n.List[i3] = Expr(l)
    				base.Errorf("missing key in map literal")
    				continue
    			}
    			l := l.(*ir.KeyExpr)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/elfexec/elfexec.go

    		}
    		// Various kernel heuristics and cases are handled separately.
    		if base, match := kernelBase(loadSegment, stextOffset, start, limit, offset); match {
    			return base, nil
    		}
    		// ChromeOS can remap its kernel to 0, and the caller might have not found
    		// the _stext symbol. Split this case from kernelBase() above, since we don't
    		// want to apply it to an ET_DYN user-mode executable.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/TreeRangeMap.java

          }
          if (!lowerBound.equals(range.upperBound)) {
            gaps.put(lowerBound, new RangeMapEntry<K, V>(lowerBound, range.upperBound, value));
          }
        }
    
        // Remap all existing entries in the merge range.
        final Iterator<Entry<Cut<K>, RangeMapEntry<K, V>>> backingItr = entriesInMergeRange.iterator();
        while (backingItr.hasNext()) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 04 14:31:50 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/walk/builtin.go

    	fnname := "makemap64"
    	argtype := types.Types[types.TINT64]
    
    	// Type checking guarantees that TIDEAL hint is positive and fits in an int.
    	// See checkmake call in TMAP case of OMAKE case in OpSwitch in typecheck1 function.
    	// The case of hint overflow when converting TUINT or TUINTPTR to TINT
    	// will be handled by the negative range checks in makemap during runtime.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 22:35:22 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/executor_tpuv1_island_coarsening.cc

              }))
            yield_operands.push_back(std::get<1>(result));
        }
      }
      OpBuilder::atBlockEnd(&island_body)
          .create<YieldOp>(new_island.getLoc(), yield_operands);
    
      // remap results of the new islands to the user outside of the island.
      int current_result = 0;
      Value control = new_island.getControl();
      for (IslandOp island : islands) {
        YieldOp yield_op = island.GetYield();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/ARMOps.go

    		// arg1 = address of src memory (in R1, changed as side effect)
    		// arg2 = address of the last element of src
    		// arg3 = mem
    		// returns mem
    		//	MOVW.P	4(R1), Rtmp
    		//	MOVW.P	Rtmp, 4(R2)
    		//	CMP	R1, Rarg2
    		//	BLE	-3(PC)
    		{
    			name:      "LoweredMove",
    			aux:       "Int64",
    			argLength: 4,
    			reg: regInfo{
    				inputs:   []regMask{buildReg("R2"), buildReg("R1"), gp},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 41K bytes
    - Viewed (0)
Back to top