Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for pdat0 (0.04 sec)

  1. src/image/png/paeth_test.go

    			copy(pdat2, pdat0)
    			copy(cdat1, cdat0)
    			copy(cdat2, cdat0)
    			filterPaeth(cdat1, pdat1, bytesPerPixel)
    			slowFilterPaeth(cdat2, pdat2, bytesPerPixel)
    			if !bytes.Equal(cdat1, cdat2) {
    				t.Errorf("bytesPerPixel: %d\npdat0: % x\ncdat0: % x\ngot:   % x\nwant:  % x", bytesPerPixel, pdat0, cdat0, cdat1, cdat2)
    				break
    			}
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 2.2K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/seh.go

    		// Reference:
    		// https://learn.microsoft.com/en-us/cpp/build/exception-handling-x64#struct-runtime_function
    		pdata.AddPEImageRelativeAddrPlus(ctxt.Arch, s, 0)
    		pdata.AddPEImageRelativeAddrPlus(ctxt.Arch, s, ldr.SymSize(s))
    		pdata.AddPEImageRelativeAddrPlus(ctxt.Arch, xdata.Sym(), off)
    	}
    	sehp.pdata = append(sehp.pdata, pdata.Sym())
    	sehp.xdata = append(sehp.xdata, xdata.Sym())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. src/cmd/link/internal/loadpe/seh.go

    		return processSEHAMD64(ldr, pdata)
    	default:
    		// TODO: support SEH on other architectures.
    		return fmt.Errorf("unsupported architecture for SEH: %v", arch.Family)
    	}
    }
    
    func processSEHAMD64(ldr *loader.Loader, pdata sym.LoaderSym) error {
    	// The following loop traverses a list of pdata entries,
    	// each entry being 3 relocations long. The first relocation
    	// is a pointer to the function symbol to which the pdata entry
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 22 16:20:28 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  4. src/image/png/paeth.go

    }
    
    // filterPaeth applies the Paeth filter to the cdat slice.
    // cdat is the current row's data, pdat is the previous row's data.
    func filterPaeth(cdat, pdat []byte, bytesPerPixel int) {
    	var a, b, c, pa, pb, pc int
    	for i := 0; i < bytesPerPixel; i++ {
    		a, c = 0, 0
    		for j := i; j < len(cdat); j += bytesPerPixel {
    			b = int(pdat[j])
    			pa = b - c
    			pb = a - c
    			pc = abs(pa + pb)
    			pa = abs(pa)
    			pb = abs(pb)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.7K bytes
    - Viewed (0)
  5. .github/workflows/mint/minio-pools.yaml

    version: '3.7'
    
    # Settings and configurations that are common for all containers
    x-minio-common: &minio-common
      image: quay.io/minio/minio:${JOB_NAME}
      command: server --console-address ":9001" http://minio{1...4}/pdata{1...2} http://minio{5...8}/pdata{1...2}
      expose:
        - "9000"
        - "9001"
      environment:
        MINIO_CI_CD: "on"
        MINIO_ROOT_USER: "minio"
        MINIO_ROOT_PASSWORD: "minio123"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Nov 03 21:18:18 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  6. src/runtime/runtime-seh_windows_test.go

    	}
    	// This test checks that Win32 is able to retrieve
    	// function metadata stored in the .pdata section
    	// by the Go linker.
    	// Win32 unwinding will fail if this test fails,
    	// as RtlUnwindEx uses RtlLookupFunctionEntry internally.
    	// If that's the case, don't bother investigating further,
    	// first fix the .pdata generation.
    	sehf1pc := abi.FuncPCABIInternal(sehf1)
    	var fnwithframe func()
    	fnwithframe = func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 16:52:06 UTC 2023
    - 4.7K bytes
    - Viewed (0)
Back to top