Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for zig (0.06 sec)

  1. src/image/jpeg/scan.go

    			}
    
    			zig, err = d.refineNonZeroes(b, zig, zigEnd, int32(val0), delta)
    			if err != nil {
    				return err
    			}
    			if zig > zigEnd {
    				return FormatError("too many coefficients")
    			}
    			if z != 0 {
    				b[unzig[zig]] = z
    			}
    		}
    	}
    	if d.eobRun > 0 {
    		d.eobRun--
    		if _, err := d.refineNonZeroes(b, zig, zigEnd, -1, delta); err != nil {
    			return err
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 00:46:29 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  2. src/image/jpeg/writer.go

    // natural (not zig-zag) order.
    func (e *encoder) writeBlock(b *block, q quantIndex, prevDC int32) int32 {
    	fdct(b)
    	// Emit the DC delta.
    	dc := div(b[0], 8*int32(e.quant[q][0]))
    	e.emitHuffRLE(huffIndex(2*q+0), 0, dc-prevDC)
    	// Emit the AC components.
    	h, runLength := huffIndex(2*q+1), int32(0)
    	for zig := 1; zig < blockSize; zig++ {
    		ac := div(b[unzig[zig]], 8*int32(e.quant[q][zig]))
    		if ac == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  3. src/encoding/binary/varint.go

    //   least significant bits
    // - the most significant bit (msb) in each output byte indicates if there
    //   is a continuation byte (msb = 1)
    // - signed integers are mapped to unsigned integers using "zig-zag"
    //   encoding: Positive values x are written as 2*x + 0, negative values
    //   are written as 2*(^x) + 1; that is, negative numbers are complemented
    //   and whether to complement is encoded in bit 0.
    //
    // Design note:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  4. src/crypto/tls/testdata/Client-TLSv10-ECDHE-ECDSA-AES

    000002a0  a8 31 00 8a 30 81 87 02  42 01 21 7e c2 26 cb 5e  |.1..0...B.!~.&.^|
    000002b0  f1 2a d2 9b 7f 3f b4 d4  28 5e 63 5a 20 aa 28 87  |.*...?..(^cZ .(.|
    000002c0  bb dd 5c 6a 91 a2 2d 03  7a 69 67 8b ca 84 a6 1f  |..\j..-.zig.....|
    000002d0  d3 58 40 eb 5c 54 95 96  05 d0 37 63 e4 a6 1b 51  |.X@.\T....7c...Q|
    000002e0  9a d0 93 31 82 e6 8e a0  af 29 64 02 41 4c ff ac  |...1.....)d.AL..|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  5. src/image/jpeg/reader.go

    const (
    	adobeTransformUnknown = 0
    	adobeTransformYCbCr   = 1
    	adobeTransformYCbCrK  = 2
    )
    
    // unzig maps from the zig-zag ordering to the natural ordering. For example,
    // unzig[3] is the column and row of the fourth element in zig-zag order. The
    // value is 16, which means first column (16%8 == 0) and third row (16/8 == 2).
    var unzig = [blockSize]int{
    	0, 1, 8, 16, 9, 2, 3, 10,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SmbFile.java

     * </code></td>
     * </tr>
     * 
     * <tr>
     * <td width="20%"><code>
     *  smb://host/share/foo/bar/
     * </code></td>
     * <td width="20%"><code>
     *  /share2/zig/zag
     * </code></td>
     * <td><code>
     *  smb://host/share2/zig/zag
     * </code></td>
     * </tr>
     * 
     * <tr>
     * <td width="20%"><code>
     *  smb://host/share/foo/bar/
     * </code></td>
     * <td width="20%"><code>
     *  ../zip/
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  7. src/cmd/go/internal/work/buildid.go

    				// C compiler may use. (Clang and GCC mostly seem to follow the scheme X.Y.Z,
    				// but in https://go.dev/issue/64619 we saw "8.3 [DragonFly]", and who knows
    				// what other C compilers like "zig cc" might report?)
    				next := fields[i+1]
    				if len(next) > 0 && next[0] >= '0' && next[0] <= '9' {
    					version = line
    					break
    				}
    			}
    		}
    		if version != "" {
    			break
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/exec.go

    		a = append(a, "-fno-caret-diagnostics")
    	}
    	// clang is too smart about command-line arguments
    	if b.gccSupportsFlag(compiler, "-Qunused-arguments") {
    		a = append(a, "-Qunused-arguments")
    	}
    
    	// zig cc passes --gc-sections to the underlying linker, which then causes
    	// undefined symbol errors when compiling with cgo but without C code.
    	// https://github.com/golang/go/issues/52690
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
Back to top