Home
last modified time | relevance | path

Searched refs:oldest (Results 1 – 25 of 6311) sorted by relevance

12345678910>>...253

/dports/devel/aegis/aegis-4.25.D510/libaegis/change/file/fingerprint/
H A Dsame.cc48 time_t oldest; in change_fingerprint_same() local
65 assert(fp->oldest >= 0); in change_fingerprint_same()
74 fp->oldest = 0; in change_fingerprint_same()
93 assert(oldest > 0); in change_fingerprint_same()
101 fp->oldest in change_fingerprint_same()
109 if (oldest < fp->oldest) in change_fingerprint_same()
110 fp->oldest = oldest; in change_fingerprint_same()
125 fp->oldest in change_fingerprint_same()
136 if (oldest < fp->oldest) in change_fingerprint_same()
137 fp->oldest = oldest; in change_fingerprint_same()
[all …]
/dports/devel/cook/cook-2.30/cook/
H A Dstat.cache.c40 time_t oldest; member
129 cp->oldest = fp->oldest; in stat_cache_fingerprint()
173 cp->oldest = fp->oldest; in stat_cache_fingerprint()
215 if (cp->oldest <= fp->oldest) in stat_cache_fingerprint()
224 cp->oldest = fp->oldest + 1; in stat_cache_fingerprint()
267 cp->oldest, in stat_cache_fingerprint()
385 cp->oldest = 0; in stat_cache()
559 if (!cache.oldest) in stat_cache_oldest()
608 trace(("return (%ld) %s", (long)cache.oldest, ctime(&cache.oldest))); in stat_cache_oldest()
610 return cache.oldest; in stat_cache_oldest()
[all …]
/dports/net/syncthing/syncthing-1.18.1/syncthing/vendor/github.com/chmduquesne/rollinghash/bozo32/
H A Dbozo32.go24 oldest int member
31 d.oldest = 0
41 oldest: 0,
64 if d.oldest != 0 {
65 tmp := make([]byte, d.oldest)
66 copy(tmp, d.window[:d.oldest])
69 d.oldest = 0
106 d.window[d.oldest] = c
108 d.oldest += 1
109 if d.oldest >= l {
[all …]
/dports/net/syncthing/syncthing-1.18.1/syncthing/vendor/github.com/chmduquesne/rollinghash/adler32/
H A Dadler32.go26 oldest int member
34 d.oldest = 0
48 oldest: 0,
67 if d.oldest != 0 {
68 tmp := make([]byte, d.oldest)
69 copy(tmp, d.window[:d.oldest])
72 d.oldest = 0
108 d.window[d.oldest] = b
109 d.oldest += 1
110 if d.oldest >= len(d.window) {
[all …]
/dports/net/syncthing/syncthing-1.18.1/syncthing/vendor/github.com/chmduquesne/rollinghash/buzhash32/
H A Dbuzhash32.go32 oldest int member
39 d.oldest = 0
69 oldest: 0,
88 if d.oldest != 0 {
89 tmp := make([]byte, d.oldest)
90 copy(tmp, d.window[:d.oldest])
93 d.oldest = 0
132 d.window[d.oldest] = c
134 d.oldest += 1
135 if d.oldest >= l {
[all …]
/dports/net/syncthing/syncthing-1.18.1/syncthing/vendor/github.com/chmduquesne/rollinghash/buzhash64/
H A Dbuzhash64.go32 oldest int member
39 d.oldest = 0
69 oldest: 0,
89 if d.oldest != 0 {
90 tmp := make([]byte, d.oldest)
91 copy(tmp, d.window[:d.oldest])
94 d.oldest = 0
133 d.window[d.oldest] = c
135 d.oldest += 1
136 if d.oldest >= l {
[all …]
/dports/devel/racer/racer-2.1.48/cargo-crates/rustc-ap-rustc_span-718.0.0/src/
H A Dcaching_source_map_view.rs99 let oldest = self.oldest_cache_entry_index(); in byte_pos_to_line_and_col() localVariable
167 let file = &self.line_cache[oldest].file; in span_data_to_lines_and_cols()
187 (oldest, next_oldest) in span_data_to_lines_and_cols()
189 (oldest, oldest) in span_data_to_lines_and_cols()
198 (oldest, hi_cache_idx as usize) in span_data_to_lines_and_cols()
206 (lo_cache_idx as usize, oldest) in span_data_to_lines_and_cols()
246 let mut oldest = 0; in oldest_cache_entry_index() localVariable
250 oldest = idx; in oldest_cache_entry_index()
254 oldest in oldest_cache_entry_index()
264 oldest = idx; in oldest_cache_entry_index_avoid()
[all …]
/dports/devel/racer/racer-2.1.48/cargo-crates/rustc-ap-rustc_span-722.0.0/src/
H A Dcaching_source_map_view.rs99 let oldest = self.oldest_cache_entry_index(); in byte_pos_to_line_and_col() localVariable
167 let file = &self.line_cache[oldest].file; in span_data_to_lines_and_cols()
187 (oldest, next_oldest) in span_data_to_lines_and_cols()
189 (oldest, oldest) in span_data_to_lines_and_cols()
198 (oldest, hi_cache_idx as usize) in span_data_to_lines_and_cols()
206 (lo_cache_idx as usize, oldest) in span_data_to_lines_and_cols()
246 let mut oldest = 0; in oldest_cache_entry_index() localVariable
250 oldest = idx; in oldest_cache_entry_index()
254 oldest in oldest_cache_entry_index()
264 oldest = idx; in oldest_cache_entry_index_avoid()
[all …]
/dports/lang/rust/rustc-1.58.1-src/compiler/rustc_span/src/
H A Dcaching_source_map_view.rs99 let oldest = self.oldest_cache_entry_index(); in byte_pos_to_line_and_col() localVariable
167 let file = &self.line_cache[oldest].file; in span_data_to_lines_and_cols()
187 (oldest, next_oldest) in span_data_to_lines_and_cols()
189 (oldest, oldest) in span_data_to_lines_and_cols()
198 (oldest, hi_cache_idx as usize) in span_data_to_lines_and_cols()
206 (lo_cache_idx as usize, oldest) in span_data_to_lines_and_cols()
246 let mut oldest = 0; in oldest_cache_entry_index() localVariable
250 oldest = idx; in oldest_cache_entry_index()
254 oldest in oldest_cache_entry_index()
264 oldest = idx; in oldest_cache_entry_index_avoid()
[all …]
/dports/lang/rust/rustc-1.58.1-src/vendor/rustc-ap-rustc_span/src/
H A Dcaching_source_map_view.rs99 let oldest = self.oldest_cache_entry_index(); in byte_pos_to_line_and_col() localVariable
167 let file = &self.line_cache[oldest].file; in span_data_to_lines_and_cols()
187 (oldest, next_oldest) in span_data_to_lines_and_cols()
189 (oldest, oldest) in span_data_to_lines_and_cols()
198 (oldest, hi_cache_idx as usize) in span_data_to_lines_and_cols()
206 (lo_cache_idx as usize, oldest) in span_data_to_lines_and_cols()
246 let mut oldest = 0; in oldest_cache_entry_index() localVariable
250 oldest = idx; in oldest_cache_entry_index()
254 oldest in oldest_cache_entry_index()
264 oldest = idx; in oldest_cache_entry_index_avoid()
[all …]
/dports/x11-wm/sawfish/sawfish_1.13.0/src/
H A Dproperty-cache.c74 unsigned int h, i, oldest, oldest_age; in property_cache_set() local
89 oldest = -1; in property_cache_set()
103 oldest = i; in property_cache_set()
107 assert (oldest != -1); in property_cache_set()
109 if (cache_ids[oldest] != 0) in property_cache_set()
110 DB (("prop eject: 0x%x (%d)\n", cache_ids[oldest], oldest)); in property_cache_set()
112 cache_ids[oldest] = id; in property_cache_set()
113 cache_props[oldest] = prop; in property_cache_set()
114 cache_values[oldest] = value; in property_cache_set()
115 cache_ages[oldest] = ++cache_clock; in property_cache_set()
[all …]
/dports/security/snowflake-tor/snowflake-ead5a960d7fa19dc890ccbfc0765c5ab6629eaa9/server/lib/
H A Dturbotunnel.go31 oldest int member
44 oldest: 0,
63 if i, ok := m.current[m.entries[m.oldest].clientID]; ok && i == m.oldest {
64 delete(m.current, m.entries[m.oldest].clientID)
67 m.entries[m.oldest].clientID = clientID
68 m.entries[m.oldest].addr = addr
70 m.current[clientID] = m.oldest
72 m.oldest = (m.oldest + 1) % len(m.entries)
/dports/www/mod_authnz_crowd/mod_authnz_crowd-2.2.2/src/
H A Dcache.c49 while (cache->oldest != NULL in cache_clean()
51 cache_entry_t *oldest = cache->oldest; in cache_clean() local
55 apr_hash_set(cache->table, oldest->key, APR_HASH_KEY_STRING, NULL); in cache_clean()
56 cache->oldest = oldest->younger; in cache_clean()
57 if (cache->oldest == NULL) { in cache_clean()
60 cache->free_data(oldest->value); in cache_clean()
61 free(oldest->key); in cache_clean()
62 free(oldest); in cache_clean()
113 cache->oldest = entry->younger; in cache_put()
126 if (cache->oldest == NULL) { in cache_put()
[all …]
/dports/devel/libzookeeper/apache-zookeeper-3.7.0/zookeeper-server/src/main/java/org/apache/zookeeper/server/util/
H A DCircularBuffer.java34 private int oldest; field in CircularBuffer
55 buffer[oldest] = element; in write()
56 oldest = ++oldest % capacity; in write()
59 int index = (oldest + numberOfElements.get() - 1) % capacity; in write()
76 T polled = buffer[oldest]; in take()
77 oldest = ++oldest % capacity; in take()
85 return buffer[oldest]; in peek()
/dports/games/residualvm/residualvm-0.3.1/graphics/tinygl/
H A Dspecbuf.cpp44 GLSpecBuf *found, *oldest; in specbuf_get_buffer() local
45 found = oldest = c->specbuf_first; in specbuf_get_buffer()
47 if (found->last_used < oldest->last_used) { in specbuf_get_buffer()
48 oldest = found; in specbuf_get_buffer()
56 if (!oldest || c->specbuf_num_buffers < MAX_SPECULAR_BUFFERS) { in specbuf_get_buffer()
70 oldest->shininess_i = shininess_i; in specbuf_get_buffer()
71 oldest->last_used = c->specbuf_used_counter++; in specbuf_get_buffer()
72 calc_buf(oldest, shininess); in specbuf_get_buffer()
73 return oldest; in specbuf_get_buffer()
/dports/games/scummvm/scummvm-2.5.1/graphics/tinygl/
H A Dspecbuf.cpp44 GLSpecBuf *found, *oldest; in specbuf_get_buffer() local
45 found = oldest = c->specbuf_first; in specbuf_get_buffer()
47 if (found->last_used < oldest->last_used) { in specbuf_get_buffer()
48 oldest = found; in specbuf_get_buffer()
56 if (!oldest || c->specbuf_num_buffers < MAX_SPECULAR_BUFFERS) { in specbuf_get_buffer()
70 oldest->shininess_i = shininess_i; in specbuf_get_buffer()
71 oldest->last_used = c->specbuf_used_counter++; in specbuf_get_buffer()
72 calc_buf(oldest, shininess); in specbuf_get_buffer()
73 return oldest; in specbuf_get_buffer()
/dports/converters/wkhtmltopdf/qt-5db36ec/src/network/access/
H A Dqnetworkaccesscache.cpp107 : oldest(0), newest(0) in QNetworkAccessCache()
134 oldest = newest = 0; in clear()
157 if (!oldest) { in linkEntry()
159 oldest = node; in linkEntry()
179 if (node == oldest) { in unlinkEntry()
198 if (!oldest) in updateTimer()
229 while (oldest && oldest->timestamp < now) { in timerEvent()
234 oldest = next; in timerEvent()
238 if (oldest) in timerEvent()
239 oldest->older = 0; in timerEvent()
[all …]
/dports/dns/djbdns-tools/djbdns-1.05/
H A Dcache.c14 static uint32 oldest; variable
144 while (writer + entrylen > oldest) { in cache_set()
145 if (oldest == unused) { in cache_set()
148 oldest = hsize; in cache_set()
152 pos = get4(oldest); in cache_set()
153 set4(pos,get4(pos) ^ oldest); in cache_set()
155 oldest += get4(oldest + 4) + get4(oldest + 8) + 20; in cache_set()
156 if (oldest > unused) cache_impossible(); in cache_set()
157 if (oldest == unused) { in cache_set()
159 oldest = size; in cache_set()
[all …]
/dports/mail/qmail-conf/qmail-conf-0.60/djbdns-1.05/
H A Dcache.c14 static uint32 oldest; variable
144 while (writer + entrylen > oldest) { in cache_set()
145 if (oldest == unused) { in cache_set()
148 oldest = hsize; in cache_set()
152 pos = get4(oldest); in cache_set()
153 set4(pos,get4(pos) ^ oldest); in cache_set()
155 oldest += get4(oldest + 4) + get4(oldest + 8) + 20; in cache_set()
156 if (oldest > unused) cache_impossible(); in cache_set()
157 if (oldest == unused) { in cache_set()
159 oldest = size; in cache_set()
[all …]
/dports/dns/djbdns/djbdns-1.05/
H A Dcache.c14 static uint32 oldest; variable
144 while (writer + entrylen > oldest) { in cache_set()
145 if (oldest == unused) { in cache_set()
148 oldest = hsize; in cache_set()
152 pos = get4(oldest); in cache_set()
153 set4(pos,get4(pos) ^ oldest); in cache_set()
155 oldest += get4(oldest + 4) + get4(oldest + 8) + 20; in cache_set()
156 if (oldest > unused) cache_impossible(); in cache_set()
157 if (oldest == unused) { in cache_set()
159 oldest = size; in cache_set()
[all …]
/dports/devel/cook/cook-2.30/cook/fingerprint/
H A Dvalue.c43 this->oldest = 0; in fp_value_constructor()
70 this->oldest = fp->oldest; in fp_value_constructor_copy()
107 this->oldest = a1; in fp_value_constructor3()
138 this->oldest = a1; in fp_value_constructor4()
169 this->oldest = a1; in fp_value_constructor5()
194 this->oldest = 0; in fp_value_destructor()
282 to->oldest = from->oldest; in fp_value_copy()
322 fprintf(fp, "\"%s\" = { %ld", key->str_text, (long)this->oldest); in fp_value_write()
323 if (this->oldest != this->newest || this->newest != this->stat_mod_time) in fp_value_write()
373 v1->oldest == v2->oldest in fp_value_equal()
[all …]
/dports/databases/qt5-sqldrivers-sqlite2/kde-qtbase-5.15.2p263/src/network/access/
H A Dqnetworkaccesscache.cpp133 oldest = newest = nullptr; in clear()
156 if (!oldest) { in linkEntry()
158 oldest = node; in linkEntry()
178 if (node == oldest) { in unlinkEntry()
179 oldest = node->newer; in unlinkEntry()
197 if (!oldest) in updateTimer()
228 while (oldest && oldest->timestamp < now) { in timerEvent()
233 oldest = next; in timerEvent()
237 if (oldest) in timerEvent()
238 oldest->older = nullptr; in timerEvent()
[all …]
/dports/databases/qt5-sqldrivers-tds/kde-qtbase-5.15.2p263/src/network/access/
H A Dqnetworkaccesscache.cpp133 oldest = newest = nullptr; in clear()
156 if (!oldest) { in linkEntry()
158 oldest = node; in linkEntry()
178 if (node == oldest) { in unlinkEntry()
179 oldest = node->newer; in unlinkEntry()
197 if (!oldest) in updateTimer()
228 while (oldest && oldest->timestamp < now) { in timerEvent()
233 oldest = next; in timerEvent()
237 if (oldest) in timerEvent()
238 oldest->older = nullptr; in timerEvent()
[all …]
/dports/databases/qt5-sqldrivers-sqlite3/kde-qtbase-5.15.2p263/src/network/access/
H A Dqnetworkaccesscache.cpp133 oldest = newest = nullptr; in clear()
156 if (!oldest) { in linkEntry()
158 oldest = node; in linkEntry()
178 if (node == oldest) { in unlinkEntry()
179 oldest = node->newer; in unlinkEntry()
197 if (!oldest) in updateTimer()
228 while (oldest && oldest->timestamp < now) { in timerEvent()
233 oldest = next; in timerEvent()
237 if (oldest) in timerEvent()
238 oldest->older = nullptr; in timerEvent()
[all …]
/dports/databases/qt5-sqldrivers-odbc/kde-qtbase-5.15.2p263/src/network/access/
H A Dqnetworkaccesscache.cpp133 oldest = newest = nullptr; in clear()
156 if (!oldest) { in linkEntry()
158 oldest = node; in linkEntry()
178 if (node == oldest) { in unlinkEntry()
179 oldest = node->newer; in unlinkEntry()
197 if (!oldest) in updateTimer()
228 while (oldest && oldest->timestamp < now) { in timerEvent()
233 oldest = next; in timerEvent()
237 if (oldest) in timerEvent()
238 oldest->older = nullptr; in timerEvent()
[all …]

12345678910>>...253