Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 181 for y_const (0.74 sec)

  1. src/cmd/cgo/internal/testplugin/testdata/issue25756/plugin/life.go

    var chans [4]chan bool
    
    // Double return value is just for testing.
    //
    //export GoStart
    func GoStart(i, xdim, ydim, xstart, xend, ystart, yend C.int, a *C.int, n *C.int) (int, int) {
    	c := make(chan bool, int(C.MYCONST))
    	go func() {
    		C.DoStep(xdim, ydim, xstart, xend, ystart, yend, a, n)
    		c <- true
    	}()
    	chans[i] = c
    	return int(i), int(i + 100)
    }
    
    //export GoWait
    func GoWait(i C.int) {
    	<-chans[i]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 889 bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/testlife/testdata/c-life.c

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    #include <assert.h>
    #include "life.h"
    #include "_cgo_export.h"
    
    const int MYCONST = 0;
    
    // Do the actual manipulation of the life board in C.  This could be
    // done easily in Go, we are just using C for demonstration
    // purposes.
    void
    Step(int x, int y, int *a, int *n)
    {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/testplugin/testdata/issue25756/plugin/c-life.c

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    #include <assert.h>
    #include "life.h"
    #include "_cgo_export.h"
    
    const int MYCONST = 0;
    
    // Do the actual manipulation of the life board in C.  This could be
    // done easily in Go, we are just using C for demonstration
    // purposes.
    void
    Step(int x, int y, int *a, int *n)
    {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/sccp.go

    	constCnt, rewireCnt := 0, 0
    	for val, lt := range t.latticeCells {
    		if lt.tag == constant {
    			if !isConst(val) {
    				if t.f.pass.debug > 0 {
    					fmt.Printf("Replace %v with %v\n", val.LongString(), lt.val.LongString())
    				}
    				val.reset(lt.val.Op)
    				val.AuxInt = lt.val.AuxInt
    				constCnt++
    			}
    			// If const value controls this block, rewires successors according to its value
    			ctrlBlock := t.defBlock[val]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:54:50 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/initorder.go

    }
    
    func (a nodeQueue) Less(i, j int) bool {
    	x, y := a[i], a[j]
    
    	// Prioritize all constants before non-constants. See go.dev/issue/66575/.
    	_, xConst := x.obj.(*Const)
    	_, yConst := y.obj.(*Const)
    	if xConst != yConst {
    		return xConst
    	}
    
    	// nodes are prioritized by number of incoming dependencies (1st key)
    	// and source order (2nd key)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 22:06:51 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  6. src/go/types/initorder.go

    }
    
    func (a nodeQueue) Less(i, j int) bool {
    	x, y := a[i], a[j]
    
    	// Prioritize all constants before non-constants. See go.dev/issue/66575/.
    	_, xConst := x.obj.(*Const)
    	_, yConst := y.obj.(*Const)
    	if xConst != yConst {
    		return xConst
    	}
    
    	// nodes are prioritized by number of incoming dependencies (1st key)
    	// and source order (2nd key)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/SourceMetaDataVisitor.java

            }
        }
    
        @Override
        public void visit(FieldDeclaration fieldDeclaration, ClassMetaDataRepository<ClassMetaData> arg) {
            boolean isConst = getCurrentClass().isInterface() || (fieldDeclaration.isStatic() && fieldDeclaration.isFinal());
            if (isConst) {
                fieldDeclaration.getVariables().forEach(variableDeclarator -> {
                    String constName = variableDeclarator.getNameAsString();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 21 13:27:02 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/experimental/tac/transforms/fold_constants_to_subgraph.cc

          if (!llvm::isa<TFL::ConstOp, TFL::QConstOp, arith::ConstantOp>(op))
            return;
    
          // We only fold int32/int64 for Const and i32 for QConst if not specify
          // all constants flag. (Since they're more like "configs" or i32 biases.)
          // We will fold every const ops (and q_const ops) if we speicfy the
          // fold_all_constants_flag.
          if (!fold_all_constants_flag_) {
            if (!IsConstOrQConstInt(op)) return;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (MOVWUreg (ANDconst [c] x)) => (ANDconst [c&(1<<32-1)] x)
    (MOVHUreg (ANDconst [c] x)) => (ANDconst [c&(1<<16-1)] x)
    (MOVBUreg (ANDconst [c] x)) => (ANDconst [c&(1<<8-1)] x)
    (ORconst  [c] (MOVDconst [d]))  => (MOVDconst [c|d])
    (ORconst  [c] (ORconst [d] x))  => (ORconst [c|d] x)
    (XORconst [c] (MOVDconst [d]))  => (MOVDconst [c^d])
    (XORconst [c] (XORconst [d] x)) => (XORconst [c^d] x)
    (MVN (MOVDconst [c])) => (MOVDconst [^c])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/ARM.rules

    	(RSBconst [32] (CLZ <t> (SUBconst <typ.UInt32> (AND <typ.UInt32> (ORconst <typ.UInt32> [0x10000] x) (RSBconst <typ.UInt32> [0] (ORconst <typ.UInt32> [0x10000] x))) [1])))
    (Ctz8 <t> x) && buildcfg.GOARM.Version<=6 =>
    	(RSBconst [32] (CLZ <t> (SUBconst <typ.UInt32> (AND <typ.UInt32> (ORconst <typ.UInt32> [0x100] x) (RSBconst <typ.UInt32> [0] (ORconst <typ.UInt32> [0x100] x))) [1])))
    
    // count trailing zero for ARMv7
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 90.1K bytes
    - Viewed (0)
Back to top