Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 186 for qsub (0.07 sec)

  1. src/cmd/vendor/golang.org/x/arch/arm/armasm/tables.go

    	QSAX_ZZ:           "QSAX.ZZ",
    	QSUB_EQ:           "QSUB.EQ",
    	QSUB_NE:           "QSUB.NE",
    	QSUB_CS:           "QSUB.CS",
    	QSUB_CC:           "QSUB.CC",
    	QSUB_MI:           "QSUB.MI",
    	QSUB_PL:           "QSUB.PL",
    	QSUB_VS:           "QSUB.VS",
    	QSUB_VC:           "QSUB.VC",
    	QSUB_HI:           "QSUB.HI",
    	QSUB_LS:           "QSUB.LS",
    	QSUB_GE:           "QSUB.GE",
    	QSUB_LT:           "QSUB.LT",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 267.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    			mwq.Qualifiers = mergeQualifiers(q, mwq.Qualifiers)
    		} else {
    			// Merge adjacent qualifiers.  This case
    			// happens with multi-dimensional array types.
    			if qsub, ok := ret.(*TypeWithQualifiers); ok {
    				q = mergeQualifiers(q, qsub.Qualifiers)
    				ret = qsub.Base
    			}
    			ret = &TypeWithQualifiers{Base: ret, Qualifiers: q}
    		}
    		st.subs.add(ret)
    	}
    
    	return ret
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/tables.go

    	// FSUB <Sd>, <Sn>, <Sm>
    	{0xffe0fc00, 0x1e203800, FSUB, instArgs{arg_Sd, arg_Sn, arg_Sm}, nil},
    	// FSUB <Dd>, <Dn>, <Dm>
    	{0xffe0fc00, 0x1e603800, FSUB, instArgs{arg_Dd, arg_Dn, arg_Dm}, nil},
    	// FSUB <Vd>.<t>, <Vn>.<t>, <Vm>.<t>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 211.8K bytes
    - Viewed (0)
  4. test/fixedbugs/issue33355.go

    			gwc.mu.Unlock()
    			if !ok {
    				continue
    			}
    		} else {
    			qr := gwc.gatewayInterest(acc.Name, subj)
    			queues = queuesa[:0]
    			for i := 0; i < len(qr.qsubs); i++ {
    				qsubs := qr.qsubs[i]
    				queue := qsubs[0].queue
    				add := true
    				for _, qn := range qgroups {
    					if bytes.Equal(queue, qn) {
    						add = false
    						break
    					}
    				}
    				if add {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 01 02:15:18 UTC 2019
    - 2.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/plan9x.go

    		fallthrough
    
    	case FCMP, FCMPE:
    		if _, ok := inst.Args[1].(Imm); ok {
    			args[1] = "$(0.0)"
    		}
    		fallthrough
    
    	case FADD, FSUB, FMUL, FNMUL, FDIV, FMAX, FMIN, FMAXNM, FMINNM, FCSEL, FMADD, FMSUB, FNMADD, FNMSUB:
    		if strings.HasSuffix(op, "MADD") || strings.HasSuffix(op, "MSUB") {
    			args[2], args[3] = args[3], args[2]
    		}
    		if r, ok := inst.Args[0].(Reg); ok {
    			rno := uint16(r)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 17K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/arch/x86/x86asm/gnu.go

    	if symname == nil {
    		symname = func(uint64) (string, uint64) { return "", 0 }
    	}
    
    	// Adjust opcode [sic].
    	switch inst.Op {
    	case FDIV, FDIVR, FSUB, FSUBR, FDIVP, FDIVRP, FSUBP, FSUBRP:
    		// DC E0, DC F0: libopcodes swaps FSUBR/FSUB and FDIVR/FDIV, at least
    		// if you believe the Intel manual is correct (the encoding is irregular as given;
    		// libopcodes uses the more regular expected encoding).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  7. src/io/fs/sub.go

    )
    
    // A SubFS is a file system with a Sub method.
    type SubFS interface {
    	FS
    
    	// Sub returns an FS corresponding to the subtree rooted at dir.
    	Sub(dir string) (FS, error)
    }
    
    // Sub returns an [FS] corresponding to the subtree rooted at fsys's dir.
    //
    // If dir is ".", Sub returns fsys unchanged.
    // Otherwise, if fs implements [SubFS], Sub returns fsys.Sub(dir).
    // Otherwise, Sub returns a new [FS] implementation sub that,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 10 02:10:17 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. src/net/mail/message.go

    			if !isVchar(r) && !isWSP(r) {
    				return "", fmt.Errorf("mail: bad character in quoted-string: %q", r)
    			}
    
    			qsb = append(qsb, r)
    			escaped = false
    
    		case isQtext(r) || isWSP(r):
    			// qtext (printable US-ASCII excluding " and \), or
    			// FWS (almost; we're ignoring CRLF)
    			qsb = append(qsb, r)
    
    		case r == '"':
    			break Loop
    
    		case r == '\\':
    			escaped = true
    
    		default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  9. src/regexp/syntax/simplify.go

    		nre := re
    		for i, sub := range re.Sub {
    			nsub := sub.Simplify()
    			if nre == re && nsub != sub {
    				// Start a copy.
    				nre = new(Regexp)
    				*nre = *re
    				nre.Rune = nil
    				nre.Sub = append(nre.Sub0[:0], re.Sub[:i]...)
    			}
    			if nre != re {
    				nre.Sub = append(nre.Sub, nsub)
    			}
    		}
    		return nre
    
    	case OpStar, OpPlus, OpQuest:
    		sub := re.Sub[0].Simplify()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 02 00:13:47 UTC 2016
    - 4.2K bytes
    - Viewed (0)
  10. src/runtime/arena_test.go

    		}
    	}
    
    	// Clone should make a copy of bSub, since bSub is just part of b and so is in the arena.
    	bSub := b[1:3]
    	bSubCopy := UserArenaClone(bSub)
    	if unsafe.Pointer(&bSub[0]) == unsafe.Pointer(&bSubCopy[0]) {
    		t.Errorf("Clone did not make a copy: %#v -> %#v", bSub, bSubCopy)
    	}
    	if len(bSub) != len(bSubCopy) {
    		t.Errorf("Clone made an incorrect copy (bad length): %d -> %d", len(bSub), len(bSubCopy))
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.4K bytes
    - Viewed (0)
Back to top