Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 189 for noff (0.19 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_linux_arm.go

    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags int) (n int, err error) {
    	r0, _, e1 := Syscall6(SYS_SPLICE, uintptr(rfd), uintptr(unsafe.Pointer(roff)), uintptr(wfd), uintptr(unsafe.Pointer(woff)), uintptr(len), uintptr(flags))
    	n = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  2. src/internal/zstd/block.go

    		off++
    	} else {
    		if off+1 >= len(data) {
    			return 0, 0, r.makeEOFError(off)
    		}
    		seqCount = int(data[off]) + (int(data[off+1]) << 8) + 0x7f00
    		off += 2
    	}
    
    	// Read the Symbol_Compression_Modes byte.
    
    	if off >= len(data) {
    		return 0, 0, r.makeEOFError(off)
    	}
    	symMode := data[off]
    	if symMode&3 != 0 {
    		return 0, 0, r.makeError(off, "invalid symbol compression mode")
    	}
    	off++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 28 17:57:43 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/dwarf_test.go

    	}
    
    	if off := typedieof(ptrastructTypeDIE); off != astructTypeDIE.Offset {
    		t.Errorf("type attribute of *main.astruct references %#x, not main.astruct DIE at %#x\n", off, astructTypeDIE.Offset)
    	}
    
    	if off := typedieof(globalptrDIE); off != ptrastructTypeDIE.Offset {
    		t.Errorf("type attribute of main.globalptr references %#x, not *main.astruct DIE at %#x\n", off, ptrastructTypeDIE.Offset)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 01:38:11 UTC 2024
    - 48.6K bytes
    - Viewed (0)
  4. guava/src/com/google/common/base/Ascii.java

       * single "stop" control is required to interrupt or turn off ancillary devices, DC4 is the
       * preferred assignment.)
       *
       * @since 8.0
       */
      public static final byte DC3 = 19; // aka XOFF
    
      /**
       * Transmission off. See {@link #XON} for explanation.
       *
       * @since 8.0
       */
      public static final byte XOFF = 19; // aka DC3
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jul 19 15:43:07 UTC 2021
    - 21.6K bytes
    - Viewed (0)
  5. src/debug/gosym/pclntab.go

    	return v
    }
    
    // funcName returns the name of the function found at off.
    func (t *LineTable) funcName(off uint32) string {
    	if s, ok := t.funcNames[off]; ok {
    		return s
    	}
    	i := bytes.IndexByte(t.funcnametab[off:], 0)
    	s := string(t.funcnametab[off : off+uint32(i)])
    	t.funcNames[off] = s
    	return s
    }
    
    // stringFrom returns a Go string found at off from a position.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 19:43:24 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  6. src/cmd/link/internal/loadpe/ldpe.go

    					rAdd = int64(int32(binary.LittleEndian.Uint32(state.sectdata[rsect][rOff:])))
    
    				case IMAGE_REL_I386_DIR32NB, IMAGE_REL_I386_DIR32:
    					if r.Type == IMAGE_REL_I386_DIR32NB {
    						rType = objabi.R_PEIMAGEOFF
    					} else {
    						rType = objabi.R_ADDR
    					}
    
    					// load addend from image
    					rAdd = int64(int32(binary.LittleEndian.Uint32(state.sectdata[rsect][rOff:])))
    
    				case IMAGE_REL_AMD64_ADDR64: // R_X86_64_64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 20:26:46 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  7. src/cmd/link/internal/loadelf/ldelf.go

    					rAdd = int64(e.Uint32(sect.base[rOff:]))
    				} else if rSize == 8 {
    					rAdd = int64(e.Uint64(sect.base[rOff:]))
    				} else {
    					return errorf("invalid rela size %d", rSize)
    				}
    			}
    
    			if addendSize == 2 {
    				rAdd = int64(int16(rAdd))
    			}
    			if addendSize == 4 {
    				rAdd = int64(int32(rAdd))
    			}
    
    			r, _ := sb.AddRel(rType)
    			r.SetOff(rOff)
    			r.SetSiz(rSize)
    			r.SetSym(rSym)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:12:12 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  8. src/runtime/mkpreempt.go

    		lfp.add("MOVD", reg, 8)
    	}
    
    	p("MOVW.W R14, -%d(R13)", lfp.stack) // allocate frame, save LR
    	l.save()
    	p("MOVB ·goarmsoftfp(SB), R0\nCMP $0, R0\nBNE nofp") // test goarmsoftfp, and skip FP registers if goarmsoftfp!=0.
    	lfp.save()
    	label("nofp:")
    	p("CALL ·asyncPreempt2(SB)")
    	p("MOVB ·goarmsoftfp(SB), R0\nCMP $0, R0\nBNE nofp2") // test goarmsoftfp, and skip FP registers if goarmsoftfp!=0.
    	lfp.restore()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  9. src/cmd/link/internal/arm64/asm.go

    // relocation targeting s+off. The label symbols is used on Darwin/Windows
    // when external linking, so that the addend fits in a Mach-O/PE relocation.
    func offsetLabelName(ldr *loader.Loader, s loader.Sym, off int64) string {
    	if off>>20<<20 == off {
    		return fmt.Sprintf("%s+%dMB", ldr.SymExtname(s), off>>20)
    	}
    	return fmt.Sprintf("%s+%d", ldr.SymExtname(s), off)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 20:09:45 UTC 2024
    - 47K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/deadcode.go

    		off += 3 * arch.PtrSize
    	case abi.Chan: // reflect.chanType
    		off += 2 * arch.PtrSize
    	case abi.Map: // reflect.mapType
    		off += 4*arch.PtrSize + 8
    	case abi.Interface: // reflect.interfaceType
    		off += 3 * arch.PtrSize
    	default:
    		// just Sizeof(rtype)
    	}
    
    	mcount := int(decodeInuxi(arch, p[off+4:], 2))
    	moff := int(decodeInuxi(arch, p[off+4+2+2:], 4))
    	off += moff                // offset to array of reflect.method values
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 19K bytes
    - Viewed (0)
Back to top