Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for Tocoffset (1.9 sec)

  1. src/debug/macho/macho.go

    		Cmd            LoadCmd
    		Len            uint32
    		Ilocalsym      uint32
    		Nlocalsym      uint32
    		Iextdefsym     uint32
    		Nextdefsym     uint32
    		Iundefsym      uint32
    		Nundefsym      uint32
    		Tocoffset      uint32
    		Ntoc           uint32
    		Modtaboff      uint32
    		Nmodtab        uint32
    		Extrefsymoff   uint32
    		Nextrefsyms    uint32
    		Indirectsymoff uint32
    		Nindirectsyms  uint32
    		Extreloff      uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 14 00:56:52 UTC 2021
    - 7.6K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/macho_combine_dwarf.go

    			err = machoUpdateLoadCommand(reader, linkseg, linkoffset, &macho.SymtabCmd{}, "Symoff", "Stroff")
    		case macho.LoadCmdDysymtab:
    			err = machoUpdateLoadCommand(reader, linkseg, linkoffset, &macho.DysymtabCmd{}, "Tocoffset", "Modtaboff", "Extrefsymoff", "Indirectsymoff", "Extreloff", "Locreloff")
    		case LC_CODE_SIGNATURE, LC_SEGMENT_SPLIT_INFO, LC_FUNCTION_STARTS, LC_DATA_IN_CODE, LC_DYLIB_CODE_SIGN_DRS,
    			LC_DYLD_EXPORTS_TRIE, LC_DYLD_CHAINED_FIXUPS:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/macho.go

    	n += nkind[SymKindExtdef]
    
    	ml.data[4] = uint32(n)                   /* iundefsym */
    	ml.data[5] = uint32(nkind[SymKindUndef]) /* nundefsym */
    
    	ml.data[6] = 0  /* tocoffset */
    	ml.data[7] = 0  /* ntoc */
    	ml.data[8] = 0  /* modtaboff */
    	ml.data[9] = 0  /* nmodtab */
    	ml.data[10] = 0 /* extrefsymoff */
    	ml.data[11] = 0 /* nextrefsyms */
    
    	ldr := ctxt.loader
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  4. src/image/ycbcr.go

    		return color.YCbCr{}
    	}
    	yi := p.YOffset(x, y)
    	ci := p.COffset(x, y)
    	return color.YCbCr{
    		p.Y[yi],
    		p.Cb[ci],
    		p.Cr[ci],
    	}
    }
    
    // YOffset returns the index of the first element of Y that corresponds to
    // the pixel at (x, y).
    func (p *YCbCr) YOffset(x, y int) int {
    	return (y-p.Rect.Min.Y)*p.YStride + (x - p.Rect.Min.X)
    }
    
    // COffset returns the index of the first element of Cb or Cr that corresponds
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  5. src/image/jpeg/writer_test.go

    			col := color.RGBA{
    				uint8(rnd.Intn(256)),
    				uint8(rnd.Intn(256)),
    				uint8(rnd.Intn(256)),
    				255,
    			}
    			imgRGBA.SetRGBA(x, y, col)
    			yo := imgYCbCr.YOffset(x, y)
    			co := imgYCbCr.COffset(x, y)
    			cy, ccr, ccb := color.RGBToYCbCr(col.R, col.G, col.B)
    			imgYCbCr.Y[yo] = cy
    			imgYCbCr.Cb[co] = ccr
    			imgYCbCr.Cr[co] = ccb
    		}
    	}
    
    	// Now check that both images are identical after an encode.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:49:30 UTC 2022
    - 7.2K bytes
    - Viewed (0)
  6. src/image/ycbcr_test.go

    	// will be set multiple times. That's OK. We just want to avoid a uniform image.
    	for y := r1.Min.Y; y < r1.Max.Y; y++ {
    		for x := r1.Min.X; x < r1.Max.X; x++ {
    			yi := m.YOffset(x, y)
    			ci := m.COffset(x, y)
    			m.Y[yi] = uint8(16*y + x)
    			m.Cb[ci] = uint8(y + 16*x)
    			m.Cr[ci] = uint8(y + 16*x)
    		}
    	}
    
    	// Make various sub-images of m.
    	for y0 := delta.Y + 3; y0 < delta.Y+7; y0++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 26 00:14:16 UTC 2015
    - 3.3K bytes
    - Viewed (0)
  7. src/runtime/mgcscavenge_test.go

    		}
    		find = func(want ChunkIdx, wantOffset uint) {
    			t.Helper()
    
    			got, gotOffset := si.Find(force)
    			if want != got {
    				t.Errorf("find: wanted chunk index %d, got %d", want, got)
    			}
    			if wantOffset != gotOffset {
    				t.Errorf("find: wanted page offset %d, got %d", wantOffset, gotOffset)
    			}
    			if t.Failed() {
    				t.FailNow()
    			}
    			si.SetEmpty(got)
    		}
    		nextGen = func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  8. api/go1.6.txt

    pkg image, method (*NYCbCrA) AOffset(int, int) int
    pkg image, method (*NYCbCrA) At(int, int) color.Color
    pkg image, method (*NYCbCrA) Bounds() Rectangle
    pkg image, method (*NYCbCrA) COffset(int, int) int
    pkg image, method (*NYCbCrA) ColorModel() color.Model
    pkg image, method (*NYCbCrA) NYCbCrAAt(int, int) color.NYCbCrA
    pkg image, method (*NYCbCrA) Opaque() bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 13 23:40:13 UTC 2016
    - 12.9K bytes
    - Viewed (0)
  9. src/main/webapp/js/admin/moment-with-locales.min.js

    ),this._changeInProgress=null)),this}return this._isUTC?n:Ja(this)},it.utc=function(e){return this.utcOffset(0,e)},it.local=function(e){return this._isUTC&&(this.utcOffset(0,e),this._isUTC=!1,e&&this.subtract(Ja(this),"m")),this},it.parseZone=function(){if(null!=this._tzm)this.utcOffset(this._tzm,!1,!0);else if("string"==typeof this._i){var e=Fa(ne,this._i);null!=e?this.utcOffset(e):this.utcOffset(0,!0)}return this},it.hasAlignedHourOffset=function(e){return!!this.isValid()&&(e=e?Sa(e).utcOffset...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jul 12 13:18:07 UTC 2018
    - 319K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"DysymtabCmd.Nlocalsym", Field, 0},
    		{"DysymtabCmd.Nlocrel", Field, 0},
    		{"DysymtabCmd.Nmodtab", Field, 0},
    		{"DysymtabCmd.Ntoc", Field, 0},
    		{"DysymtabCmd.Nundefsym", Field, 0},
    		{"DysymtabCmd.Tocoffset", Field, 0},
    		{"ErrNotFat", Var, 3},
    		{"FatArch", Type, 3},
    		{"FatArch.FatArchHeader", Field, 3},
    		{"FatArch.File", Field, 3},
    		{"FatArchHeader", Type, 3},
    		{"FatArchHeader.Align", Field, 3},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top