Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,493 for xoffset (0.16 sec)

  1. src/cmd/compile/internal/ssa/expand_calls.go

    	if et == types.TINT64 {
    		tHi = x.typs.Int32
    	}
    	tLo = x.typs.UInt32
    	return
    }
    
    // offsetFrom creates an offset from a pointer, simplifying chained offsets and offsets from SP
    func (x *expandState) offsetFrom(b *Block, from *Value, offset int64, pt *types.Type) *Value {
    	ft := from.Type
    	if offset == 0 {
    		if ft == pt {
    			return from
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 05:13:40 UTC 2023
    - 31.9K bytes
    - Viewed (0)
  2. 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
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:49:30 UTC 2022
    - 7.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/arm/armasm/decode.go

    		d := int32(x & (1<<12 - 1))
    		return Mem{Base: PC, Mode: AddrOffset, Offset: int16(-d)}
    
    	case arg_label_p_12:
    		d := int32(x & (1<<12 - 1))
    		return Mem{Base: PC, Mode: AddrOffset, Offset: int16(d)}
    
    	case arg_label_pm_12:
    		d := int32(x & (1<<12 - 1))
    		u := (x >> 23) & 1
    		if u == 0 {
    			d = -d
    		}
    		return Mem{Base: PC, Mode: AddrOffset, Offset: int16(d)}
    
    	case arg_label_pm_4_4:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  4. 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)
  5. src/debug/elf/file_test.go

    			sjh := sj.SectionHeader
    			if i == j || sjh.Type == SHT_NOBITS || sih.Offset == sjh.Offset && sih.FileSize == 0 {
    				continue
    			}
    			if sih.Offset >= sjh.Offset && sih.Offset < sjh.Offset+sjh.FileSize {
    				t.Errorf("ld produced ELF with section offset %s within %s: 0x%x <= 0x%x..0x%x < 0x%x",
    					sih.Name, sjh.Name, sjh.Offset, sih.Offset, sih.Offset+sih.FileSize, sjh.Offset+sjh.FileSize)
    			}
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  6. src/runtime/memmove_test.go

    	for n := size - 50; n > 1; n >>= 1 {
    		for x := 0; x <= size-n; x = x*7 + 1 { // offset in src
    			for y := 0; y <= size-n; y = y*9 + 1 { // offset in dst
    				copy(dst[y:y+n], src[x:x+n])
    				copyref(ref[y:y+n], src[x:x+n])
    				p := cmpb(dst, ref)
    				if p >= 0 {
    					t.Fatalf("Copy failed, copying from src[%d:%d] to dst[%d:%d].\nOffset %d is different, %v != %v", x, x+n, y, y+n, p, dst[p], ref[p])
    				}
    			}
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:12 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  7. pkg/ctrlz/assets/static/js/bootstrap-4.0.0.min.js

    nu).hasClass(p)&&(n=S),n},l._detectNavbar=function(){return t(this._element).closest(".navbar").length>0},l._getPopperConfig=function(){var t=this,e={};return"function"==typeof this._config.offset?e.fn=function(e){return e.offsets=r({},e.offsets,t._config.offset(e.offsets)||{}),e}:e.offset=this._config.offset,{placement:this._getPlacement(),modifiers:{offset:e,flip:{enabled:this._config.flip},preventOverflow:{boundariesElement:this._config.boundary}}}},a._jQueryInterface=function(e){return this.each(function(){var...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 47.8K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/link.go

    	"internal/abi"
    	"sync"
    	"sync/atomic"
    )
    
    // An Addr is an argument to an instruction.
    // The general forms and their encodings are:
    //
    //	sym±offset(symkind)(reg)(index*scale)
    //		Memory reference at address &sym(symkind) + offset + reg + index*scale.
    //		Any of sym(symkind), ±offset, (reg), (index*scale), and *scale can be omitted.
    //		If (reg) and *scale are both omitted, the resulting expression (index) is parsed as (reg).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  9. src/main/webapp/js/bootstrap.min.js

    .hasClass(Wt)&&(e=$t),e},t._detectNavbar=function(){return 0<g(this._element).closest(".navbar").length},t._getOffset=function(){var e=this,t={};return"function"==typeof this._config.offset?t.fn=function(t){return t.offsets=l({},t.offsets,{},e._config.offset(t.offsets,e._element)||{}),t}:t.offset=this._config.offset,t},t._getPopperConfig=function(){var t={placement:this._getPlacement(),modifiers:{offset:this._getOffset(),flip:{enabled:this._config.flip},preventOverflow:{boundariesElement:this._c...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 58.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/schema/schema_generated.h

        auto o = ::flatbuffers::Offset<Tensor>(end);
        return o;
      }
    };
    
    inline ::flatbuffers::Offset<Tensor> CreateTensor(
        ::flatbuffers::FlatBufferBuilder &_fbb,
        ::flatbuffers::Offset<::flatbuffers::Vector<int32_t>> shape = 0,
        tflite::TensorType type = tflite::TensorType_FLOAT32,
        uint32_t buffer = 0,
        ::flatbuffers::Offset<::flatbuffers::String> name = 0,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1M bytes
    - Viewed (0)
Back to top