Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 181 for y_const (0.19 sec)

  1. src/syscall/mkerrors.sh

    echo '// Code generated by the command above; DO NOT EDIT.'
    echo
    go tool cgo -godefs -- "$@" _const.go >_error.out
    cat _error.out | grep -vf _error.grep | grep -vf _signal.grep
    echo
    echo '// Errors'
    echo 'const ('
    cat _error.out | grep -f _error.grep | sed 's/=\(.*\)/= Errno(\1)/'
    echo ')'
    
    echo
    echo '// Signals'
    echo 'const ('
    cat _error.out | grep -f _signal.grep | sed 's/=\(.*\)/= Signal(\1)/'
    echo ')'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 06 21:22:22 UTC 2022
    - 10.7K bytes
    - Viewed (0)
  2. src/cmd/internal/objabi/reloctype_string.go

    	_ = x[R_ADDRMIPS-4]
    	_ = x[R_ADDROFF-5]
    	_ = x[R_SIZE-6]
    	_ = x[R_CALL-7]
    	_ = x[R_CALLARM-8]
    	_ = x[R_CALLARM64-9]
    	_ = x[R_CALLIND-10]
    	_ = x[R_CALLPOWER-11]
    	_ = x[R_CALLMIPS-12]
    	_ = x[R_CONST-13]
    	_ = x[R_PCREL-14]
    	_ = x[R_TLS_LE-15]
    	_ = x[R_TLS_IE-16]
    	_ = x[R_GOTOFF-17]
    	_ = x[R_PLT0-18]
    	_ = x[R_PLT1-19]
    	_ = x[R_PLT2-20]
    	_ = x[R_USEFIELD-21]
    	_ = x[R_USETYPE-22]
    	_ = x[R_USEIFACE-23]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:26:07 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_weights.cc

        // from:
        // const -> some op -> quantizable_op
        // to:
        // q_const -> dequant_op -> some op -> quantizable_op
        //
        // A dequant_op will propagate to further quantize the next ops in another
        // pass.
        //
        // Note that a constant can be used by multiple ops. For example, if a graph
        // looks like below:
        // const -> while -> quant_op
        //       -> not_quant_op
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 07:39:40 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/walk/compare.go

    	// Rewrite comparisons to short constant strings as length+byte-wise comparisons.
    	var cs, ncs ir.Node // const string, non-const string
    	switch {
    	case ir.IsConst(n.X, constant.String) && ir.IsConst(n.Y, constant.String):
    		// ignore; will be constant evaluated
    	case ir.IsConst(n.X, constant.String):
    		cs = n.X
    		ncs = n.Y
    	case ir.IsConst(n.Y, constant.String):
    		cs = n.Y
    		ncs = n.X
    	}
    	if cs != nil {
    		cmp := n.Op()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 21:55:14 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/sccp_test.go

    			Goto("b2")),
    		Bloc("b2",
    			Exit("mem")))
    	sccp(fun.f)
    	CheckFunc(fun.f)
    	for name, value := range fun.values {
    		if strings.HasPrefix(name, "t") {
    			if !isConst(value) {
    				t.Errorf("Must be constant: %v", value.LongString())
    			}
    		}
    	}
    }
    
    func TestSCCPIf(t *testing.T) {
    	c := testConfig(t)
    	fun := c.Fun("b1",
    		Bloc("b1",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 21:01:50 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/syntax/tokens.go

    	_Rbrace    // }
    	_Comma     // ,
    	_Semi      // ;
    	_Colon     // :
    	_Dot       // .
    	_DotDotDot // ...
    
    	// keywords
    	_Break       // break
    	_Case        // case
    	_Chan        // chan
    	_Const       // const
    	_Continue    // continue
    	_Default     // default
    	_Defer       // defer
    	_Else        // else
    	_Fallthrough // fallthrough
    	_For         // for
    	_Func        // func
    	_Go          // go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:38 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/KtFe10DescKotlinPropertySymbol.kt

                }
                descriptor.ktSymbolKind
            }
    
        override val isLateInit: Boolean
            get() = withValidityAssertion { descriptor.isLateInit }
    
        override val isConst: Boolean
            get() = withValidityAssertion { descriptor.isConst }
    
        override val isVal: Boolean
            get() = withValidityAssertion { !descriptor.isVar }
    
        override val isExtension: Boolean
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/experimental/tac/execution_metadata_exporter.cc

    flatbuffers::Offset<SubgraphMetadata> CreateSubgraphMetadata(
        const std::map<std::string, uint8_t>& hardware_map, mlir::Region* Region,
        flatbuffers::FlatBufferBuilder* builder) {
      auto& block = Region->front();
      int index = 0;
      std::vector<flatbuffers::Offset<tflite::OpMetadata>> ops;
      for (auto& inst : block) {
        // Const nodes are mapped to const vectors in flatbuffer, so skip.
        if (IsConst(&inst)) continue;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 06:11:34 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/testlife/testdata/life.go

    var chans [4]chan bool
    
    // Double return value is just for testing.
    //
    //export GoStart
    func GoStart(i, xdim, ydim, xstart, xend, ystart, yend C.int, a *C.int, n *C.int) (int, int) {
    	c := make(chan bool, int(C.MYCONST))
    	go func() {
    		C.DoStep(xdim, ydim, xstart, xend, ystart, yend, a, n)
    		c <- true
    	}()
    	chans[i] = c
    	return int(i), int(i + 100)
    }
    
    //export GoWait
    func GoWait(i C.int) {
    	<-chans[i]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 892 bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirKotlinPropertySymbol.kt

            }
    
        override val isOverride: Boolean get() = withValidityAssertion { firSymbol.isOverride }
        override val isConst: Boolean get() = withValidityAssertion { firSymbol.isConst }
        override val isStatic: Boolean get() = withValidityAssertion { firSymbol.isStatic }
        override val isActual: Boolean get() = withValidityAssertion { firSymbol.isActual }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 7.5K bytes
    - Viewed (0)
Back to top