Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,407 for names_ (0.23 sec)

  1. src/cmd/internal/obj/x86/anames.go

    // Code generated by stringer -i aenum.go -o anames.go -p x86; DO NOT EDIT.
    
    package x86
    
    import "cmd/internal/obj"
    
    var Anames = []string{
    	obj.A_ARCHSPECIFIC: "AAA",
    	"AAD",
    	"AAM",
    	"AAS",
    	"ADCB",
    	"ADCL",
    	"ADCQ",
    	"ADCW",
    	"ADCXL",
    	"ADCXQ",
    	"ADDB",
    	"ADDL",
    	"ADDPD",
    	"ADDPS",
    	"ADDQ",
    	"ADDSD",
    	"ADDSS",
    	"ADDSUBPD",
    	"ADDSUBPS",
    	"ADDW",
    	"ADJSP",
    	"ADOXL",
    	"ADOXQ",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 18:32:50 UTC 2023
    - 19.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/dcerpc/msrpc/lsarpc.java

                _dst.enc_ndr_referent(this.names, 1);
    
                if ( this.names != null ) {
                    _dst = _dst.deferred;
                    int _namess = this.count;
                    _dst.enc_ndr_long(_namess);
                    int _namesi = _dst.index;
                    _dst.advance(16 * _namess);
    
                    _dst = _dst.derive(_namesi);
                    for ( int _i = 0; _i < _namess; _i++ ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:40:13 UTC 2019
    - 35.6K bytes
    - Viewed (0)
  3. internal/event/name.go

    		return []Name{
    			ObjectManyVersions,
    			ObjectLargeVersions,
    			PrefixManyFolders,
    		}
    	case Everything:
    		res := make([]Name, objectSingleTypesEnd-1)
    		for i := range res {
    			res[i] = Name(i + 1)
    		}
    		return res
    	default:
    		return []Name{name}
    	}
    }
    
    // Mask returns the type as mask.
    // Compound "All" types are expanded.
    func (name Name) Mask() uint64 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 01:11:10 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/named.go

    func (t *Named) methodIndex(name string, foldCase bool) int {
    	if name == "_" {
    		return -1
    	}
    	if foldCase {
    		for i, m := range t.methods {
    			if strings.EqualFold(m.name, name) {
    				return i
    			}
    		}
    	} else {
    		for i, m := range t.methods {
    			if m.name == name {
    				return i
    			}
    		}
    	}
    	return -1
    }
    
    // Underlying returns the [underlying type] of the named type t, resolving all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  5. src/go/types/named.go

    func (t *Named) methodIndex(name string, foldCase bool) int {
    	if name == "_" {
    		return -1
    	}
    	if foldCase {
    		for i, m := range t.methods {
    			if strings.EqualFold(m.name, name) {
    				return i
    			}
    		}
    	} else {
    		for i, m := range t.methods {
    			if m.name == name {
    				return i
    			}
    		}
    	}
    	return -1
    }
    
    // Underlying returns the [underlying type] of the named type t, resolving all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 24K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/dcerpc/msrpc/lsarpc.java

                    _src = _src.deferred;
                    int _namess = _src.dec_ndr_long();
                    int _namesi = _src.index;
                    _src.advance(16 * _namess);
    
                    if (names == null) {
                        if (_namess < 0 || _namess > 0xFFFF) throw new NdrException( NdrException.INVALID_CONFORMANCE );
                        names = new LsarTranslatedName[_namess];
                    }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 33K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/arch/arch.go

    	"fmt"
    	"strings"
    )
    
    // Pseudo-registers whose names are the constant name without the leading R.
    const (
    	RFP = -(iota + 1)
    	RSB
    	RSP
    	RPC
    )
    
    // Arch wraps the link architecture object with more architecture-specific information.
    type Arch struct {
    	*obj.LinkArch
    	// Map of instruction names to enumeration.
    	Instructions map[string]obj.As
    	// Map of register names to enumeration.
    	Register map[string]int16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 21 06:51:28 UTC 2023
    - 21.3K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/util.go

    }
    
    type opSet struct {
    	lo    As
    	names []string
    }
    
    // Not even worth sorting
    var aSpace []opSet
    
    // RegisterOpcode binds a list of instruction names
    // to a given instruction number range.
    func RegisterOpcode(lo As, Anames []string) {
    	if len(Anames) > AllowedOpCodes {
    		panic(fmt.Sprintf("too many instructions, have %d max %d", len(Anames), AllowedOpCodes))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/debug/debug.cc

    class ReproducerStream : public mlir::ReproducerStream {
     public:
      ReproducerStream(std::string name, std::unique_ptr<llvm::raw_ostream> os)
          : name_(std::move(name)), os_(std::move(os)) {}
    
      llvm::StringRef description() override { return name_; }
    
      llvm::raw_ostream& os() override { return *os_; }
    
     private:
      std::string name_;
      std::unique_ptr<llvm::raw_ostream> os_;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 10 02:44:52 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modindex/build.go

    	}
    
    	return false
    }
    
    // goodOSArchFile returns false if the name contains a $GOOS or $GOARCH
    // suffix which does not match the current system.
    // The recognized name formats are:
    //
    //	name_$(GOOS).*
    //	name_$(GOARCH).*
    //	name_$(GOOS)_$(GOARCH).*
    //	name_$(GOOS)_test.*
    //	name_$(GOARCH)_test.*
    //	name_$(GOOS)_$(GOARCH)_test.*
    //
    // Exceptions:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 17:39:23 UTC 2023
    - 26.8K bytes
    - Viewed (0)
Back to top