Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 183 for qword (0.05 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/syscall.go

    		return ""
    	}
    
    	// Find NUL terminator.
    	n := 0
    	for ptr := unsafe.Pointer(p); *(*byte)(ptr) != 0; n++ {
    		ptr = unsafe.Pointer(uintptr(ptr) + 1)
    	}
    
    	return string(unsafe.Slice(p, n))
    }
    
    // Single-word zero for use when we need a valid pointer to 0 bytes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/stylesheets/custom-highlight/kotlin-hl.xml

            <keyword>reified</keyword>
            <keyword>sealed</keyword>
            <keyword>suspend</keyword>
            <keyword>tailrec</keyword>
            <keyword>vararg</keyword>
            <style>word</style>
        </highlighter>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/wasm/a.out.go

    	// However, it is not allowed to switch goroutines while inside of an ACALLNORESUME call.
    	ACALLNORESUME
    
    	ARETUNWIND
    
    	AMOVB
    	AMOVH
    	AMOVW
    	AMOVD
    
    	AWORD
    	ALAST
    )
    
    const (
    	REG_NONE = 0
    )
    
    const (
    	// globals
    	REG_SP = obj.RBaseWasm + iota // SP is currently 32-bit, until 64-bit memory operations are available
    	REG_CTXT
    	REG_g
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 02 05:28:55 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. src/regexp/syntax/prog.go

    		op ^= (EmptyWordBoundary | EmptyNoWordBoundary)
    	}
    	return op
    }
    
    // IsWordChar reports whether r is considered a “word character”
    // during the evaluation of the \b and \B zero-width assertions.
    // These assertions are ASCII-only: the word characters are [A-Za-z0-9_].
    func IsWordChar(r rune) bool {
    	// Test for lowercase letters first, as these occur more
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:50:01 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  5. src/internal/bytealg/indexbyte_s390x.s

    	CMPBNE	R1, $0, vectorimpl
    
    srstimpl:                       // no vector facility
    	MOVBZ	R5, R0          // c needs to be in R0, leave until last minute as currently R0 is expected to be 0
    srstloop:
    	WORD	$0xB25E0083     // srst %r8, %r3 (search the range [R3, R8))
    	BVS	srstloop        // interrupted - continue
    	BGT	notfoundr0
    foundr0:
    	XOR	R0, R0          // reset R0
    	SUB	R6, R8          // remove base
    	MOVD	R8, 0(R2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 08 20:52:47 UTC 2018
    - 2.5K bytes
    - Viewed (0)
  6. src/cmd/internal/gcprog/gcprog.go

    			panic("gcprog: out of sync")
    		}
    	}
    }
    
    // Ptr emits a 1 into the bit stream at the given bit index.
    // that is, it records that the index'th word in the object memory is a pointer.
    // Any bits between the current index and the new index
    // are set to zero, meaning the corresponding words are scalars.
    func (w *Writer) Ptr(index int64) {
    	if index < w.index {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  7. pkg/kubelet/lifecycle/interfaces.go

    	OtherPods []*v1.Pod
    }
    
    // PodAdmitResult provides the result of a pod admission decision.
    type PodAdmitResult struct {
    	// if true, the pod should be admitted.
    	Admit bool
    	// a brief single-word reason why the pod could not be admitted.
    	Reason string
    	// a brief message explaining why the pod could not be admitted.
    	Message string
    }
    
    // PodAdmitHandler is notified during pod admission.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 22 17:25:57 UTC 2017
    - 4K bytes
    - Viewed (0)
  8. guava/src/com/google/common/hash/ChecksumHashFunction.java

        }
    
        @Override
        public HashCode hash() {
          long value = checksum.getValue();
          if (bits == 32) {
            /*
             * The long returned from a 32-bit Checksum will have all 0s for its second word, so the
             * cast won't lose any information and is necessary to return a HashCode of the correct
             * size.
             */
            return HashCode.fromInt((int) value);
          } else {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 22:01:56 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. src/internal/bytealg/compare_386.s

    	MOVL	a_len+4(FP), BX
    	MOVL	b_base+8(FP), DI
    	MOVL	b_len+12(FP), DX
    	LEAL	ret+16(FP), AX
    	JMP	cmpbody<>(SB)
    
    // input:
    //   SI = a
    //   DI = b
    //   BX = alen
    //   DX = blen
    //   AX = address of return word (set to 1/0/-1)
    TEXT cmpbody<>(SB),NOSPLIT,$0-0
    	MOVL	DX, BP
    	SUBL	BX, DX // DX = blen-alen
    	JLE	2(PC)
    	MOVL	BX, BP // BP = min(alen, blen)
    	CMPL	SI, DI
    	JEQ	allsame
    	CMPL	BP, $4
    	JB	small
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 23 21:22:58 UTC 2021
    - 2.6K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/ExcludeJsonLogToCode.groovy

            "nut",
            "store",
            "finger"
        ]
    
        private final Map<String, String> mappingCache = [:].withDefault {
            def size = mappingCache.size()
            size >WORDS.size() ? "word${size}" : WORDS[size]
        }
    
        /**
         * Converts an operation dumped as JSON into code which can be used to
         * check the result, to be used in {@link NormalizingExcludeFactory}
         *
         * @param json
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.9K bytes
    - Viewed (0)
Back to top