Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 39 for typeSwitch (0.49 sec)

  1. src/cmd/gofmt/testdata/typeswitch.input

    Russ Cox <******@****.***> 1643907045 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 15 17:17:30 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  2. src/cmd/gofmt/testdata/typeswitch.golden

    Russ Cox <******@****.***> 1643907045 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 15 17:17:30 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  3. test/typeswitch.go

    Rob Pike <******@****.***> 1330044499 +1100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:48:19 UTC 2012
    - 1.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/utils/tf_type_utils.cc

    #include "tensorflow/compiler/mlir/quantization/stablehlo/utils/tf_type_utils.h"
    
    #include "absl/status/status.h"
    #include "llvm/ADT/ArrayRef.h"
    #include "llvm/ADT/StringRef.h"
    #include "llvm/ADT/TypeSwitch.h"
    #include "llvm/Support/Casting.h"
    #include "mlir/IR/BuiltinAttributes.h"  // from @llvm-project
    #include "mlir/IR/BuiltinTypes.h"  // from @llvm-project
    #include "mlir/IR/TypeUtilities.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/metrics/types_util.cc

    ==============================================================================*/
    #include "tensorflow/compiler/mlir/lite/metrics/types_util.h"
    
    #include <string>
    
    #include "llvm/ADT/STLExtras.h"
    #include "llvm/ADT/TypeSwitch.h"
    #include "mlir/IR/BuiltinAttributes.h"  // from @llvm-project
    #include "mlir/IR/Location.h"  // from @llvm-project
    #include "mlir/Support/LLVM.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/transforms/op_stat_pass.cc

    #include "absl/strings/str_format.h"
    #include "absl/strings/str_split.h"
    #include "absl/strings/string_view.h"
    #include "llvm/ADT/STLExtras.h"
    #include "llvm/ADT/StringMap.h"
    #include "llvm/ADT/StringRef.h"
    #include "llvm/ADT/TypeSwitch.h"
    #include "llvm/Support/raw_ostream.h"
    #include "mlir/Dialect/Quant/QuantTypes.h"  // from @llvm-project
    #include "mlir/IR/BuiltinTypeInterfaces.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/walk/switch.go

    		}
    		hashField = itabHashField
    	}
    	return boundedDotPtr(pos, itab, hashField)
    }
    
    var rtypeHashField, itabHashField *types.Field
    
    // A typeSwitch walks a type switch.
    type typeSwitch struct {
    	// Temporary variables (i.e., ONAMEs) used by type switch dispatch logic:
    	srcName  ir.Node // value being type-switched on
    	hashName ir.Node // type hash of the value being type-switched on
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  8. test/codegen/switch.go

    	// arm64: `MOVD\s\$1718907950`, `CMPW\sR.*, R.*$`
    	case ".ttf":
    		return "D"
    	default:
    		return ""
    	}
    }
    
    // use jump tables for type switches to concrete types.
    func typeSwitch(x any) int {
    	// amd64:`JMP\s\(.*\)\(.*\)$`
    	// arm64:`MOVD\s\(R.*\)\(R.*<<3\)`,`JMP\s\(R.*\)$`
    	switch x.(type) {
    	case int:
    		return 0
    	case int8:
    		return 1
    	case int16:
    		return 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 18:39:50 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/utils/export_utils.cc

    #include <vector>
    
    #include "absl/container/flat_hash_set.h"
    #include "absl/memory/memory.h"
    #include "absl/strings/str_split.h"
    #include "absl/strings/string_view.h"
    #include "llvm/ADT/StringRef.h"
    #include "llvm/ADT/TypeSwitch.h"
    #include "llvm/Support/Casting.h"
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    #include "mlir/IR/Attributes.h"  // from @llvm-project
    #include "mlir/IR/BuiltinOps.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/cfg/builder.go

    }
    
    func (b *builder) stmt(_s ast.Stmt) {
    	// The label of the current statement.  If non-nil, its _goto
    	// target is always set; its _break and _continue are set only
    	// within the body of switch/typeswitch/select/for/range.
    	// It is effectively an additional default-nil parameter of stmt().
    	var label *lblock
    start:
    	switch s := _s.(type) {
    	case *ast.BadStmt,
    		*ast.SendStmt,
    		*ast.IncDecStmt,
    		*ast.GoStmt,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 11.4K bytes
    - Viewed (0)
Back to top