Home
last modified time | relevance | path

Searched refs:oldEntries (Results 1 – 25 of 89) sorted by relevance

1234

/dports/devel/gwenhywfar-gtk3/gwenhywfar-5.6.0/src/base/
H A Dsimpleptrlist.c55 static INTERNAL_PTRLIST *_reallocPtrList(INTERNAL_PTRLIST *oldEntries, uint64_t totalEntries);
56 static INTERNAL_PTRLIST *_copyPtrList(const INTERNAL_PTRLIST *oldEntries, uint64_t totalEntries);
579 INTERNAL_PTRLIST *_copyPtrList(const INTERNAL_PTRLIST *oldEntries, uint64_t totalEntries) in _copyPtrList() argument
581 assert(oldEntries && oldEntries->refCounter>0); in _copyPtrList()
582 if (oldEntries && oldEntries->refCounter>0) { in _copyPtrList()
589 if (totalEntries<oldEntries->storedEntries) in _copyPtrList()
590 totalEntries=oldEntries->storedEntries; in _copyPtrList()
592 diffEntries=totalEntries-(oldEntries->storedEntries); in _copyPtrList()
593 oldSize=sizeof(INTERNAL_PTRLIST)+((oldEntries->storedEntries)*sizeof(void *)); in _copyPtrList()
603 memmove(entries, oldEntries, oldSize); in _copyPtrList()
/dports/devel/gwenhywfar/gwenhywfar-5.6.0/src/base/
H A Dsimpleptrlist.c55 static INTERNAL_PTRLIST *_reallocPtrList(INTERNAL_PTRLIST *oldEntries, uint64_t totalEntries);
56 static INTERNAL_PTRLIST *_copyPtrList(const INTERNAL_PTRLIST *oldEntries, uint64_t totalEntries);
579 INTERNAL_PTRLIST *_copyPtrList(const INTERNAL_PTRLIST *oldEntries, uint64_t totalEntries) in _copyPtrList() argument
581 assert(oldEntries && oldEntries->refCounter>0); in _copyPtrList()
582 if (oldEntries && oldEntries->refCounter>0) { in _copyPtrList()
589 if (totalEntries<oldEntries->storedEntries) in _copyPtrList()
590 totalEntries=oldEntries->storedEntries; in _copyPtrList()
592 diffEntries=totalEntries-(oldEntries->storedEntries); in _copyPtrList()
593 oldSize=sizeof(INTERNAL_PTRLIST)+((oldEntries->storedEntries)*sizeof(void *)); in _copyPtrList()
603 memmove(entries, oldEntries, oldSize); in _copyPtrList()
/dports/devel/gwenhywfar-fox16/gwenhywfar-5.6.0/src/base/
H A Dsimpleptrlist.c55 static INTERNAL_PTRLIST *_reallocPtrList(INTERNAL_PTRLIST *oldEntries, uint64_t totalEntries);
56 static INTERNAL_PTRLIST *_copyPtrList(const INTERNAL_PTRLIST *oldEntries, uint64_t totalEntries);
579 INTERNAL_PTRLIST *_copyPtrList(const INTERNAL_PTRLIST *oldEntries, uint64_t totalEntries) in _copyPtrList() argument
581 assert(oldEntries && oldEntries->refCounter>0); in _copyPtrList()
582 if (oldEntries && oldEntries->refCounter>0) { in _copyPtrList()
589 if (totalEntries<oldEntries->storedEntries) in _copyPtrList()
590 totalEntries=oldEntries->storedEntries; in _copyPtrList()
592 diffEntries=totalEntries-(oldEntries->storedEntries); in _copyPtrList()
593 oldSize=sizeof(INTERNAL_PTRLIST)+((oldEntries->storedEntries)*sizeof(void *)); in _copyPtrList()
603 memmove(entries, oldEntries, oldSize); in _copyPtrList()
/dports/devel/gwenhywfar-gtk2/gwenhywfar-5.6.0/src/base/
H A Dsimpleptrlist.c55 static INTERNAL_PTRLIST *_reallocPtrList(INTERNAL_PTRLIST *oldEntries, uint64_t totalEntries);
56 static INTERNAL_PTRLIST *_copyPtrList(const INTERNAL_PTRLIST *oldEntries, uint64_t totalEntries);
579 INTERNAL_PTRLIST *_copyPtrList(const INTERNAL_PTRLIST *oldEntries, uint64_t totalEntries) in _copyPtrList() argument
581 assert(oldEntries && oldEntries->refCounter>0); in _copyPtrList()
582 if (oldEntries && oldEntries->refCounter>0) { in _copyPtrList()
589 if (totalEntries<oldEntries->storedEntries) in _copyPtrList()
590 totalEntries=oldEntries->storedEntries; in _copyPtrList()
592 diffEntries=totalEntries-(oldEntries->storedEntries); in _copyPtrList()
593 oldSize=sizeof(INTERNAL_PTRLIST)+((oldEntries->storedEntries)*sizeof(void *)); in _copyPtrList()
603 memmove(entries, oldEntries, oldSize); in _copyPtrList()
/dports/devel/gwenhywfar-qt5/gwenhywfar-5.6.0/src/base/
H A Dsimpleptrlist.c55 static INTERNAL_PTRLIST *_reallocPtrList(INTERNAL_PTRLIST *oldEntries, uint64_t totalEntries);
56 static INTERNAL_PTRLIST *_copyPtrList(const INTERNAL_PTRLIST *oldEntries, uint64_t totalEntries);
579 INTERNAL_PTRLIST *_copyPtrList(const INTERNAL_PTRLIST *oldEntries, uint64_t totalEntries) in _copyPtrList() argument
581 assert(oldEntries && oldEntries->refCounter>0); in _copyPtrList()
582 if (oldEntries && oldEntries->refCounter>0) { in _copyPtrList()
589 if (totalEntries<oldEntries->storedEntries) in _copyPtrList()
590 totalEntries=oldEntries->storedEntries; in _copyPtrList()
592 diffEntries=totalEntries-(oldEntries->storedEntries); in _copyPtrList()
593 oldSize=sizeof(INTERNAL_PTRLIST)+((oldEntries->storedEntries)*sizeof(void *)); in _copyPtrList()
603 memmove(entries, oldEntries, oldSize); in _copyPtrList()
/dports/audio/atunes/atunes-3.1.2/src/net/sourceforge/atunes/kernel/modules/podcast/
H A DPodcastFeed.java130 List<IPodcastFeedEntry> oldEntries = new ArrayList<IPodcastFeedEntry>(podcastFeedEntries); in addEntries() local
131 oldEntries.removeAll(newEntries); in addEntries()
133 podcastFeedEntries.removeAll(oldEntries); in addEntries()
135 for (IPodcastFeedEntry oldPodcastFeedEntry : oldEntries) { in addEntries()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.ui/org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/changes/
H A DRenameJavaProjectChange.java113 IClasspathEntry[] oldEntries= referencingProject.getRawClasspath(); in modifyClassPath() local
114 IClasspathEntry[] newEntries= new IClasspathEntry[oldEntries.length]; in modifyClassPath()
116 if (isOurEntry(oldEntries[i])) in modifyClassPath()
117 newEntries[i]= createModifiedEntry(oldEntries[i]); in modifyClassPath()
119 newEntries[i]= oldEntries[i]; in modifyClassPath()
/dports/net/samba412/samba-4.12.15/source3/libads/
H A Dkerberos_keytab.c539 char **oldEntries = NULL, *princ_s[26]; in ads_keytab_create_default() local
702 oldEntries = talloc_zero_array(frame, char *, found + 1); in ads_keytab_create_default()
703 if (!oldEntries) { in ads_keytab_create_default()
723 ret = smb_krb5_unparse_name(oldEntries, context, in ads_keytab_create_default()
749 if (!oldEntries[i]) { in ads_keytab_create_default()
750 oldEntries[i] = ktprinc; in ads_keytab_create_default()
753 if (!strcmp(oldEntries[i], ktprinc)) { in ads_keytab_create_default()
769 for (i = 0; oldEntries[i]; i++) { in ads_keytab_create_default()
770 ret |= ads_keytab_add_entry(ads, oldEntries[i], false); in ads_keytab_create_default()
771 TALLOC_FREE(oldEntries[i]); in ads_keytab_create_default()
[all …]
/dports/math/vampire/vampire-4.5.1/Lib/
H A DSet.hpp324 Cell* oldEntries = _entries; in expand() local
342 Cell* current = oldEntries; in expand()
357 if (oldEntries) { in expand()
358 array_delete(oldEntries,oldCapacity); in expand()
359 DEALLOC_KNOWN(oldEntries,oldCapacity*sizeof(Cell),"Set::Cell"); in expand()
H A DMap.hpp386 Entry* oldEntries = _entries; in expand() local
401 Entry* current = oldEntries; in expand()
414 if (oldEntries) { in expand()
415 array_delete(oldEntries, oldCapacity); in expand()
416 DEALLOC_KNOWN(oldEntries,sizeof(Entry)*oldCapacity,"Map<>"); in expand()
/dports/graphics/digikam/digikam-7.4.0/core/libs/metadataengine/dmetadata/
H A Ddmetadata_xmp.cpp68 QStringList oldEntries = getXmpTagStringBag(xmpTagName, false); in addToXmpTagStringBag() local
73 …for (QStringList::const_iterator it = oldEntries.constBegin() ; it != oldEntries.constEnd() ; ++it… in addToXmpTagStringBag()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.debug/org.eclipse.jdt.debug.tests/test plugin/org/eclipse/jdt/debug/testplugin/
H A DJavaProjectHelper.java472 IClasspathEntry[] oldEntries= jproject.getRawClasspath(); in removeFromClasspath() local
473 int nEntries= oldEntries.length; in removeFromClasspath()
476 IClasspathEntry curr= oldEntries[i]; in removeFromClasspath()
492 IClasspathEntry[] oldEntries= jproject.getRawClasspath(); in addToClasspath() local
493 ArrayList<IClasspathEntry> entries = new ArrayList<>(oldEntries.length); in addToClasspath()
494 for (int i= 0; i < oldEntries.length; i++) { in addToClasspath()
495 if (oldEntries[i].equals(cpe)) { in addToClasspath()
498 IPath oldpath = oldEntries[i].getPath(); in addToClasspath()
502 entries.add(oldEntries[i]); in addToClasspath()
/dports/devel/kf5-kio/kio-5.89.0/autotests/
H A Dmkpathjobtest.cpp39 const QStringList oldEntries = QDir(m_dir).entryList(); in shouldDoNothingIfExists() local
46 QCOMPARE(QDir(m_dir).entryList(), oldEntries); // nothing got created in there in shouldDoNothingIfExists()
75 const QStringList oldEntries = QDir(m_dir).entryList(); in shouldDoNothingIfExistsWithBasePath() local
84 QCOMPARE(QDir(m_dir).entryList(), oldEntries); // nothing got created in there in shouldDoNothingIfExistsWithBasePath()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.ui/org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/
H A DCPUserLibraryElement.java186 IClasspathEntry[] oldEntries= oldContainer.getClasspathEntries(); in hasChanges() local
187 if (fChildren.size() != oldEntries.length) { in hasChanges()
190 for (int i= 0; i < oldEntries.length; i++) { in hasChanges()
192 if (!child.getClasspathEntry().equals(oldEntries[i])) { in hasChanges()
/dports/games/stendhal/stendhal-1.35/src/games/stendhal/server/core/engine/db/
H A DStendhalSearchIndexDAO.java116 Set<SearchIndexEntry> oldEntries = readExistingEntries(transaction); in updateSearchIndex() local
118 Set<SearchIndexEntry> toDelete = Sets.difference(oldEntries, entries); in updateSearchIndex()
119 Set<SearchIndexEntry> toAdd = Sets.difference(entries, oldEntries); in updateSearchIndex()
/dports/misc/tellico/tellico-3.4.2/src/commands/
H A Dmodifyentries.h41 ModifyEntries(Data::CollPtr coll, const Data::EntryList& oldEntries,
43 ModifyEntries(QUndoCommand* parent, Data::CollPtr coll, const Data::EntryList& oldEntries,
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Xml/System/Xml/Dom/
H A DDomNameTable.cs95 XmlName[] oldEntries = entries; in Grow()
99 for ( int i = 0; i < oldEntries.Length; i++ ) { in Grow()
100 XmlName name = oldEntries[i]; in Grow()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Private.Xml/src/System/Xml/Dom/
H A DDomNameTable.cs106 XmlName[] oldEntries = _entries; in Grow()
110 for (int i = 0; i < oldEntries.Length; i++) in Grow()
112 XmlName name = oldEntries[i]; in Grow()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.debug/org.eclipse.jdt.debug.tests/tests/org/eclipse/jdt/debug/tests/core/
H A DJavaLibraryPathTests.java90 IClasspathEntry[] oldEntries= jproject.getRawClasspath(); in addToClasspath() local
91 for (int i= 0; i < oldEntries.length; i++) { in addToClasspath()
92 if (oldEntries[i].equals(cpe)) { in addToClasspath()
96 int nEntries= oldEntries.length; in addToClasspath()
98 System.arraycopy(oldEntries, 0, newEntries, 0, nEntries); in addToClasspath()
/dports/lang/gcc6-aux/gcc-6-20180516/libjava/classpath/java/lang/
H A DThreadLocalMap.java106 Entry[] oldEntries = this.entries; in newEntryArray() local
112 if (oldEntries != null) in newEntryArray()
114 for(Entry e: oldEntries) in newEntryArray()
/dports/lang/gcc48/gcc-4.8.5/libjava/classpath/java/lang/
H A DThreadLocalMap.java106 Entry[] oldEntries = this.entries; in newEntryArray() local
112 if (oldEntries != null) in newEntryArray()
114 for(Entry e: oldEntries) in newEntryArray()
/dports/graphics/digikam/digikam-7.4.0/core/utilities/facemanagement/workers/
H A Ddatabasewriter.cpp58 QList<FaceTagsIface> oldEntries = utils.unconfirmedFaceTagsIfaces(package->info.id()); in process() local
59 qCDebug(DIGIKAM_GENERAL_LOG) << "Removing old entries" << oldEntries; in process()
60 utils.removeFaces(oldEntries); in process()
/dports/lang/gnat_util/gcc-6-20180516/libjava/classpath/java/lang/
H A DThreadLocalMap.java106 Entry[] oldEntries = this.entries; in newEntryArray() local
112 if (oldEntries != null) in newEntryArray()
114 for(Entry e: oldEntries) in newEntryArray()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/Microsoft.CSharp/src/Microsoft/CSharp/RuntimeBinder/Syntax/
H A DNameTable.cs151 Entry[] oldEntries = _entries; in Grow()
155 for (int i = 0; i < oldEntries.Length; i++) in Grow()
157 Entry e = oldEntries[i]; in Grow()
/dports/devel/arm-none-eabi-gcc492/gcc-4.9.2/libjava/classpath/java/lang/
H A DThreadLocalMap.java106 Entry[] oldEntries = this.entries; in newEntryArray() local
112 if (oldEntries != null) in newEntryArray()
114 for(Entry e: oldEntries) in newEntryArray()

1234