Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for writeBlock (0.16 sec)

  1. src/image/jpeg/writer.go

    						yCbCrToYCbCr(ycbcr, p, &b, &cb[i], &cr[i])
    					} else {
    						toYCbCr(m, p, &b, &cb[i], &cr[i])
    					}
    					prevDCY = e.writeBlock(&b, 0, prevDCY)
    				}
    				scale(&b, &cb)
    				prevDCCb = e.writeBlock(&b, 1, prevDCCb)
    				scale(&b, &cr)
    				prevDCCr = e.writeBlock(&b, 1, prevDCCr)
    			}
    		}
    	}
    	// Pad the last byte with 1's.
    	e.emit(0x7f, 7)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  2. src/compress/flate/deflate.go

    		}
    	}
    	n := copy(d.window[d.windowEnd:], b)
    	d.windowEnd += n
    	return n
    }
    
    func (d *compressor) writeBlock(tokens []token, index int) error {
    	if index > 0 {
    		var window []byte
    		if d.blockStart <= index {
    			window = d.window[d.blockStart:index]
    		}
    		d.blockStart = index
    		d.w.writeBlock(tokens, false, window)
    		return d.w.err
    	}
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  3. src/compress/flate/huffman_bit_writer_test.go

    	},
    }
    
    // TestWriteBlock tests if the writeBlock encoding has changed.
    // To update the reference files use the "-update" flag on the test.
    func TestWriteBlock(t *testing.T) {
    	for _, test := range writeBlockTests {
    		testBlock(t, test, "wb")
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 19:12:23 UTC 2020
    - 40.3K bytes
    - Viewed (0)
  4. src/runtime/pprof/pprof.go

    	return n
    }
    
    // countMutex returns the number of records in the mutex profile.
    func countMutex() int {
    	n, _ := runtime.MutexProfile(nil)
    	return n
    }
    
    // writeBlock writes the current blocking profile to w.
    func writeBlock(w io.Writer, debug int) error {
    	return writeProfileInternal(w, debug, "contention", pprof_blockProfileInternal)
    }
    
    // writeMutex writes the current mutex profile to w.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  5. src/compress/flate/huffman_bit_writer.go

    		value = 3
    	}
    	w.writeBits(value, 3)
    }
    
    // writeBlock will write a block of tokens with the smallest encoding.
    // The original input can be supplied, and if the huffman encoded data
    // is larger than the original bytes, the data will be written as a
    // stored block.
    // If the input is nil, the tokens will always be Huffman encoded.
    func (w *huffmanBitWriter) writeBlock(tokens []token, eof bool, input []byte) {
    	if w.err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 22:59:14 UTC 2022
    - 18.4K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/util/concurrent/CycleDetectingLockFactoryTest.java

        // Establish an ordering from writeLockA -> writeLockB.
        writeLockA.lock();
        writeLockB.lock();
        writeLockB.unlock();
        writeLockA.unlock();
    
        // Establish an ordering from writeLockB -> writeLockC.
        writeLockB.lock();
        writeLockC.lock();
        writeLockB.unlock();
    
        // writeLockC -> writeLockA should fail.
        PotentialDeadlockException expected =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/util/concurrent/CycleDetectingLockFactoryTest.java

        // Establish an ordering from writeLockA -> writeLockB.
        writeLockA.lock();
        writeLockB.lock();
        writeLockB.unlock();
        writeLockA.unlock();
    
        // Establish an ordering from writeLockB -> writeLockC.
        writeLockB.lock();
        writeLockC.lock();
        writeLockB.unlock();
    
        // writeLockC -> writeLockA should fail.
        PotentialDeadlockException expected =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  8. src/internal/poll/fd_unix.go

    		}
    		err = fd.eofError(n, err)
    		return n, oobn, sysflags, err
    	}
    }
    
    // Write implements io.Writer.
    func (fd *FD) Write(p []byte) (int, error) {
    	if err := fd.writeLock(); err != nil {
    		return 0, err
    	}
    	defer fd.writeUnlock()
    	if err := fd.pd.prepareWrite(fd.isFile); err != nil {
    		return 0, err
    	}
    	var nn int
    	for {
    		max := len(p)
    		if fd.IsStream && max-nn > maxRW {
    			max = nn + maxRW
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 04:09:44 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  9. src/internal/poll/fd_windows.go

    		return n, err
    	}
    	rawToSockaddrInet6(o.rsa, sa6)
    	return n, err
    }
    
    // Write implements io.Writer.
    func (fd *FD) Write(buf []byte) (int, error) {
    	if err := fd.writeLock(); err != nil {
    		return 0, err
    	}
    	defer fd.writeUnlock()
    	if fd.isFile {
    		fd.l.Lock()
    		defer fd.l.Unlock()
    	}
    
    	ntotal := 0
    	for len(buf) > 0 {
    		b := buf
    		if len(b) > maxRW {
    			b = b[:maxRW]
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 16:50:42 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  10. src/os/file_plan9.go

    // Since Plan 9 preserves message boundaries, never allow
    // a zero-byte write.
    func (f *File) write(b []byte) (n int, err error) {
    	if err := f.writeLock(); err != nil {
    		return 0, err
    	}
    	defer f.writeUnlock()
    	if len(b) == 0 {
    		return 0, nil
    	}
    	return fixCount(syscall.Write(f.fd, b))
    }
    
    // pwrite writes len(b) bytes to the File starting at byte offset off.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:35:30 UTC 2024
    - 16K bytes
    - Viewed (0)
Back to top