Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 55 for offset2 (0.19 sec)

  1. src/cmd/vendor/golang.org/x/text/cases/tables13.0.0.go

    	// Block 0x91, offset 0x39c
    	{value: 0x0010, lo: 0x80, hi: 0xb1},
    	{value: 0x0004, lo: 0xb2, hi: 0xbf},
    	// Block 0x92, offset 0x39e
    	{value: 0x0004, lo: 0x80, hi: 0x81},
    	{value: 0x0010, lo: 0x93, hi: 0xbf},
    	// Block 0x93, offset 0x3a0
    	{value: 0x0010, lo: 0x80, hi: 0xbd},
    	// Block 0x94, offset 0x3a1
    	{value: 0x0010, lo: 0x90, hi: 0xbf},
    	// Block 0x95, offset 0x3a2
    	{value: 0x0010, lo: 0x80, hi: 0x8f},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 100.7K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/arm64/asm7.go

    /* checkoffset checks whether the immediate offset is valid for VLD[1-4].P and VST[1-4].P */
    func (c *ctxt7) checkoffset(p *obj.Prog, as obj.As) {
    	var offset, list, n, expect int64
    	switch as {
    	case AVLD1, AVLD2, AVLD3, AVLD4, AVLD1R, AVLD2R, AVLD3R, AVLD4R:
    		offset = p.From.Offset
    		list = p.To.Offset
    	case AVST1, AVST2, AVST3, AVST4:
    		offset = p.To.Offset
    		list = p.From.Offset
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/text/cases/tables15.0.0.go

    	// Block 0x90, offset 0x39f
    	{value: 0x0010, lo: 0x80, hi: 0xb1},
    	{value: 0x0004, lo: 0xb2, hi: 0xbf},
    	// Block 0x91, offset 0x3a1
    	{value: 0x0004, lo: 0x80, hi: 0x82},
    	{value: 0x0010, lo: 0x93, hi: 0xbf},
    	// Block 0x92, offset 0x3a3
    	{value: 0x0010, lo: 0x80, hi: 0xbd},
    	// Block 0x93, offset 0x3a4
    	{value: 0x0010, lo: 0x90, hi: 0xbf},
    	// Block 0x94, offset 0x3a5
    	{value: 0x0010, lo: 0x80, hi: 0x8f},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 106.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/text/cases/tables12.0.0.go

    	// Block 0x90, offset 0x393
    	{value: 0x0010, lo: 0x80, hi: 0xb1},
    	{value: 0x0004, lo: 0xb2, hi: 0xbf},
    	// Block 0x91, offset 0x395
    	{value: 0x0004, lo: 0x80, hi: 0x81},
    	{value: 0x0010, lo: 0x93, hi: 0xbf},
    	// Block 0x92, offset 0x397
    	{value: 0x0010, lo: 0x80, hi: 0xbd},
    	// Block 0x93, offset 0x398
    	{value: 0x0010, lo: 0x90, hi: 0xbf},
    	// Block 0x94, offset 0x399
    	{value: 0x0010, lo: 0x80, hi: 0x8f},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 99.2K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/ppc64/asm9.go

    			rel.Type = objabi.R_ADDRPOWER_PCREL34
    		} else if c.opform(inst) == DS_FORM && v&0x3 != 0 {
    			log.Fatalf("invalid offset for DS form load/store %v", p)
    		}
    
    	case 75: // 32 bit offset symbol loads (got/toc/addr)
    		var rel *obj.Reloc
    		v := p.From.Offset
    
    		// Offsets in DS form loads must be a multiple of 4
    		inst := c.opload(p.As)
    		switch p.From.Name {
    		case obj.NAME_GOTREF, obj.NAME_TOCREF:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  6. src/debug/elf/elf.go

    	R_MIPS_TLS_GOTTPREL    R_MIPS = 46 /* 16 bit GOT offset for IE */
    	R_MIPS_TLS_TPREL32     R_MIPS = 47 /* TP-relative offset, 32 bit */
    	R_MIPS_TLS_TPREL64     R_MIPS = 48 /* TP-relative offset, 64 bit */
    	R_MIPS_TLS_TPREL_HI16  R_MIPS = 49 /* TP-relative offset, high 16 bits */
    	R_MIPS_TLS_TPREL_LO16  R_MIPS = 50 /* TP-relative offset, low 16 bits */
    
    	R_MIPS_PC32 R_MIPS = 248 /* 32 bit PC relative reference */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  7. src/reflect/value.go

    				switch st.kind {
    				case abiStepIntReg:
    					offset := add(s, st.offset, "precomputed value offset")
    					intFromReg(&regArgs, st.ireg, st.size, offset)
    				case abiStepPointer:
    					s := add(s, st.offset, "precomputed value offset")
    					*((*unsafe.Pointer)(s)) = regArgs.Ptrs[st.ireg]
    				case abiStepFloatReg:
    					offset := add(s, st.offset, "precomputed value offset")
    					floatFromReg(&regArgs, st.freg, st.size, offset)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      // Append constant and custom op buffers at the end of the flatbuffer and
      // calculate the offsets
      void AppendBufferData(absl::Cord& result);
    
      // Update constant & custom op buffer offsets
      // Return false if fail to update offset
      bool UpdateBufferOffsets(tflite::Model* mutable_model);
    
      // check if Flatbuffer builder can no longer hold the given amount of the data
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/s390x/asmz.go

    		if offset < -DISP20/2 || offset >= DISP20/2 {
    			if reg != int16(regtmp(p)) {
    				zRRE(op_LGR, regtmp(p), uint32(reg), asm)
    			}
    			zRIL(_a, op_AGFI, regtmp(p), uint32(offset), asm)
    			reg = int16(regtmp(p))
    			offset = 0
    		}
    		switch p.As {
    		case ASTMY:
    			if offset >= 0 && offset < DISP12 {
    				zRS(op_STM, uint32(rstart), uint32(rend), uint32(reg), uint32(offset), asm)
    			} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/data.go

    				}
    			}
    
    			o = ldr.SymValue(rs) + r.Add()
    			if rt == objabi.R_PEIMAGEOFF {
    				// The R_PEIMAGEOFF offset is a RVA, so subtract
    				// the base address for the executable.
    				o -= PEBASE
    			}
    
    			// On amd64, 4-byte offsets will be sign-extended, so it is impossible to
    			// access more than 2GB of static data; fail at link time is better than
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
Back to top