Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 679 for oplus (0.11 sec)

  1. src/cmd/compile/internal/staticinit/sched.go

    		ir.OLE,
    		ir.OGT,
    		ir.OGE,
    		ir.OKEY,
    		ir.OSTRUCTKEY,
    		ir.OLEN,
    		ir.OMUL,
    		ir.OLSH,
    		ir.ORSH,
    		ir.OAND,
    		ir.OANDNOT,
    		ir.ONEW,
    		ir.ONOT,
    		ir.OBITNOT,
    		ir.OPLUS,
    		ir.ONEG,
    		ir.OOROR,
    		ir.OPAREN,
    		ir.ORUNESTR,
    		ir.OREAL,
    		ir.OIMAG,
    		ir.OCOMPLEX:
    		return false
    
    	// Only possible side effect is division by zero.
    	case ir.ODIV, ir.OMOD:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 17:16:14 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/walk/expr.go

    		n := n.(*ir.SelectorExpr)
    		return n.FuncName()
    
    	case ir.OMIN, ir.OMAX:
    		n := n.(*ir.CallExpr)
    		return walkMinMax(n, init)
    
    	case ir.ONOT, ir.ONEG, ir.OPLUS, ir.OBITNOT, ir.OREAL, ir.OIMAG, ir.OSPTR, ir.OITAB, ir.OIDATA:
    		n := n.(*ir.UnaryExpr)
    		n.X = walkExpr(n.X, init)
    		return n
    
    	case ir.ODOTMETH, ir.ODOTINTER:
    		n := n.(*ir.SelectorExpr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/typecheck/typecheck.go

    			} else {
    				add.List.Append(r)
    			}
    			add.SetType(t)
    			return add
    		}
    		n.X, n.Y = l, r
    		n.SetType(t)
    		return n
    
    	case ir.OBITNOT, ir.ONEG, ir.ONOT, ir.OPLUS:
    		n := n.(*ir.UnaryExpr)
    		return tcUnaryArith(n)
    
    	// exprs
    	case ir.OCOMPLIT:
    		return tcCompLit(n.(*ir.CompLitExpr))
    
    	case ir.OXDOT, ir.ODOT:
    		n := n.(*ir.SelectorExpr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 19:08:34 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  4. src/encoding/xml/xml.go

    	"equiv":    "\u2261",
    	"le":       "\u2264",
    	"ge":       "\u2265",
    	"sub":      "\u2282",
    	"sup":      "\u2283",
    	"nsub":     "\u2284",
    	"sube":     "\u2286",
    	"supe":     "\u2287",
    	"oplus":    "\u2295",
    	"otimes":   "\u2297",
    	"perp":     "\u22A5",
    	"sdot":     "\u22C5",
    	"lceil":    "\u2308",
    	"rceil":    "\u2309",
    	"lfloor":   "\u230A",
    	"rfloor":   "\u230B",
    	"lang":     "\u2329",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/src/operators/cpp/plus.cpp

    #include "operators.h"
    
    int plus(int a, int b) {
    #ifdef PLUS_BROKEN
        return 2;
    #else
        return a + b;
    #endif
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 115 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/src/operators/c/plus.c

    #include "operators.h"
    
    int plus(int a, int b) {
    #ifdef PLUS_BROKEN
        return 2;
    #else
        return a + b;
    #endif
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 115 bytes
    - Viewed (0)
  7. src/regexp/syntax/parse_test.go

    	{`a(b|c)d`, `cat{lit{a}cap{cc{0x62-0x63}}lit{d}}`},
    
    	// Test flattening.
    	{`(?:a)`, `lit{a}`},
    	{`(?:ab)(?:cd)`, `str{abcd}`},
    	{`(?:a+b+)(?:c+d+)`, `cat{plus{lit{a}}plus{lit{b}}plus{lit{c}}plus{lit{d}}}`},
    	{`(?:a+|b+)|(?:c+|d+)`, `alt{plus{lit{a}}plus{lit{b}}plus{lit{c}}plus{lit{d}}}`},
    	{`(?:a|b)|(?:c|d)`, `cc{0x61-0x64}`},
    	{`a|.`, `dot{}`},
    	{`.|a`, `dot{}`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 16:02:30 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  8. src/regexp/syntax/compile.go

    		sub := c.compile(re.Sub[0])
    		ket := c.cap(uint32(re.Cap<<1 | 1))
    		return c.cat(c.cat(bra, sub), ket)
    	case OpStar:
    		return c.star(c.compile(re.Sub[0]), re.Flags&NonGreedy != 0)
    	case OpPlus:
    		return c.plus(c.compile(re.Sub[0]), re.Flags&NonGreedy != 0)
    	case OpQuest:
    		return c.quest(c.compile(re.Sub[0]), re.Flags&NonGreedy != 0)
    	case OpConcat:
    		if len(re.Sub) == 0 {
    			return c.nop()
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 13 14:52:20 UTC 2021
    - 6.8K bytes
    - Viewed (0)
  9. platforms/core-runtime/build-process-services/src/main/java/org/gradle/api/internal/DefaultClassPathProvider.java

                classpath = classpath.plus(moduleRegistry.getModule("gradle-language-groovy").getImplementationClasspath());
                classpath = classpath.plus(moduleRegistry.getExternalModule("groovy").getClasspath());
                classpath = classpath.plus(moduleRegistry.getExternalModule("groovy-json").getClasspath());
                classpath = classpath.plus(moduleRegistry.getExternalModule("groovy-xml").getClasspath());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. platforms/core-runtime/process-services/src/main/java/org/gradle/process/ExecSpec.java

         * Sets the full command line, including the executable to be executed plus its arguments.
         *
         * @param args the command plus the args to be executed
         * @since 4.0
         */
        void setCommandLine(List<String> args);
    
        /**
         * Sets the full command line, including the executable to be executed plus its arguments.
         *
         * @param args the command plus the args to be executed
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 2.9K bytes
    - Viewed (0)
Back to top