Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for Entryvalue (0.21 sec)

  1. guava/src/com/google/common/cache/LocalCache.java

                for (ReferenceEntry<K, V> e = table.get(i); e != null; e = e.getNext()) {
                  V entryValue = getLiveValue(e, now);
                  if (entryValue == null) {
                    continue;
                  }
                  if (map.valueEquivalence.equivalent(value, entryValue)) {
                    return true;
                  }
                }
              }
            }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/cache/LocalCache.java

                for (ReferenceEntry<K, V> e = table.get(i); e != null; e = e.getNext()) {
                  V entryValue = getLiveValue(e, now);
                  if (entryValue == null) {
                    continue;
                  }
                  if (map.valueEquivalence.equivalent(value, entryValue)) {
                    return true;
                  }
                }
              }
            }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

              for (int i = 0; i < length; ++i) {
                for (E e = table.get(i); e != null; e = e.getNext()) {
                  V entryValue = getLiveValue(e);
                  if (entryValue == null) {
                    continue;
                  }
                  if (map.valueEquivalence().equivalent(value, entryValue)) {
                    return true;
                  }
                }
              }
            }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/MapMakerInternalMap.java

              for (int i = 0; i < length; ++i) {
                for (E e = table.get(i); e != null; e = e.getNext()) {
                  V entryValue = getLiveValue(e);
                  if (entryValue == null) {
                    continue;
                  }
                  if (map.valueEquivalence().equivalent(value, entryValue)) {
                    return true;
                  }
                }
              }
            }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/asmb.go

    	if !*FlagS {
    		*FlagS = true
    		symo := int64(Segdata.Fileoff + Segdata.Filelen)
    		ctxt.Out.SeekSet(symo)
    		asmbPlan9Sym(ctxt)
    	}
    	ctxt.Out.SeekSet(0)
    	writePlan9Header(ctxt.Out, thearch.Plan9Magic, Entryvalue(ctxt), thearch.Plan9_64Bit)
    }
    
    // sizeExtRelocs precomputes the size needed for the reloc records,
    // sets the size and offset for relocation records in each section,
    // and mmap the output buffer with the proper size.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 02 09:22:56 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/macho.go

    			ml.data[1] = 42                          /* word count */
    			ml.data[2+32] = uint32(Entryvalue(ctxt)) /* start pc */
    			ml.data[2+32+1] = uint32(Entryvalue(ctxt) >> 32)
    
    		case sys.ARM64:
    			ml := newMachoLoad(ctxt.Arch, LC_MAIN, 4)
    			ml.data[0] = uint32(uint64(Entryvalue(ctxt)) - (Segtext.Vaddr - uint64(HEADR)))
    			ml.data[1] = uint32((uint64(Entryvalue(ctxt)) - (Segtext.Vaddr - uint64(HEADR))) >> 32)
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/pe.go

    	oh.SizeOfInitializedData = f.dataSect.sizeOfRawData
    	oh64.SizeOfUninitializedData = 0
    	oh.SizeOfUninitializedData = 0
    	if ctxt.LinkMode != LinkExternal {
    		oh64.AddressOfEntryPoint = uint32(Entryvalue(ctxt) - PEBASE)
    		oh.AddressOfEntryPoint = uint32(Entryvalue(ctxt) - PEBASE)
    	}
    	oh64.BaseOfCode = f.textSect.virtualAddress
    	oh.BaseOfCode = f.textSect.virtualAddress
    	oh64.ImageBase = uint64(PEBASE)
    	oh.ImageBase = uint32(PEBASE)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 48.8K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/elf.go

    	} else if ctxt.BuildMode == BuildModePIE {
    		eh.Type = uint16(elf.ET_DYN)
    	} else {
    		eh.Type = uint16(elf.ET_EXEC)
    	}
    
    	if ctxt.LinkMode != LinkExternal {
    		eh.Entry = uint64(Entryvalue(ctxt))
    	}
    
    	eh.Version = uint32(elf.EV_CURRENT)
    
    	if pph != nil {
    		pph.Filesz = uint64(eh.Phnum) * uint64(eh.Phentsize)
    		pph.Memsz = pph.Filesz
    	}
    
    	ctxt.Out.SeekSet(0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/lib.go

    	}
    	if uint64(addr) >= Segtext.Vaddr {
    		return int64(uint64(addr) - Segtext.Vaddr + Segtext.Fileoff)
    	}
    	ldr.Errorf(s, "invalid datoff %#x", addr)
    	return 0
    }
    
    func Entryvalue(ctxt *Link) int64 {
    	a := *flagEntrySymbol
    	if a[0] >= '0' && a[0] <= '9' {
    		return atolwhex(a)
    	}
    	ldr := ctxt.loader
    	s := ldr.Lookup(a, 0)
    	if s == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
Back to top