Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 111 for REM (0.22 sec)

  1. src/cmd/compile/internal/syntax/tokens.go

    	Eql // ==
    	Neq // !=
    	Lss // <
    	Leq // <=
    	Gtr // >
    	Geq // >=
    
    	// precAdd
    	Add // +
    	Sub // -
    	Or  // |
    	Xor // ^
    
    	// precMul
    	Mul    // *
    	Div    // /
    	Rem    // %
    	And    // &
    	AndNot // &^
    	Shl    // <<
    	Shr    // >>
    )
    
    // Operator precedences
    const (
    	_ = iota
    	precOrOr
    	precAndAnd
    	precCmp
    	precAdd
    	precMul
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:38 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/riscv/anames.go

    	"ADDIW",
    	"SLLIW",
    	"SRLIW",
    	"SRAIW",
    	"ADDW",
    	"SLLW",
    	"SRLW",
    	"SUBW",
    	"SRAW",
    	"LD",
    	"SD",
    	"MUL",
    	"MULH",
    	"MULHU",
    	"MULHSU",
    	"MULW",
    	"DIV",
    	"DIVU",
    	"REM",
    	"REMU",
    	"DIVW",
    	"DIVUW",
    	"REMW",
    	"REMUW",
    	"LRD",
    	"SCD",
    	"LRW",
    	"SCW",
    	"AMOSWAPD",
    	"AMOADDD",
    	"AMOANDD",
    	"AMOORD",
    	"AMOXORD",
    	"AMOMAXD",
    	"AMOMAXUD",
    	"AMOMIND",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. src/math/remainder.go

    // software is freely granted, provided that this notice
    // is preserved.
    // ====================================================
    //
    // __ieee754_remainder(x,y)
    // Return :
    //      returns  x REM y  =  x - [x/y]*y  as if in infinite
    //      precision arithmetic, where [x/y] is the (infinite bit)
    //      integer nearest x/y (in half way cases, choose the even one).
    // Method :
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 2K bytes
    - Viewed (0)
  4. src/internal/coverage/decodecounter/decodecounterfile.go

    		return err
    	}
    	// Seek past any padding to bring us up to a 4-byte boundary.
    	if of, err := cdr.mr.Seek(0, io.SeekCurrent); err != nil {
    		return err
    	} else {
    		rem := of % 4
    		if rem != 0 {
    			pad := 4 - rem
    			if _, err := cdr.mr.Seek(pad, io.SeekCurrent); err != nil {
    				return err
    			}
    		}
    	}
    	return nil
    }
    
    func (cdr *CounterDataReader) readStringTable() error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 27 15:29:54 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  5. src/runtime/runtime1.go

    //
    //go:nosplit
    func timediv(v int64, div int32, rem *int32) int32 {
    	res := int32(0)
    	for bit := 30; bit >= 0; bit-- {
    		if v >= int64(div)<<uint(bit) {
    			v = v - (int64(div) << uint(bit))
    			// Before this for loop, res was 0, thus all these
    			// power of 2 increments are now just bitsets.
    			res |= 1 << uint(bit)
    		}
    	}
    	if v >= int64(div) {
    		if rem != nil {
    			*rem = 0
    		}
    		return 0x7fffffff
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  6. src/strconv/quote.go

    // that s quotes.  (If s is single-quoted, it would be a Go
    // character literal; Unquote returns the corresponding
    // one-character string.)
    func Unquote(s string) (string, error) {
    	out, rem, err := unquote(s, true)
    	if len(rem) > 0 {
    		return "", ErrSyntax
    	}
    	return out, err
    }
    
    // unquote parses a quoted string at the start of the input,
    // returning the parsed prefix, the remaining suffix, and any parse errors.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/arch/loong64.go

    		loong64.ACMPGTF, loong64.ACMPGTD:
    		return true
    	}
    	return false
    }
    
    // IsLoong64MUL reports whether the op (as defined by an loong64.A* constant) is
    // one of the MUL/DIV/REM instructions that require special handling.
    func IsLoong64MUL(op obj.As) bool {
    	switch op {
    	case loong64.AMUL, loong64.AMULU, loong64.AMULV, loong64.AMULVU,
    		loong64.ADIV, loong64.ADIVU, loong64.ADIVV, loong64.ADIVVU,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. src/archive/tar/strconv.go

    	rec, nl, rem := rest[:n-1], rest[n-1:n], rest[n:]
    	if nl != "\n" {
    		return "", "", s, ErrHeader
    	}
    
    	// The first equals separates the key from the value.
    	k, v, ok = strings.Cut(rec, "=")
    	if !ok {
    		return "", "", s, ErrHeader
    	}
    
    	if !validPAXRecord(k, v) {
    		return "", "", s, ErrHeader
    	}
    	return k, v, rem, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 01 14:28:42 UTC 2023
    - 9K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/arm64/anames.go

    	"NEG",
    	"NEGS",
    	"NEGSW",
    	"NEGW",
    	"NGC",
    	"NGCS",
    	"NGCSW",
    	"NGCW",
    	"NOOP",
    	"ORN",
    	"ORNW",
    	"ORR",
    	"ORRW",
    	"PRFM",
    	"PRFUM",
    	"RBIT",
    	"RBITW",
    	"REM",
    	"REMW",
    	"REV",
    	"REV16",
    	"REV16W",
    	"REV32",
    	"REVW",
    	"ROR",
    	"RORW",
    	"SBC",
    	"SBCS",
    	"SBCSW",
    	"SBCW",
    	"SBFIZ",
    	"SBFIZW",
    	"SBFM",
    	"SBFMW",
    	"SBFX",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 18 01:40:37 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/deadcode.go

    		// in the last pass.
    		rem := d.markableMethods[:0]
    		for _, m := range d.markableMethods {
    			if (d.reflectSeen && (m.isExported() || d.dynlink)) || d.ifaceMethod[m.m] || d.genericIfaceMethod[m.m.name] {
    				d.markMethod(m)
    			} else {
    				rem = append(rem, m)
    			}
    		}
    		d.markableMethods = rem
    
    		if d.wq.empty() {
    			// No new work was discovered. Done.
    			break
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 19K bytes
    - Viewed (0)
Back to top