Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 110 for bytereg (0.1 sec)

  1. src/cmd/internal/obj/x86/asm6.go

    				// in the original obj/i386, and it would encode
    				// (using a valid, shorter form) as 3c 00 if we enabled
    				// the call to bytereg here.
    				if ctxt.Arch.Family == sys.AMD64 {
    					bytereg(&p.From, &p.Ft)
    					bytereg(&p.To, &p.Tt)
    				}
    
    			case P32: // 32 bit but illegal if 64-bit mode
    				if ctxt.Arch.Family == sys.AMD64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  2. src/strconv/bytealg.go

    // license that can be found in the LICENSE file.
    
    //go:build !compiler_bootstrap
    
    package strconv
    
    import "internal/bytealg"
    
    // index returns the index of the first instance of c in s, or -1 if missing.
    func index(s string, c byte) int {
    	return bytealg.IndexByteString(s, c)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 389 bytes
    - Viewed (0)
  3. src/internal/bytealg/bytealg.go

    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package bytealg
    
    import (
    	"internal/cpu"
    	"unsafe"
    )
    
    // Offsets into internal/cpu records for use in assembly.
    const (
    	offsetX86HasSSE42  = unsafe.Offsetof(cpu.X86.HasSSE42)
    	offsetX86HasAVX2   = unsafe.Offsetof(cpu.X86.HasAVX2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 19 19:51:15 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. src/crypto/elliptic/elliptic.go

    func Marshal(curve Curve, x, y *big.Int) []byte {
    	panicIfNotOnCurve(curve, x, y)
    
    	byteLen := (curve.Params().BitSize + 7) / 8
    
    	ret := make([]byte, 1+2*byteLen)
    	ret[0] = 4 // uncompressed point
    
    	x.FillBytes(ret[1 : 1+byteLen])
    	y.FillBytes(ret[1+byteLen : 1+2*byteLen])
    
    	return ret
    }
    
    // MarshalCompressed converts a point on the curve into the compressed form
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/query/TermRangeQueryCommand.java

                queryBuf.append(termRangeQuery.includesLower() ? '[' : '{');
                final BytesRef lowerTerm = termRangeQuery.getLowerTerm();
                queryBuf.append(lowerTerm != null ? ("*".equals(Term.toString(lowerTerm)) ? "\\*" : Term.toString(lowerTerm)) : "*");
                queryBuf.append(" TO ");
                final BytesRef upperTerm = termRangeQuery.getUpperTerm();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. src/internal/stringslite/strings.go

    		}
    		return -1
    	case n > len(s):
    		return -1
    	case n <= bytealg.MaxLen:
    		// Use brute force when s and substr both are small
    		if len(s) <= bytealg.MaxBruteForce {
    			return bytealg.IndexString(s, substr)
    		}
    		c0 := substr[0]
    		c1 := substr[1]
    		i := 0
    		t := len(s) - n + 1
    		fails := 0
    		for i < t {
    			if s[i] != c0 {
    				// IndexByte is faster than bytealg.IndexString, so use it as long as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 01:23:42 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/opensearch/extension/analysis/NGramSynonymTokenizer.java

        private long lastModified;
    
        private SynonymMap synonymMap = null;
    
        private FST.Arc<BytesRef> scratchArc;
    
        private FST<BytesRef> fst;
    
        private FST.BytesReader fstReader;
    
        private final BytesRef scratchBytes = new BytesRef();
    
        private final CharsRef scratchChars = new CharsRef();
    
        private int longestMatchEndOffset;
    
        private int ch;
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 17K bytes
    - Viewed (0)
  8. src/strings/compare.go

    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package strings
    
    import "internal/bytealg"
    
    // Compare returns an integer comparing two strings lexicographically.
    // The result will be 0 if a == b, -1 if a < b, and +1 if a > b.
    //
    // Use Compare when you need to perform a three-way comparison (with
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 23:39:07 UTC 2024
    - 628 bytes
    - Viewed (0)
  9. src/crypto/elliptic/elliptic_test.go

    		if curve.IsOnCurve(x, y) {
    			t.Errorf("point off curve is claimed to be on the curve")
    		}
    
    		byteLen := (curve.Params().BitSize + 7) / 8
    		b := make([]byte, 1+2*byteLen)
    		b[0] = 4 // uncompressed point
    		x.FillBytes(b[1 : 1+byteLen])
    		y.FillBytes(b[1+byteLen : 1+2*byteLen])
    
    		x1, y1 := Unmarshal(curve, b)
    		if x1 != nil || y1 != nil {
    			t.Errorf("unmarshaling a point not on the curve succeeded")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 27 02:00:03 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  10. src/net/parse.go

    	n := 0
    	for i := 0; i < len(s); i++ {
    		if bytealg.IndexByteString(t, s[i]) >= 0 {
    			n++
    		}
    	}
    	return n
    }
    
    // Split s at any bytes in t.
    func splitAtBytes(s string, t string) []string {
    	a := make([]string, 1+countAnyByte(s, t))
    	n := 0
    	last := 0
    	for i := 0; i < len(s); i++ {
    		if bytealg.IndexByteString(t, s[i]) >= 0 {
    			if last < i {
    				a[n] = s[last:i]
    				n++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 14:00:54 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top