Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 77 for comp2 (0.06 sec)

  1. src/cmd/internal/obj/mips/obj0.go

    			*p = s[0].p
    			p.Link = q
    		}
    		for s[0].nop != 0 {
    			s[0].nop--
    			c.addnop(p)
    		}
    	}
    }
    
    func (c *ctxt0) markregused(s *Sch) {
    	p := &s.p
    	s.comp = c.compound(p)
    	s.nop = 0
    	if s.comp {
    		s.set.ireg |= 1 << (REGTMP - REG_R0)
    		s.used.ireg |= 1 << (REGTMP - REG_R0)
    	}
    
    	ar := 0  /* dest is really reference */
    	ad := 0  /* source/dest is really address */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:28:53 UTC 2023
    - 30.6K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/LibraryDependenciesIntegrationTest.groovy

            def app = new CppHelloWorldApp()
            app.executable.writeSources(file("src/main"))
            app.library.writeSources(file("src/hello"))
    
            and:
            buildFile << """
    model {
        components { comp ->
            hello(NativeLibrarySpec)
            main(NativeExecutableSpec) {
                sources {
                    cpp.lib ${notation}
                }
            }
        }
    }
    """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

      // CHECK-DAG: [[CMP2:%.+]] = chlo.broadcast_compare %arg0, [[ZEROS1]] {comparison_direction = #chlo<comparison_direction LT>}
      // CHECK-DAG: [[ZEROS2:%.+]] = mhlo.constant dense<0>
      // CHECK-DAG: [[CMP3:%.+]] = chlo.broadcast_compare %arg1, [[ZEROS2]] {comparison_direction = #chlo<comparison_direction LT>}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  4. tensorflow/cc/framework/cc_op_gen_util.cc

              "bitor",
              "bool",
              "break",
              "case",
              "catch",
              "char",
              "char16_t",
              "char32_t",
              "class",
              "compl",
              "concept",
              "const",
              "const_cast",
              "constexpr",
              "continue",
              "decltype",
              "default",
              "delete",
              "do",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 00:57:05 UTC 2024
    - 25K bytes
    - Viewed (0)
  5. src/math/lgamma.go

    			p := y*p1 + p2
    			lgamma += (p - 0.5*y)
    		case 1:
    			z := y * y
    			w := z * y
    			p1 := _lgamT[0] + w*(_lgamT[3]+w*(_lgamT[6]+w*(_lgamT[9]+w*_lgamT[12]))) // parallel comp
    			p2 := _lgamT[1] + w*(_lgamT[4]+w*(_lgamT[7]+w*(_lgamT[10]+w*_lgamT[13])))
    			p3 := _lgamT[2] + w*(_lgamT[5]+w*(_lgamT[8]+w*(_lgamT[11]+w*_lgamT[14])))
    			p := z*p1 - (Tt - w*(p2+y*p3))
    			lgamma += (Tf + p)
    		case 2:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 11K bytes
    - Viewed (0)
  6. src/regexp/testdata/testregex.c

    #ifdef REG_DISCIPLINE
    
    
    #include <stk.h>
    
    typedef struct Disc_s
    {
    	regdisc_t	disc;
    	int		ordinal;
    	Sfio_t*		sp;
    } Disc_t;
    
    static void*
    compf(const regex_t* re, const char* xstr, size_t xlen, regdisc_t* disc)
    {
    	Disc_t*		dp = (Disc_t*)disc;
    
    	return (void*)((char*)0 + ++dp->ordinal);
    }
    
    static int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 51.3K bytes
    - Viewed (0)
  7. android/pom.xml

                    <arg>-J--add-opens=jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED</arg>
                    <arg>-J--add-opens=jdk.compiler/com.sun.tools.javac.comp=ALL-UNNAMED</arg>
                  </compilerArgs>
                </configuration>
              </plugin>
            </plugins>
          </build>
        </profile>
        <profile>
          <id>javac-for-jvm18plus</id>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  8. pom.xml

                    <arg>-J--add-opens=jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED</arg>
                    <arg>-J--add-opens=jdk.compiler/com.sun.tools.javac.comp=ALL-UNNAMED</arg>
                  </compilerArgs>
                </configuration>
              </plugin>
            </plugins>
          </build>
        </profile>
        <profile>
          <id>javac-for-jvm18plus</id>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  9. test/codegen/comparisons.go

    	if a-b*c >= 0 {
    		c4 = 1
    	}
    	return c1 + c2 + c3 + c4
    }
    
    func cmp1(val string) bool {
    	var z string
    	// amd64:-".*memequal"
    	return z == val
    }
    
    func cmp2(val string) bool {
    	var z string
    	// amd64:-".*memequal"
    	return val == z
    }
    
    func cmp3(val string) bool {
    	z := "food"
    	// amd64:-".*memequal"
    	return z == val
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 16:31:02 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/rewritedec64.go

    		return true
    	}
    }
    func rewriteValuedec64_OpCom64(v *Value) bool {
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (Com64 x)
    	// result: (Int64Make (Com32 <typ.UInt32> (Int64Hi x)) (Com32 <typ.UInt32> (Int64Lo x)))
    	for {
    		x := v_0
    		v.reset(OpInt64Make)
    		v0 := b.NewValue0(v.Pos, OpCom32, typ.UInt32)
    		v1 := b.NewValue0(v.Pos, OpInt64Hi, typ.UInt32)
    		v1.AddArg(x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:42:34 UTC 2023
    - 65.3K bytes
    - Viewed (0)
Back to top