Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,917 for const3 (0.28 sec)

  1. src/debug/pe/section.go

    		return cstring(sh.Name[:]), nil
    	}
    	i, err := strconv.Atoi(cstring(sh.Name[1:]))
    	if err != nil {
    		return "", err
    	}
    	return st.String(uint32(i))
    }
    
    // TODO(brainman): copy all IMAGE_REL_* consts from ldpe.go here
    
    // Reloc represents a PE COFF relocation.
    // Each section contains its own relocation list.
    type Reloc struct {
    	VirtualAddress   uint32
    	SymbolTableIndex uint32
    	Type             uint16
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  2. pkg/test/framework/tools/featuresgen/cmd/root.go

    func init() {
    	rootCmd.Flags().StringVarP(&input, "inputFile", "i", "features.yaml", "the YAML file to use as input")
    	rootCmd.Flags().StringVarP(&output, "outputFile", "o", "features.gen.go", "output Go file with labels as string consts")
    }
    
    // Parses a map in the yaml file
    func readMap(m map[any]any, path []string) []string {
    	var labels []string
    	for k, v := range m {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 5.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/increase_dynamism_for_auto_jit_pass.cc

    StatusOrOptional<SliceInputs> GetSliceInputs(Node* slice) {
      const int kSliceInputIndex = 0;
      const int kSliceBeginIndex = 1;
      const int kSliceSizeIndex = 2;
    
      const Edge* slice_input_edge;
      TF_RETURN_IF_ERROR(slice->input_edge(kSliceInputIndex, &slice_input_edge));
      const Edge* slice_size_edge;
      TF_RETURN_IF_ERROR(slice->input_edge(kSliceSizeIndex, &slice_size_edge));
      const Edge* slice_begin_edge;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    (MUL(Q|L)const [-3] x) => (NEG(Q|L) (LEA(Q|L)2 <v.Type> x x))
    (MUL(Q|L)const [-1] x) => (NEG(Q|L) x)
    (MUL(Q|L)const [ 0] _) => (MOV(Q|L)const [0])
    (MUL(Q|L)const [ 1] x) => x
    (MUL(Q|L)const [ 3] x) => (LEA(Q|L)2 x x)
    (MUL(Q|L)const [ 5] x) => (LEA(Q|L)4 x x)
    (MUL(Q|L)const [ 7] x) => (LEA(Q|L)2 x (LEA(Q|L)2 <v.Type> x x))
    (MUL(Q|L)const [ 9] x) => (LEA(Q|L)8 x x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  5. src/go/doc/reader.go

    	// imports
    	imports      map[string]int
    	hasDotImp    bool // if set, package contains a dot import
    	importByName map[string]string
    
    	// declarations
    	values []*Value // consts and vars
    	order  int      // sort order of const and var declarations (when we can't use a name)
    	types  map[string]*namedType
    	funcs  methodSet
    
    	// support for package-local shadowing of predeclared types
    	shadowedPredecl map[string]bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/poset.go

    	}
    
    	// Create reverse constant mapping
    	consts := make(map[uint32]int64)
    	for val, idx := range po.constants {
    		consts[idx] = val
    	}
    
    	fmt.Fprintf(f, "digraph poset {\n")
    	fmt.Fprintf(f, "\tedge [ fontsize=10 ]\n")
    	for ridx, r := range po.roots {
    		fmt.Fprintf(f, "\tsubgraph root%d {\n", ridx)
    		po.dfs(r, false, func(i uint32) bool {
    			if val, ok := consts[i]; ok {
    				// Constant
    				var vals string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 04 17:23:05 UTC 2023
    - 37.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Reader", Type, 0},
    		{"TypeBlock", Const, 0},
    		{"TypeChar", Const, 0},
    		{"TypeCont", Const, 0},
    		{"TypeDir", Const, 0},
    		{"TypeFifo", Const, 0},
    		{"TypeGNULongLink", Const, 1},
    		{"TypeGNULongName", Const, 1},
    		{"TypeGNUSparse", Const, 3},
    		{"TypeLink", Const, 0},
    		{"TypeReg", Const, 0},
    		{"TypeRegA", Const, 0},
    		{"TypeSymlink", Const, 0},
    		{"TypeXGlobalHeader", Const, 0},
    		{"TypeXHeader", Const, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  8. api/go1.1.txt

    pkg crypto, const MD4 = 1
    pkg crypto, const MD5 = 2
    pkg crypto, const MD5SHA1 = 8
    pkg crypto, const RIPEMD160 = 9
    pkg crypto, const SHA1 = 3
    pkg crypto, const SHA224 = 4
    pkg crypto, const SHA256 = 5
    pkg crypto, const SHA384 = 6
    pkg crypto, const SHA512 = 7
    pkg crypto/aes, const BlockSize = 16
    pkg crypto/des, const BlockSize = 8
    pkg crypto/dsa, const L1024N160 = 0
    pkg crypto/dsa, const L2048N224 = 1
    pkg crypto/dsa, const L2048N256 = 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 31 20:37:15 UTC 2022
    - 2.6M bytes
    - Viewed (0)
  9. api/go1.14.txt

    pkg debug/dwarf, const AttrDefaulted Attr
    pkg debug/dwarf, const AttrDeleted = 138
    pkg debug/dwarf, const AttrDeleted Attr
    pkg debug/dwarf, const AttrDigitCount = 95
    pkg debug/dwarf, const AttrDigitCount Attr
    pkg debug/dwarf, const AttrDwoName = 118
    pkg debug/dwarf, const AttrDwoName Attr
    pkg debug/dwarf, const AttrElemental = 102
    pkg debug/dwarf, const AttrElemental Attr
    pkg debug/dwarf, const AttrEndianity = 101
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 20:31:46 UTC 2023
    - 508.9K bytes
    - Viewed (0)
  10. api/go1.16.txt

    pkg io/fs, const ModeIrregular = 524288
    pkg io/fs, const ModeIrregular FileMode
    pkg io/fs, const ModeNamedPipe = 33554432
    pkg io/fs, const ModeNamedPipe FileMode
    pkg io/fs, const ModePerm = 511
    pkg io/fs, const ModePerm FileMode
    pkg io/fs, const ModeSetgid = 4194304
    pkg io/fs, const ModeSetgid FileMode
    pkg io/fs, const ModeSetuid = 8388608
    pkg io/fs, const ModeSetuid FileMode
    pkg io/fs, const ModeSocket = 16777216
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 16:30:41 UTC 2022
    - 479.2K bytes
    - Viewed (0)
Back to top