Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 501 for insts (0.3 sec)

  1. android/guava/src/com/google/common/primitives/Ints.java

     *
     * @author Kevin Bourrillion
     * @since 1.0
     */
    @GwtCompatible(emulated = true)
    @ElementTypesAreNonnullByDefault
    public final class Ints extends IntsMethodsForWeb {
      private Ints() {}
    
      /**
       * The number of bytes required to represent a primitive {@code int} value.
       *
       * <p><b>Java 8+ users:</b> use {@link Integer#BYTES} instead.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  2. guava/src/com/google/common/primitives/Ints.java

     *
     * @author Kevin Bourrillion
     * @since 1.0
     */
    @GwtCompatible(emulated = true)
    @ElementTypesAreNonnullByDefault
    public final class Ints extends IntsMethodsForWeb {
      private Ints() {}
    
      /**
       * The number of bytes required to represent a primitive {@code int} value.
       *
       * <p><b>Java 8+ users:</b> use {@link Integer#BYTES} instead.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 29.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/arm/armasm/inst.go

    		return fmt.Sprintf("Op(%d)", int(op))
    	}
    	return opstr[op]
    }
    
    // An Inst is a single instruction.
    type Inst struct {
    	Op   Op     // Opcode mnemonic
    	Enc  uint32 // Raw encoding bits.
    	Len  int    // Length of encoding in bytes.
    	Args Args   // Instruction arguments, in ARM manual order.
    }
    
    func (i Inst) String() string {
    	var buf bytes.Buffer
    	buf.WriteString(i.Op.String())
    	for j, arg := range i.Args {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 22:23:32 UTC 2017
    - 7.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/arch/x86/x86asm/inst.go

    // license that can be found in the LICENSE file.
    
    // Package x86asm implements decoding of x86 machine code.
    package x86asm
    
    import (
    	"bytes"
    	"fmt"
    )
    
    // An Inst is a single instruction.
    type Inst struct {
    	Prefix   Prefixes // Prefixes applied to the instruction.
    	Op       Op       // Opcode mnemonic
    	Opcode   uint32   // Encoded opcode bits, left aligned (first byte is Opcode>>24, etc)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/inst.go

    import (
    	"bytes"
    	"fmt"
    )
    
    type Inst struct {
    	Op        Op     // Opcode mnemonic
    	Enc       uint32 // Raw encoding bits (if Len == 8, this is the prefix word)
    	Len       int    // Length of encoding in bytes.
    	SuffixEnc uint32 // Raw encoding bits of second word (if Len == 8)
    	Args      Args   // Instruction arguments, in Power ISA manual order.
    }
    
    func (i Inst) String() string {
    	var buf bytes.Buffer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 03 01:35:44 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  6. src/regexp/syntax/parse.go

    const maxHeight = 1000
    
    // maxSize is the maximum size of a compiled regexp in Insts.
    // It too is somewhat arbitrarily chosen, but the idea is to be large enough
    // to allow significant regexps while at the same time small enough that
    // the compiled form will not take up too much memory.
    // 128 MB is enough for a 3.3 million Inst structures, which roughly
    // corresponds to a 3.3 MB regexp.
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.go

    	if op >= Op(len(opstr)) || opstr[op] == "" {
    		return fmt.Sprintf("Op(%d)", int(op))
    	}
    	return opstr[op]
    }
    
    // An Inst is a single instruction.
    type Inst struct {
    	Op   Op     // Opcode mnemonic
    	Enc  uint32 // Raw encoding bits.
    	Args Args   // Instruction arguments, in ARM manual order.
    }
    
    func (i Inst) String() string {
    	var args []string
    	for _, arg := range i.Args {
    		if arg == nil {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.json

    Wei Xiao <******@****.***> 1500351937 +0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 234.7K bytes
    - Viewed (0)
  9. src/cmd/cover/cfg_test.go

    	testenv.MustHaveGoRun(t)
    
    	t.Parallel()
    
    	// Subdir in testdata that has our input files of interest.
    	tpath := filepath.Join("testdata", "pkgcfg")
    	dir := tempDir(t)
    	instdira := filepath.Join(dir, "insta")
    	if err := os.Mkdir(instdira, 0777); err != nil {
    		t.Fatal(err)
    	}
    
    	scenarios := []struct {
    		mode, gran string
    	}{
    		{
    			mode: "count",
    			gran: "perblock",
    		},
    		{
    			mode: "set",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 12:51:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  10. src/encoding/gob/encode.go

    	defer enc.freeEncoderState(state)
    	state.fieldnum = -1
    	for i := 0; i < len(engine.instr); i++ {
    		instr := &engine.instr[i]
    		if i >= value.NumField() {
    			// encStructTerminator
    			instr.op(instr, state, reflect.Value{})
    			break
    		}
    		field := value.FieldByIndex(instr.index)
    		if instr.indir > 0 {
    			field = encIndirect(field, instr.indir)
    			// TODO: Is field guaranteed valid? If so we could avoid this check.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 19K bytes
    - Viewed (0)
Back to top