Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for Eccpos (0.29 sec)

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

    		Length uint32
    		Locked uint32
    	}
    	NandOobinfo struct {
    		Useecc   uint32
    		Eccbytes uint32
    		Oobfree  [8][2]uint32
    		Eccpos   [32]uint32
    	}
    	NandOobfree struct {
    		Offset uint32
    		Length uint32
    	}
    	NandEcclayout struct {
    		Eccbytes uint32
    		Eccpos   [64]uint32
    		Oobavail uint32
    		Oobfree  [8]NandOobfree
    	}
    	MtdEccStats struct {
    		Corrected uint32
    		Failed    uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
  2. src/compress/flate/dict_decoder.go

    	// Thus, a backwards copy is performed here; that is, the exact bytes in
    	// the source prior to the copy is placed in the destination.
    	if srcPos < 0 {
    		srcPos += len(dd.hist)
    		dstPos += copy(dd.hist[dstPos:endPos], dd.hist[srcPos:])
    		srcPos = 0
    	}
    
    	// Copy possibly overlapping section before destination position.
    	//
    	// This section can overlap if the copy length for this section is larger
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateResponse.java

                        ctx.decode(buffer, ncpos, dataLen);
                        contexts[ i ] = ctx;
                    }
                    ncpos += dataLen;
                    if ( i != negotiateContextCount - 1 ) {
                        ncpos += pad8(ncpos);
                    }
                }
                this.negotiateContexts = contexts;
                return Math.max(bufferIndex, ncpos) - start;
            }
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Mar 22 10:09:46 UTC 2020
    - 17.6K bytes
    - Viewed (0)
  4. src/text/scanner/scanner.go

    func (s *Scanner) next() rune {
    	ch, width := rune(s.srcBuf[s.srcPos]), 1
    
    	if ch >= utf8.RuneSelf {
    		// uncommon case: not ASCII or not enough bytes
    		for s.srcPos+utf8.UTFMax > s.srcEnd && !utf8.FullRune(s.srcBuf[s.srcPos:s.srcEnd]) {
    			// not enough bytes: read some more, but first
    			// save away token text if any
    			if s.tokPos >= 0 {
    				s.tokBuf.Write(s.srcBuf[s.tokPos:s.srcPos])
    				s.tokPos = 0
    				// s.tokEnd is set by Scan()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  5. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/JavadocScanner.java

         */
        public void find(char c) {
            int cpos = pos;
            while (cpos < input.length()) {
                if (input.charAt(cpos) == c) {
                    break;
                }
                cpos++;
            }
            pos = cpos;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 4.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/test/pgo_inl_test.go

    	// Check that a hash match allows PGO inlining.
    	const srcPos = "example.com/pgo/inline/inline_hot.go:81:19"
    	const hashMatch = "pgohash triggered " + srcPos + " (inline)"
    	pgoDebugRE := regexp.MustCompile(`hot-budget check allows inlining for call .* at ` + strings.ReplaceAll(srcPos, ".", "\\."))
    	hash := "v1" // 1 matches srcPos, v for verbose (print source location)
    	gcflag := gcflag0 + ",pgohash=" + hash
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  7. src/go/ast/import.go

    		return false
    	}
    	return prev.(*ImportSpec).Comment == nil
    }
    
    type posSpan struct {
    	Start token.Pos
    	End   token.Pos
    }
    
    type cgPos struct {
    	left bool // true if comment is to the left of the spec, false otherwise.
    	cg   *CommentGroup
    }
    
    func sortSpecs(fset *token.FileSet, f *File, specs []Spec) []Spec {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ir/func.go

    func NewClosureFunc(fpos, cpos src.XPos, why Op, typ *types.Type, outerfn *Func, pkg *Package) *Func {
    	fn := NewFunc(fpos, fpos, closureName(outerfn, cpos, why), typ)
    	fn.SetIsHiddenClosure(outerfn != nil)
    	if outerfn != nil {
    		fn.SetDupok(outerfn.Dupok()) // if the outer function is dupok, so is the closure
    	}
    
    	clo := &ClosureExpr{Func: fn}
    	clo.op = OCLOSURE
    	clo.pos = cpos
    	clo.SetType(typ)
    	clo.SetTypecheck(1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/net/InetAddresses.java

        byte[] targetCopyArray = new byte[numBytes];
    
        int srcPos = Math.max(0, addressBytes.length - numBytes);
        int copyLength = addressBytes.length - srcPos;
        int destPos = numBytes - copyLength;
    
        // Check the extra bytes in the BigInteger are all zero.
        for (int i = 0; i < srcPos; i++) {
          if (addressBytes[i] != 0x00) {
            throw formatIllegalArgumentException(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  10. guava/src/com/google/common/net/InetAddresses.java

        byte[] targetCopyArray = new byte[numBytes];
    
        int srcPos = Math.max(0, addressBytes.length - numBytes);
        int copyLength = addressBytes.length - srcPos;
        int destPos = numBytes - copyLength;
    
        // Check the extra bytes in the BigInteger are all zero.
        for (int i = 0; i < srcPos; i++) {
          if (addressBytes[i] != 0x00) {
            throw formatIllegalArgumentException(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
Back to top