Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for Eccpos (0.19 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/cmd/link/internal/ld/pe.go

    	// first entry: extended relocs
    	out.Write32(0) // placeholder for number of relocation + 1
    	out.Write32(0)
    	out.Write16(0)
    
    	n := relocfn() + 1
    
    	cpos := out.Offset()
    	out.SeekSet(int64(sect.pointerToRelocations))
    	out.Write32(uint32(n))
    	out.SeekSet(cpos)
    	if n > 0x10000 {
    		n = 0x10000
    		sect.characteristics |= IMAGE_SCN_LNK_NRELOC_OVFL
    	} else {
    		sect.pointerToRelocations += 10 // skip the extend reloc entry
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 48.8K bytes
    - Viewed (0)
Back to top