Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for barcode (0.42 sec)

  1. src/compress/flate/huffman_bit_writer.go

    	}
    
    	cgnl = codegen[numLiterals : numLiterals+numOffsets]
    	for i := range cgnl {
    		cgnl[i] = uint8(offEnc.codes[i].len)
    	}
    	codegen[numLiterals+numOffsets] = badCode
    
    	size := codegen[0]
    	count := 1
    	outIndex := 0
    	for inIndex := 1; size != badCode; inIndex++ {
    		// INVARIANT: We have seen "count" copies of size that have not yet
    		// had output generated for them.
    		nextSize := codegen[inIndex]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 22:59:14 UTC 2022
    - 18.4K bytes
    - Viewed (0)
  2. src/compress/lzw/writer.go

    type writer interface {
    	io.ByteWriter
    	Flush() error
    }
    
    const (
    	// A code is a 12 bit value, stored as a uint32 when encoding to avoid
    	// type conversions when shifting bits.
    	maxCode     = 1<<12 - 1
    	invalidCode = 1<<32 - 1
    	// There are 1<<12 possible codes, which is an upper bound on the number of
    	// valid hash table entries at any given point in time. tableSize is 4x that.
    	tableSize = 4 * 1 << 12
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. src/crypto/x509/internal/macos/security.go

    	if int32(ret) != 1 {
    		errStr := CFErrorCopyDescription(errRef)
    		err := errors.New(CFStringToString(errStr))
    		errCode := CFErrorGetCode(errRef)
    		CFRelease(errRef)
    		CFRelease(errStr)
    		return errCode, err
    	}
    	return 0, nil
    }
    func x509_SecTrustEvaluateWithError_trampoline()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 21 20:05:17 UTC 2022
    - 9.1K bytes
    - Viewed (0)
  4. src/debug/buildinfo/buildinfo_test.go

    	}
    
    	buildModes := []string{"pie", "exe"}
    	if testenv.HasCGO() {
    		buildModes = append(buildModes, "c-shared")
    	}
    
    	// Keep in sync with src/cmd/go/internal/work/init.go:buildModeInit.
    	badmode := func(goos, goarch, buildmode string) string {
    		return fmt.Sprintf("-buildmode=%s not supported on %s/%s", buildmode, goos, goarch)
    	}
    
    	buildWithModules := func(t *testing.T, goos, goarch, buildmode string) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    		// an even-odd register pair. The second register in the target pair also contains
    		// one of the input operands. Since we don't currently have a way to specify an
    		// even-odd register pair we hardcode this register pair as R2:R3.
    		{
    			name:      "MLGR",
    			argLength: 2,
    			reg:       regInfo{inputs: []regMask{gp, r3}, outputs: []regMask{r2, r3}},
    			asm:       "MLGR",
    		},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
Back to top