Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 166 for bufLen (0.11 sec)

  1. src/vendor/golang.org/x/crypto/sha3/sha3_s390x.go

    	return &c
    }
    
    // copyIntoBuf copies b into buf. It will panic if there is not enough space to
    // store all of b.
    func (s *asmState) copyIntoBuf(b []byte) {
    	bufLen := len(s.buf)
    	s.buf = s.buf[:len(s.buf)+len(b)]
    	copy(s.buf[bufLen:], b)
    }
    
    // resetBuf points buf at storage, sets the length to 0 and sets cap to be a
    // multiple of the rate.
    func (s *asmState) resetBuf() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	}
    	return
    }
    
    func VirtualQuery(address uintptr, buffer *MemoryBasicInformation, length uintptr) (err error) {
    	r1, _, e1 := syscall.Syscall(procVirtualQuery.Addr(), 3, uintptr(address), uintptr(unsafe.Pointer(buffer)), uintptr(length))
    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func VirtualQueryEx(process Handle, address uintptr, buffer *MemoryBasicInformation, length uintptr) (err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    //sys	AdjustTokenPrivileges(token Token, disableAllPrivileges bool, newstate *Tokenprivileges, buflen uint32, prevstate *Tokenprivileges, returnlen *uint32) (err error) = advapi32.AdjustTokenPrivileges
    //sys	AdjustTokenGroups(token Token, resetToDefault bool, newstate *Tokengroups, buflen uint32, prevstate *Tokengroups, returnlen *uint32) (err error) = advapi32.AdjustTokenGroups
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  4. cmd/xl-storage-format-v2.go

    			if wantMax > size {
    				wantMax = size
    			}
    			if err := readMore(wantMax); err != nil {
    				return nil, err
    			}
    
    			if int64(len(buf)) < want {
    				return nil, fmt.Errorf("buffer shorter than expected (buflen: %d, want: %d): %w", len(buf), want, errFileCorrupt)
    			}
    
    			tmp = buf[want:]
    			_, after, err := msgp.ReadUint32Bytes(tmp)
    			if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  5. src/net/http/serve_test.go

    		defer close(done)
    		if bufLen := readBufLen(); bufLen < len(body)/2 {
    			t.Errorf("on request, read buffer length is %d; expected about 100 KB", bufLen)
    		}
    		rw.WriteHeader(200)
    		rw.(Flusher).Flush()
    		if g, e := readBufLen(), 0; g != e {
    			t.Errorf("after WriteHeader, read buffer length is %d; want %d", g, e)
    		}
    		if c := rw.Header().Get("Connection"); c != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  6. maven-embedder/src/main/java/org/apache/maven/cli/transfer/ConsoleMavenTransferListener.java

                    buffer.append(" | ");
                }
            }
    
            int pad = lastLength - buffer.length();
            lastLength = buffer.length();
            pad(buffer, pad);
            buffer.append('\r');
            out.print(buffer);
            out.flush();
            buffer.setLength(0);
        }
    
        private void pad(StringBuilder buffer, int spaces) {
            String block = "                                        ";
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 21:48:41 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache_interval.go

    	wci.fillBuffer()
    	if event, exists := wci.buffer.next(); exists {
    		return event, nil
    	}
    	return nil, nil
    }
    
    func (wci *watchCacheInterval) fillBuffer() {
    	wci.buffer.startIndex = 0
    	wci.buffer.endIndex = 0
    	for wci.startIndex < wci.endIndex && !wci.buffer.isFull() {
    		event := wci.indexer(wci.startIndex)
    		if event == nil {
    			break
    		}
    		wci.buffer.buffer[wci.buffer.endIndex] = event
    		wci.buffer.endIndex++
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/utils/string_utils.h

      // Add string to dynamic buffer by resizing the buffer and copying the data.
      absl::Status AddString(const char* str, size_t len);
    
      // Fill content into a buffer and returns the number of bytes stored.
      // The function allocates space for the buffer but does NOT take ownership.
      int WriteToBuffer(char** buffer);
    
     private:
      // Data buffer to store contents of strings, not including headers.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/utils/string_utils.cc

      //   * length of whole buffer (int32_t)
      //   * num of strings (int32_t).
      int32_t bytes = data_.size()                            // size of content
                      + sizeof(int32_t) * (num_strings + 2);  // size of header
      // Caller will take ownership of buffer.
      *buffer = reinterpret_cast<char*>(malloc(bytes));
    
      if (*buffer == nullptr) {
        return -1;
      }
    
      // Set num of string
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/quantization/lite/quantize_weights_test.cc

            // If tensor is quantized, data type and buffer contents can be
            // different between float and quantized tensors. So do those tests
            // separately in the test body without checking them here.
            used_tensors.push_back(i);
            return float_tensor;
          } else {
            // Otherwise, do additional checks for data type and buffer contents.
            const std::vector<uint8_t> quantized_buffer =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 32.3K bytes
    - Viewed (0)
Back to top