Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 48 for Qword6 (0.27 sec)

  1. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    		(MOVLstoreconst [makeValAndOff(0,0)] destptr mem))
    
    // Strip off any fractional word zeroing.
    (Zero [s] destptr mem) && s%8 != 0 && s > 8 && !config.useSSE =>
    	(Zero [s-s%8] (OffPtr <destptr.Type> destptr [s%8])
    		(MOVQstoreconst [makeValAndOff(0,0)] destptr mem))
    
    // Zero small numbers of words directly.
    (Zero [16] destptr mem) && !config.useSSE =>
    	(MOVQstoreconst [makeValAndOff(0,8)] destptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (AND (MOVDconst [m]) (ROTLW x r)) && isPPC64WordRotateMask(m) => (RLWNM [encodePPC64RotateMask(0,m,32)] x r)
    
    // Note, any rotated word bitmask is still a valid word bitmask.
    (ROTLWconst [r] (AND (MOVDconst [m]) x)) && isPPC64WordRotateMask(m) => (RLWINM [encodePPC64RotateMask(r,rotateLeft32(m,r),32)] x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/dwarf.go

    		dwarf.Uleb128put(d, fsd, int64(0))                  // ...is CFA+0.
    	} else {
    		dwarf.Uleb128put(d, fsd, int64(d.arch.PtrSize)) // ...plus the word size (because the call instruction implicitly adds one word to the frame).
    
    		fsu.AddUint8(dwarf.DW_CFA_offset_extended)                           // The previous value...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  4. pkg/proxy/winkernel/proxier.go

    		if updatedNetwork != nil {
    			proxier.network = *updatedNetwork
    		}
    		return
    	}
    
    	// We assume that if this was called, we really want to sync them,
    	// even if nothing changed in the meantime. In other words, callers are
    	// responsible for detecting no-op changes and not calling this function.
    	serviceUpdateResult := proxier.svcPortMap.Update(proxier.serviceChanges)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

    
    class SymbolTable(object):
      """Symbol Table for python code."""
    
      def __init__(self):
        self.symbols = []
        self.enter_scope()
        self.scf_scope = 0
        # reserved key words
        self.insert_symbol('len', 'len', TFRTypes.PY_BUILTIN_FUNC)
    
      def enter_scope(self, scf_scope=False):
        """Enter a new scope - at function level."""
        self.symbols.append({'types': {}, 'symbols': {}})
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  6. guava/src/com/google/common/base/CharMatcher.java

        return Whitespace.INSTANCE;
      }
    
      /**
       * Determines whether a character is a breaking whitespace (that is, a whitespace which can be
       * interpreted as a break between words for formatting purposes). See {@link #whitespace()} for a
       * discussion of that term.
       *
       * @since 19.0 (since 2.0 as constant {@code BREAKING_WHITESPACE})
       */
      public static CharMatcher breakingWhitespace() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/riscv/obj.go

    	ABEXTI & obj.AMask: iIEncoding,
    	ABINV & obj.AMask:  rIIIEncoding,
    	ABINVI & obj.AMask: iIEncoding,
    	ABSET & obj.AMask:  rIIIEncoding,
    	ABSETI & obj.AMask: iIEncoding,
    
    	// Escape hatch
    	AWORD & obj.AMask: rawEncoding,
    
    	// Pseudo-operations
    	obj.AFUNCDATA: pseudoOpEncoding,
    	obj.APCDATA:   pseudoOpEncoding,
    	obj.ATEXT:     pseudoOpEncoding,
    	obj.ANOP:      pseudoOpEncoding,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

              "description": "message is a human-readable message indicating details about last transition.",
              "type": "string"
            },
            "reason": {
              "description": "reason is a unique, one-word, CamelCase reason for the condition's last transition.",
              "type": "string"
            },
            "status": {
              "description": "status is the status of the condition. Can be True, False, Unknown.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    In other words, you can only use one or the other in Groovy for any given method.
    
    ==== Calling Kotlin from Groovy
    
    To call a Kotlin function that has named arguments from Groovy, just use a normal method call with positional parameters.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  10. pkg/scheduler/internal/queue/scheduling_queue.go

    	podMaxInUnschedulablePodsDuration time.Duration
    
    	cond sync.Cond
    
    	// inFlightPods holds the UID of all pods which have been popped out for which Done
    	// hasn't been called yet - in other words, all pods that are currently being
    	// processed (being scheduled, in permit, or in the binding cycle).
    	//
    	// The values in the map are the entry of each pod in the inFlightEvents list.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
Back to top