Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for Entryvalue (0.2 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/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)
  6. 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)
  7. 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