Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 3,527 for inst (0.09 sec)

  1. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/decode.go

    // byte order ord.
    func Decode(src []byte, ord binary.ByteOrder) (inst Inst, err error) {
    	if len(src) < 4 {
    		return inst, errShort
    	}
    	if decoderCover == nil {
    		decoderCover = make([]bool, len(instFormats))
    	}
    	inst.Len = 4
    	ui_extn := [2]uint32{ord.Uint32(src[:inst.Len]), 0}
    	ui := uint64(ui_extn[0]) << 32
    	inst.Enc = ui_extn[0]
    	opcode := inst.Enc >> 26
    	if opcode == prefixOpcode {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  2. src/regexp/syntax/compile.go

    		}
    		return f
    	}
    	panic("regexp: unhandled case in compile")
    }
    
    func (c *compiler) inst(op InstOp) frag {
    	// TODO: impose length limit
    	f := frag{i: uint32(len(c.p.Inst)), nullable: true}
    	c.p.Inst = append(c.p.Inst, Inst{Op: op})
    	return f
    }
    
    func (c *compiler) nop() frag {
    	f := c.inst(InstNop)
    	f.out = makePatchList(f.i << 1)
    	return f
    }
    
    func (c *compiler) fail() frag {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 13 14:52:20 UTC 2021
    - 6.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/x86/x86asm/decode.go

    	if inst.Op == XCHG && inst.Opcode>>24 == 0x90 {
    		if inst.Args[0] == RAX || inst.Args[0] == EAX || inst.Args[0] == AX {
    			inst.Op = NOP
    			if dataSizeIndex >= 0 {
    				inst.Prefix[dataSizeIndex] &^= PrefixImplicit
    			}
    			inst.Args[0] = nil
    			inst.Args[1] = nil
    		}
    		if repIndex >= 0 && inst.Prefix[repIndex] == 0xF3 {
    			inst.Prefix[repIndex] |= PrefixImplicit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 45.1K bytes
    - Viewed (0)
  4. src/go/internal/gccgoimporter/gccgoinstallation.go

    	if err != nil {
    		return
    	}
    	inst.GccVersion = strings.TrimSpace(string(stdout))
    
    	return
    }
    
    // Return the list of export search paths for this GccgoInstallation.
    func (inst *GccgoInstallation) SearchPaths() (paths []string) {
    	for _, lpath := range inst.LibPaths {
    		spath := filepath.Join(lpath, "go", inst.GccVersion)
    		fi, err := os.Stat(spath)
    		if err != nil || !fi.IsDir() {
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 17:49:12 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  5. src/regexp/onepass.go

    			if matchArg {
    				inst.Out, inst.Arg = inst.Arg, inst.Out
    				matchOut, matchArg = matchArg, matchOut
    			}
    			if matchOut {
    				m[pc] = true
    				inst.Op = syntax.InstAltMatch
    			}
    
    			// build a dispatch operator from the two legs of the alt.
    			onePassRunes[pc], inst.Next = mergeRuneSets(
    				&onePassRunes[inst.Out], &onePassRunes[inst.Arg], inst.Out, inst.Arg)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/plan9.go

    // containing the target, if any; otherwise it returns "", 0.
    func GoSyntax(inst Inst, pc uint64, symname func(uint64) (string, uint64)) string {
    	if symname == nil {
    		symname = func(uint64) (string, uint64) { return "", 0 }
    	}
    	if inst.Op == 0 && inst.Enc == 0 {
    		return "WORD $0"
    	} else if inst.Op == 0 {
    		return "?"
    	}
    	var args []string
    	for i, a := range inst.Args[:] {
    		if a == nil {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  7. src/regexp/backtrack.go

    			case syntax.InstRune, syntax.InstRune1, syntax.InstRuneAny, syntax.InstRuneAnyNotNL:
    				// inst.Arg is the match.
    				b.push(re, inst.Arg, pos, false)
    				pc = inst.Arg
    				pos = b.end
    				goto CheckAndLoop
    			}
    			// inst.Out is the match - non-greedy
    			b.push(re, inst.Out, b.end, false)
    			pc = inst.Out
    			goto CheckAndLoop
    
    		case syntax.InstRune:
    			r, width := i.step(pos)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 17:25:39 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/dense_to_sparse.cc

          // input of the Dequantize op.
          if (isa<DequantizeOp>(inst)) {
            op = inst;
            value = inst->getOperand(0);
            inst = value.getDefiningOp();
            if (!inst) {
              continue;
            }
            operand = 0;
          }
    
          ShapedType type;
          float ratio_threshold = kBlockOverRandomSparsityRatio;
          if (isa<ConstOp>(inst)) {
            supported_block_size = sparse_op.GetFloatBlockSize();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  9. src/go/types/named_test.go

    	}
    
    	Inst := Unalias(pkg.Scope().Lookup("Inst").Type()).(*Pointer).Elem().(*Named)
    	Node := firstFieldType(Inst)
    	Tree := firstFieldType(Node)
    	if !Identical(Inst, Tree) {
    		t.Fatalf("Not a cycle: got %v, want %v", Tree, Inst)
    	}
    	if Inst != Tree {
    		t.Errorf("Duplicate instances in cycle: %s (%p) -> %s (%p) -> %s (%p)", Inst, Inst, Node, Node, Tree, Tree)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 16:29:58 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/arch/arm/armasm/gnu.go

    func GNUSyntax(inst Inst) string {
    	var buf bytes.Buffer
    	op := inst.Op.String()
    	op = saveDot.Replace(op)
    	op = strings.Replace(op, ".", "", -1)
    	op = strings.Replace(op, "_dot_", ".", -1)
    	op = strings.ToLower(op)
    	buf.WriteString(op)
    	sep := " "
    	for i, arg := range inst.Args {
    		if arg == nil {
    			break
    		}
    		text := gnuArg(&inst, i, arg)
    		if text == "" {
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 14 17:21:52 UTC 2016
    - 3.5K bytes
    - Viewed (0)
Back to top