Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for movbeq (0.18 sec)

  1. src/runtime/mgc.go

    // gcTestMoveStackOnNextCall causes the stack to be moved on a call
    // immediately following the call to this. It may not work correctly
    // if any other work appears after this call (such as returning).
    // Typically the following call should be marked go:noinline so it
    // performs a stack check.
    //
    // In rare cases this may not cause the stack to move, specifically if
    // there's a preemption between this call and the next.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    	DN_HAS_PROBLEM           = 0x00000400        // Need device installer
    	DN_FILTERED              = 0x00000800        // Is filtered
    	DN_MOVED                 = 0x00001000        // Has been moved
    	DN_DISABLEABLE           = 0x00002000        // Can be disabled
    	DN_REMOVABLE             = 0x00004000        // Can be removed
    	DN_PRIVATE_PROBLEM       = 0x00008000        // Has a private problem
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modget/get.go

    			// (it is always relative to the initial build list, before applying
    			// queries). So the only way that the result of an "all" query can change
    			// is if some matching package moves from one module in the build list
    			// to another, which should not happen very often.
    			continue
    		}
    
    		// When we load imports, we detect the following conditions:
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/dwarf.go

    	a.Link = die.Attr
    	die.Attr = a
    	a.Atr = attr
    	a.Cls = uint8(cls)
    	a.Value = value
    	a.Data = data
    }
    
    // Each DIE (except the root ones) has at least 1 attribute: its
    // name. getattr moves the desired one to the front so
    // frequently searched ones are found faster.
    func getattr(die *dwarf.DWDie, attr uint16) *dwarf.DWAttr {
    	if die.Attr.Atr == attr {
    		return die.Attr
    	}
    
    	a := die.Attr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

        const llvm::SetVector<Value>& inputs, const llvm::SetVector<Value>& outputs,
        func::FuncOp parent_func, ModuleOp module, const std::string& name,
        bool flag_for_inlining) {
      // Moves all of the Operations in 'ops' into a newly created func.FuncOp
      // function named 'name' and replaces the original ops with a call to the
      // newly created function using a tf.StatefulPartitionedCall. Here,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/lib.go

    	// be populated, so that it can walk the functions in each unit.
    	// Call into the loader to do this (requires that we collect the
    	// set of internal libraries first). NB: might be simpler if we
    	// moved isRuntimeDepPkg to cmd/internal and then did the test in
    	// loader.AssignTextSymbolOrder.
    	ctxt.Library = postorder(ctxt.Library)
    	intlibs := []bool{}
    	for _, lib := range ctxt.Library {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
Back to top