Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 44 for NextIp (0.17 sec)

  1. src/cmd/link/internal/wasm/asm.go

    				}
    			}
    		}
    	}
    
    	// collect functions with WebAssembly body
    	var buildid []byte
    	fns := make([]*wasmFunc, len(ctxt.Textp))
    	for i, fn := range ctxt.Textp {
    		wfn := new(bytes.Buffer)
    		if ldr.SymName(fn) == "go:buildid" {
    			writeUleb128(wfn, 0) // number of sets of locals
    			writeI32Const(wfn, 0)
    			wfn.WriteByte(0x0b) // end
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:17:48 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  2. guava/src/com/google/common/math/LongMath.java

            return (cmpXToRoundArbitrarily <= 0) ? roundArbitrarily : Math.nextUp(roundArbitrarily);
          case DOWN:
            if (x >= 0) {
              return (cmpXToRoundArbitrarily >= 0)
                  ? roundArbitrarily
                  : DoubleUtils.nextDown(roundArbitrarily);
            } else {
              return (cmpXToRoundArbitrarily <= 0) ? roundArbitrarily : Math.nextUp(roundArbitrarily);
            }
          case UP:
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 44.6K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/math/MathTesting.java

          for (int direction : new int[] {1, -1}) {
            double d = Double.longBitsToDouble(Double.doubleToLongBits(Math.scalb(1.0, i)) + direction);
            // Math.nextUp/nextDown
            if (d != Math.rint(d)) {
              fractionalBuilder.add(d);
            }
          }
        }
        for (double d :
            Doubles.asList(
                0,
                1,
                2,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 11.2K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/macho.go

    	}
    
    	sizeExtRelocs(ctxt, thearch.MachorelocSize)
    	relocSect, wg := relocSectFn(ctxt, machorelocsect)
    
    	relocSect(ctxt, Segtext.Sections[0], ctxt.Textp)
    	for _, sect := range Segtext.Sections[1:] {
    		if sect.Name == ".text" {
    			relocSect(ctxt, sect, ctxt.Textp)
    		} else {
    			relocSect(ctxt, sect, ctxt.datap)
    		}
    	}
    	for _, sect := range Segrelrodata.Sections {
    		relocSect(ctxt, sect, ctxt.datap)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/xcoff.go

    		}
    	}
    
    	// These symbols won't show up in the first loop below because we
    	// skip sym.STEXT symbols. Normal sym.STEXT symbols are emitted by walking textp.
    	s := ldr.Lookup("runtime.text", 0)
    	if ldr.SymType(s) == sym.STEXT {
    		// We've already included this symbol in ctxt.Textp on AIX with external linker.
    		// See data.go:/textaddress
    		if !ctxt.IsExternal() {
    			putaixsym(ctxt, s, TextSym)
    		}
    	}
    
    	n := 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/symtab.go

    			break
    		}
    		if ldr.SymType(s) != sym.STEXT {
    			panic("unexpected type for runtime.text symbol")
    		}
    		putelfsym(ctxt, s, elf.STT_FUNC, elfbind)
    	}
    
    	// Text symbols.
    	for _, s := range ctxt.Textp {
    		putelfsym(ctxt, s, elf.STT_FUNC, elfbind)
    	}
    
    	// runtime.etext marker symbol.
    	s = ldr.Lookup("runtime.etext", 0)
    	if ldr.SymType(s) == sym.STEXT {
    		putelfsym(ctxt, s, elf.STT_FUNC, elfbind)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 16:29:40 UTC 2023
    - 29.2K bytes
    - Viewed (0)
  7. src/runtime/proc.go

    	worldStarted()
    
    	for p1 != nil {
    		p := p1
    		p1 = p1.link.ptr()
    		if p.m != 0 {
    			mp := p.m.ptr()
    			p.m = 0
    			if mp.nextp != 0 {
    				throw("startTheWorld: inconsistent mp->nextp")
    			}
    			mp.nextp.set(p)
    			notewakeup(&mp.park)
    		} else {
    			// Start M to run P.  Do not start another M below.
    			newm(nil, p, -1)
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/go.go

    	addstrdata(arch, l, *flagFieldTrack, buf.String())
    }
    
    func (ctxt *Link) addexport() {
    	// Track undefined external symbols during external link.
    	if ctxt.LinkMode == LinkExternal {
    		for _, s := range ctxt.Textp {
    			if ctxt.loader.AttrSpecial(s) || ctxt.loader.AttrSubSymbol(s) {
    				continue
    			}
    			relocs := ctxt.loader.Relocs(s)
    			for i := 0; i < relocs.Count(); i++ {
    				if rs := relocs.At(i).Sym(); rs != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:48:30 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/pe.go

    		return int(sect.Rellen / relocLen)
    	}
    
    	type relsect struct {
    		peSect *peSection
    		seg    *sym.Segment
    		syms   []loader.Sym
    	}
    	sects := []relsect{
    		{f.textSect, &Segtext, ctxt.Textp},
    		{f.rdataSect, &Segrodata, ctxt.datap},
    		{f.dataSect, &Segdata, ctxt.datap},
    	}
    	if len(sehp.pdata) != 0 {
    		sects = append(sects, relsect{f.pdataSect, &Segpdata, sehp.pdata})
    	}
    	if len(sehp.xdata) != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 48.8K bytes
    - Viewed (0)
  10. src/syscall/mksyscall.pl

    			} elsif($_32bit eq "little-endian") {
    				push @args, "uintptr($name)", "uintptr($name>>32)";
    			} else {
    				push @args, "uintptr($name)";
    			}
    		} elsif($type eq "int64" && $dragonfly) {
    			if ($func !~ /^extp(read|write)/i) {
    				push @args, "0";
    			}
    			if($_32bit eq "big-endian") {
    				push @args, "uintptr($name>>32)", "uintptr($name)";
    			} elsif($_32bit eq "little-endian") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:15:02 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top