Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 49 for writeBlock (0.19 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/cmd/link/internal/ld/data.go

    func writeDatblkToOutBuf(ctxt *Link, out *OutBuf, addr int64, size int64) {
    	writeBlocks(ctxt, out, ctxt.outSem, ctxt.loader, ctxt.datap, addr, size, zeros[:])
    }
    
    func dwarfblk(ctxt *Link, out *OutBuf, addr int64, size int64) {
    	// Concatenate the section symbol lists into a single list to pass
    	// to writeBlocks.
    	//
    	// NB: ideally we would do a separate writeBlocks call for each
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  9. src/os/file_mutex_plan9.go

    func (file *file) readUnlock() {
    	if file.fdmu.ReadUnlock() {
    		file.destroy()
    	}
    }
    
    // writeLock adds a reference to the file and locks it for writing.
    // It returns an error if the file is already closed.
    func (file *file) writeLock() error {
    	if !file.fdmu.WriteLock() {
    		return ErrClosed
    	}
    	return nil
    }
    
    // writeUnlock removes a reference from the file and unlocks it for writing.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 08 03:57:40 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  10. 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)
Back to top