Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 242 for doffsets (0.14 sec)

  1. src/runtime/sys_windows_amd64.s

    	// TODO: don't use the arbitrary pointer (see go.dev/issue/59824)
    	MOVQ	$TEB_ArbitraryPtr, CX
    	JMP	settls
    ok:
    	// Convert the TLS index at CX into
    	// an offset from TEB_TlsSlots.
    	SHLQ	$3, CX
    
    	// Save offset from TLS into tls_g.
    	ADDQ	$TEB_TlsSlots, CX
    settls:
    	MOVQ	CX, runtimeĀ·tls_g(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 19 07:24:08 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. src/runtime/profbuf.go

    // for the stack.
    //
    // The current effective offsets into the tags and data circular buffers
    // for reading and writing are stored in the high 30 and low 32 bits of r and w.
    // The bottom bits of the high 32 are additional flag bits in w, unused in r.
    // "Effective" offsets means the total number of reads or writes, mod 2^length.
    // The offset in the buffer is the effective offset mod the length of the buffer.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbFileInputStream.java

    import jcifs.internal.smb2.io.Smb2ReadRequest;
    import jcifs.internal.smb2.io.Smb2ReadResponse;
    import jcifs.util.transport.TransportException;
    
    
    /**
     * This InputStream can read bytes from a file on an SMB file server. Offsets are 64 bits.
     */
    public class SmbFileInputStream extends InputStream {
    
        private static final Logger log = LoggerFactory.getLogger(SmbFileInputStream.class);
    
        private SmbFileHandleImpl handle;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun May 17 08:55:14 UTC 2020
    - 13.2K bytes
    - Viewed (0)
  4. cmd/object-api-utils.go

    	}
    
    	return &HTTPRangeSpec{Start: start, End: end}
    }
    
    // Returns the compressed offset which should be skipped.
    // If encrypted offsets are adjusted for encrypted block headers/trailers.
    // Since de-compression is after decryption encryption overhead is only added to compressedOffset.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  5. tensorflow/cc/gradients/array_grad.cc

      }
      if (grad_inputs.size() != 1) {
        return errors::InvalidArgument("Concat grad should have 1 input");
      }
    
      // For each dx[i], we take a slice of dy. The offset and size of the
      // slice is given by offset[i] and shape[i].
      const Output& dy = grad_inputs[0];
      for (int i = 0; i < inputs.size(); ++i) {
        grad_outputs->push_back(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 10 23:33:32 UTC 2023
    - 31.7K bytes
    - Viewed (0)
  6. src/crypto/aes/asm_ppc64x.s

    	VCIPHER	V0, V1, V0
    	VCIPHER	V0, V2, V0
    
    	// Load xk[20:27] and cipher
    	LXVD2X	(R10+R5), V1
    	LXVD2X	(R11+R5), V2
    	VCIPHER	V0, V1, V0
    	VCIPHER	V0, V2, V0
    
    	// Increment xk pointer to reuse constant offsets in R6-R12.
    	ADD	$112, R5
    
    	// Load xk[28:35] and cipher
    	LXVD2X	(R0+R5), V1
    	LXVD2X	(R6+R5), V2
    	VCIPHER	V0, V1, V0
    	VCIPHER	V0, V2, V0
    
    	// Load xk[36:43] and cipher
    	LXVD2X	(R7+R5), V1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:05:32 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/writebarrier.go

    	}
    	if size%ptrSize != 0 {
    		ptr.Fatalf("unaligned pointer write")
    	}
    	if off < 0 || off+size > 64*ptrSize {
    		// memory range goes off end of tracked offsets
    		return true
    	}
    	z := zeroes[mem.ID]
    	if ptr != z.base {
    		// This isn't the object we know about at this memory state.
    		return true
    	}
    	// Mask of bits we're asking about
    	m := (uint64(1)<<(size/ptrSize) - 1) << (off / ptrSize)
    
    	if z.mask&m == m {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:09:14 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/macho_combine_dwarf.go

    func (r loadCmdReader) ReadAt(offset int64, data interface{}) error {
    	if _, err := r.f.Seek(r.offset+offset, 0); err != nil {
    		return err
    	}
    	return binary.Read(r.f, r.order, data)
    }
    
    func (r loadCmdReader) WriteAt(offset int64, data interface{}) error {
    	if _, err := r.f.Seek(r.offset+offset, 0); err != nil {
    		return err
    	}
    	return binary.Write(r.f, r.order, data)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. src/runtime/symtab.go

    	funcnameOffset uintptr // offset to the funcnametab variable from pcHeader
    	cuOffset       uintptr // offset to the cutab variable from pcHeader
    	filetabOffset  uintptr // offset to the filetab variable from pcHeader
    	pctabOffset    uintptr // offset to the pctab variable from pcHeader
    	pclnOffset     uintptr // offset to the pclntab variable from pcHeader
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  10. src/internal/abi/type.go

    	// is freed.
    	TFlagUnrolledBitmap TFlag = 1 << 4
    )
    
    // NameOff is the offset to a name from moduledata.types.  See resolveNameOff in runtime.
    type NameOff int32
    
    // TypeOff is the offset to a type from moduledata.types.  See resolveTypeOff in runtime.
    type TypeOff int32
    
    // TextOff is an offset from the top of a text section.  See (rtype).textOff in runtime.
    type TextOff int32
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:09:59 UTC 2024
    - 21.8K bytes
    - Viewed (0)
Back to top