Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for NextIp (0.13 sec)

  1. src/regexp/onepass.go

    		dense:  make([]uint32, size),
    	}
    }
    
    // mergeRuneSets merges two non-intersecting runesets, and returns the merged result,
    // and a NextIp array. The idea is that if a rune matches the OnePassRunes at index
    // i, NextIp[i/2] is the target. If the input sets intersect, an empty runeset and a
    // NextIp array with the single element mergeFailed is returned.
    // The code assumes that both inputs contain ordered and non-intersecting rune pairs.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/math/BigDecimalMathTest.java

        new RoundToDoubleTester(BigDecimal.valueOf((1L << 53) + 1))
            .setExpectation(twoToThe53, DOWN, FLOOR, HALF_DOWN, HALF_EVEN)
            .setExpectation(Math.nextUp(twoToThe53), CEILING, UP, HALF_UP)
            .roundUnnecessaryShouldThrow()
            .test();
      }
    
      public void testRoundToDouble_twoToThe54PlusOne() {
        double twoToThe54 = Math.pow(2, 54);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  3. src/cmd/link/internal/riscv64/asm.go

    			hi20Syms = append(hi20Syms, sb.Sym())
    		}
    	}
    	ctxt.Textp = append(ctxt.Textp, hi20Syms...)
    	ldr.SortSyms(ctxt.Textp)
    }
    
    func findHI20Symbol(ctxt *ld.Link, ldr *loader.Loader, val int64) loader.Sym {
    	idx := sort.Search(len(ctxt.Textp), func(i int) bool { return ldr.SymValue(ctxt.Textp[i]) >= val })
    	if idx >= len(ctxt.Textp) {
    		return 0
    	}
    	if s := ctxt.Textp[idx]; ldr.SymValue(s) == val && ldr.SymType(s) == sym.STEXT {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 01 08:06:08 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  4. src/cmd/link/internal/loadmacho/ldmacho.go

    				return errorf("symbol %s listed multiple times", bld.Name())
    			}
    			bld.SetOnList(true)
    			textp = append(textp, s)
    			for s1 := bld.Sub(); s1 != 0; s1 = l.SubSym(s1) {
    				if l.AttrOnList(s1) {
    					return errorf("symbol %s listed multiple times", l.SymName(s1))
    				}
    				l.SetAttrOnList(s1, true)
    				textp = append(textp, s1)
    			}
    		}
    	}
    
    	// load relocations
    	for i := 0; uint32(i) < c.seg.nsect; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 12 18:45:57 UTC 2022
    - 19.1K bytes
    - Viewed (0)
  5. src/cmd/link/internal/loadelf/ldelf.go

    					l.SymName(s))
    			}
    			l.SetAttrOnList(s, true)
    			textp = append(textp, s)
    			for ss := l.SubSym(s); ss != 0; ss = l.SubSym(ss) {
    				if l.AttrOnList(ss) {
    					return errorf("symbol %s listed multiple times",
    						l.SymName(ss))
    				}
    				l.SetAttrOnList(ss, true)
    				textp = append(textp, ss)
    			}
    		}
    	}
    
    	// load relocations
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:12:12 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/pcln.go

    			indexes[i] = NOIDX
    		}
    		idx := int32(0)
    		for i, s := range ctxt.Textp {
    			if !emitPcln(ctxt, s, container) {
    				continue
    			}
    			p := ldr.SymValue(s)
    			var e loader.Sym
    			i++
    			if i < len(ctxt.Textp) {
    				e = ctxt.Textp[i]
    			}
    			for e != 0 && !emitPcln(ctxt, e, container) && i < len(ctxt.Textp) {
    				e = ctxt.Textp[i]
    				i++
    			}
    			q := max
    			if e != 0 {
    				q = ldr.SymValue(e)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  7. src/cmd/link/internal/x86/asm.go

    		// Destination register is in bits 3-5 of the middle byte, so add that in.
    		o(0x8b, 0x04+r.num<<3, 0x24)
    		// c3		ret
    		o(0xc3)
    
    		thunks = append(thunks, thunkfunc.Sym())
    	}
    	ctxt.Textp = append(thunks, ctxt.Textp...) // keep Textp in dependency order
    
    	initfunc, addmoduledata := ld.PrepareAddmoduledata(ctxt)
    	if initfunc == nil {
    		return
    	}
    
    	o := func(op ...uint8) {
    		for _, op1 := range op {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  8. src/runtime/select.go

    		// sg on gp.waiting where copystack can find it.
    		sg.elem = cas.elem
    		sg.releasetime = 0
    		if t0 != 0 {
    			sg.releasetime = -1
    		}
    		sg.c = c
    		// Construct waiting list in lock order.
    		*nextp = sg
    		nextp = &sg.waitlink
    
    		if casi < nsends {
    			c.sendq.enqueue(sg)
    		} else {
    			c.recvq.enqueue(sg)
    		}
    
    		if c.timer != nil {
    			blockTimerChan(c)
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 13 21:36:04 UTC 2024
    - 15K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/math/DoubleMathTest.java

          trueLog2 = StrictMath.nextUp(trueLog2);
        }
        // decrement until it's <= the true value
        while (StrictMath.pow(2.0, trueLog2) > d) {
          trueLog2 = StrictMath.nextAfter(trueLog2, Double.NEGATIVE_INFINITY);
        }
        if (StrictMath.abs(StrictMath.pow(2.0, trueLog2) - d)
            > StrictMath.abs(StrictMath.pow(2.0, StrictMath.nextUp(trueLog2)) - d)) {
          trueLog2 = StrictMath.nextUp(trueLog2);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  10. src/cmd/link/internal/loadpe/ldpe.go

    				return nil, fmt.Errorf("internal error: preexisting COMDAT definition for %q", name)
    			}
    			comdatDefinitions[l.SymName(s)] = sz
    		}
    	}
    
    	// Sort outer lists by address, adding to textp.
    	// This keeps textp in increasing address order.
    	for _, sect := range f.Sections {
    		s := state.sectsyms[sect]
    		if s == 0 {
    			continue
    		}
    		l.SortSub(s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 20:26:46 UTC 2023
    - 26.5K bytes
    - Viewed (0)
Back to top