Home
last modified time | relevance | path

Searched refs:old_top (Results 1 – 25 of 708) sorted by relevance

12345678910>>...29

/dports/emulators/py-gns3-converter/gns3-converter-1.2.4/gns3converter/
H A Dtopology.py30 def __init__(self, sections, old_top): argument
35 self.old_top = old_top
131 if 'interface' in self.old_top[instance][item]:
136 for s_item in sorted(self.old_top[instance][item]):
137 if self.old_top[instance][item][s_item] is not None:
138 s_detail = self.old_top[instance][item][s_item]
186 for s_item in sorted(self.old_top[instance][item]):
187 if self.old_top[instance][item][s_item] is not None:
218 for s_item in sorted(self.old_top[instance][item]):
219 if self.old_top[instance][item][s_item] is not None:
[all …]
H A Dconverter.py108 def process_topology(self, old_top): argument
117 sections = self.get_sections(old_top)
118 topo = LegacyTopology(sections, old_top)
124 'qemupath' in old_top[instance]:
129 if isinstance(old_top[instance][device], dict):
131 old_top[instance].pop(device)
135 for item in sorted(old_top[instance]):
136 if isinstance(old_top[instance][item], dict):
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/hotspot/share/gc/z/
H A DzPage.inline.hpp265 const uintptr_t old_top = top(); in undo_alloc_object() local
266 const uintptr_t new_top = old_top - aligned_size; in undo_alloc_object()
284 uintptr_t old_top = top(); in undo_alloc_object_atomic() local
287 const uintptr_t new_top = old_top - aligned_size; in undo_alloc_object_atomic()
293 const uintptr_t prev_top = Atomic::cmpxchg(&_top, old_top, new_top); in undo_alloc_object_atomic()
294 if (prev_top == old_top) { in undo_alloc_object_atomic()
300 old_top = prev_top; in undo_alloc_object_atomic()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/hotspot/share/gc/z/
H A DzPage.inline.hpp267 const uintptr_t old_top = top(); in undo_alloc_object() local
268 const uintptr_t new_top = old_top - aligned_size; in undo_alloc_object()
286 uintptr_t old_top = top(); in undo_alloc_object_atomic() local
289 const uintptr_t new_top = old_top - aligned_size; in undo_alloc_object_atomic()
295 const uintptr_t prev_top = Atomic::cmpxchg(&_top, old_top, new_top); in undo_alloc_object_atomic()
296 if (prev_top == old_top) { in undo_alloc_object_atomic()
302 old_top = prev_top; in undo_alloc_object_atomic()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/hotspot/share/gc/g1/
H A Dg1Allocator.cpp388 HeapWord* old_top = _allocation_region->top(); in archive_mem_allocate() local
395 assert(_bottom <= old_top && old_top <= _max, in archive_mem_allocate()
398 p2i(_bottom), p2i(old_top), p2i(_max)); in archive_mem_allocate()
405 HeapWord* new_top = old_top + word_size; in archive_mem_allocate()
409 if (old_top != _max) { in archive_mem_allocate()
410 size_t fill_size = pointer_delta(_max, old_top); in archive_mem_allocate()
411 CollectedHeap::fill_with_object(old_top, fill_size); in archive_mem_allocate()
415 old_top = _bottom = _max; in archive_mem_allocate()
425 old_top = _allocation_region->bottom(); in archive_mem_allocate()
428 _allocation_region->set_top(old_top + word_size); in archive_mem_allocate()
[all …]
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/hotspot/share/gc/g1/
H A Dg1Allocator.cpp398 HeapWord* old_top = _allocation_region->top(); in archive_mem_allocate() local
405 assert(_bottom <= old_top && old_top <= _max, in archive_mem_allocate()
408 p2i(_bottom), p2i(old_top), p2i(_max)); in archive_mem_allocate()
415 HeapWord* new_top = old_top + word_size; in archive_mem_allocate()
419 if (old_top != _max) { in archive_mem_allocate()
420 size_t fill_size = pointer_delta(_max, old_top); in archive_mem_allocate()
421 CollectedHeap::fill_with_object(old_top, fill_size); in archive_mem_allocate()
425 old_top = _bottom = _max; in archive_mem_allocate()
435 old_top = _allocation_region->bottom(); in archive_mem_allocate()
438 _allocation_region->set_top(old_top + word_size); in archive_mem_allocate()
[all …]
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/hotspot/share/gc/g1/
H A Dg1Allocator.cpp388 HeapWord* old_top = _allocation_region->top(); in archive_mem_allocate() local
395 assert(_bottom <= old_top && old_top <= _max, in archive_mem_allocate()
398 p2i(_bottom), p2i(old_top), p2i(_max)); in archive_mem_allocate()
405 HeapWord* new_top = old_top + word_size; in archive_mem_allocate()
409 if (old_top != _max) { in archive_mem_allocate()
410 size_t fill_size = pointer_delta(_max, old_top); in archive_mem_allocate()
411 CollectedHeap::fill_with_object(old_top, fill_size); in archive_mem_allocate()
415 old_top = _bottom = _max; in archive_mem_allocate()
425 old_top = _allocation_region->bottom(); in archive_mem_allocate()
428 _allocation_region->set_top(old_top + word_size); in archive_mem_allocate()
[all …]
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/hotspot/share/gc/g1/
H A Dg1Allocator.cpp387 HeapWord* old_top = _allocation_region->top(); in archive_mem_allocate() local
394 assert(_bottom <= old_top && old_top <= _max, in archive_mem_allocate()
397 p2i(_bottom), p2i(old_top), p2i(_max)); in archive_mem_allocate()
404 HeapWord* new_top = old_top + word_size; in archive_mem_allocate()
408 if (old_top != _max) { in archive_mem_allocate()
409 size_t fill_size = pointer_delta(_max, old_top); in archive_mem_allocate()
410 CollectedHeap::fill_with_object(old_top, fill_size); in archive_mem_allocate()
414 old_top = _bottom = _max; in archive_mem_allocate()
424 old_top = _allocation_region->bottom(); in archive_mem_allocate()
427 _allocation_region->set_top(old_top + word_size); in archive_mem_allocate()
[all …]
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/hotspot/share/gc/z/
H A DzPage.inline.hpp289 const uintptr_t old_top = top(); in undo_alloc_object() local
290 const uintptr_t new_top = old_top - aligned_size; in undo_alloc_object()
308 uintptr_t old_top = top(); in undo_alloc_object_atomic() local
311 const uintptr_t new_top = old_top - aligned_size; in undo_alloc_object_atomic()
317 const uintptr_t prev_top = Atomic::cmpxchg(new_top, &_top, old_top); in undo_alloc_object_atomic()
318 if (prev_top == old_top) { in undo_alloc_object_atomic()
324 old_top = prev_top; in undo_alloc_object_atomic()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/src/hotspot/share/gc/z/
H A DzPage.inline.hpp273 const uintptr_t old_top = top(); in undo_alloc_object() local
274 const uintptr_t new_top = old_top - aligned_size; in undo_alloc_object()
292 uintptr_t old_top = top(); in undo_alloc_object_atomic() local
295 const uintptr_t new_top = old_top - aligned_size; in undo_alloc_object_atomic()
301 const uintptr_t prev_top = Atomic::cmpxchg(&_top, old_top, new_top); in undo_alloc_object_atomic()
302 if (prev_top == old_top) { in undo_alloc_object_atomic()
308 old_top = prev_top; in undo_alloc_object_atomic()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/src/hotspot/share/gc/z/
H A DzPage.inline.hpp274 const uintptr_t old_top = top(); in undo_alloc_object() local
275 const uintptr_t new_top = old_top - aligned_size; in undo_alloc_object()
293 uintptr_t old_top = top(); in undo_alloc_object_atomic() local
296 const uintptr_t new_top = old_top - aligned_size; in undo_alloc_object_atomic()
302 const uintptr_t prev_top = Atomic::cmpxchg(&_top, old_top, new_top); in undo_alloc_object_atomic()
303 if (prev_top == old_top) { in undo_alloc_object_atomic()
309 old_top = prev_top; in undo_alloc_object_atomic()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/hotspot/share/gc/z/
H A DzPage.inline.hpp330 const uintptr_t old_top = top(); in undo_alloc_object() local
331 const uintptr_t new_top = old_top - aligned_size; in undo_alloc_object()
349 uintptr_t old_top = top(); in undo_alloc_object_atomic() local
352 const uintptr_t new_top = old_top - aligned_size; in undo_alloc_object_atomic()
358 const uintptr_t prev_top = Atomic::cmpxchg(new_top, &_top, old_top); in undo_alloc_object_atomic()
359 if (prev_top == old_top) { in undo_alloc_object_atomic()
365 old_top = prev_top; in undo_alloc_object_atomic()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/hotspot/share/gc/z/
H A DzPage.inline.hpp330 const uintptr_t old_top = top(); in undo_alloc_object() local
331 const uintptr_t new_top = old_top - aligned_size; in undo_alloc_object()
349 uintptr_t old_top = top(); in undo_alloc_object_atomic() local
352 const uintptr_t new_top = old_top - aligned_size; in undo_alloc_object_atomic()
358 const uintptr_t prev_top = Atomic::cmpxchg(new_top, &_top, old_top); in undo_alloc_object_atomic()
359 if (prev_top == old_top) { in undo_alloc_object_atomic()
365 old_top = prev_top; in undo_alloc_object_atomic()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/hotspot/share/gc/z/
H A DzPage.inline.hpp320 const uintptr_t old_top = top(); in undo_alloc_object() local
321 const uintptr_t new_top = old_top - aligned_size; in undo_alloc_object()
339 uintptr_t old_top = top(); in undo_alloc_object_atomic() local
342 const uintptr_t new_top = old_top - aligned_size; in undo_alloc_object_atomic()
348 const uintptr_t prev_top = Atomic::cmpxchg(new_top, &_top, old_top); in undo_alloc_object_atomic()
349 if (prev_top == old_top) { in undo_alloc_object_atomic()
355 old_top = prev_top; in undo_alloc_object_atomic()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/hotspot/share/gc/g1/
H A Dg1Allocator.cpp442 HeapWord* old_top = _allocation_region->top(); in archive_mem_allocate() local
449 assert(_bottom <= old_top && old_top <= _max, in archive_mem_allocate()
452 p2i(_bottom), p2i(old_top), p2i(_max)); in archive_mem_allocate()
459 HeapWord* new_top = old_top + word_size; in archive_mem_allocate()
463 if (old_top != _max) { in archive_mem_allocate()
464 size_t fill_size = pointer_delta(_max, old_top); in archive_mem_allocate()
465 CollectedHeap::fill_with_object(old_top, fill_size); in archive_mem_allocate()
469 old_top = _bottom = _max; in archive_mem_allocate()
479 old_top = _allocation_region->bottom(); in archive_mem_allocate()
482 _allocation_region->set_top(old_top + word_size); in archive_mem_allocate()
[all …]
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/src/hotspot/share/gc/g1/
H A Dg1Allocator.cpp443 HeapWord* old_top = _allocation_region->top(); in archive_mem_allocate() local
450 assert(_bottom <= old_top && old_top <= _max, in archive_mem_allocate()
453 p2i(_bottom), p2i(old_top), p2i(_max)); in archive_mem_allocate()
460 size_t free_words = pointer_delta(_max, old_top); in archive_mem_allocate()
464 if (old_top != _max) { in archive_mem_allocate()
467 CollectedHeap::fill_with_object(old_top, fill_size); in archive_mem_allocate()
477 old_top = _bottom = _max; in archive_mem_allocate()
483 old_top = _allocation_region->bottom(); in archive_mem_allocate()
486 assert(pointer_delta(_max, old_top) >= word_size, "enough space left"); in archive_mem_allocate()
487 _allocation_region->set_top(old_top + word_size); in archive_mem_allocate()
[all …]
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/hotspot/share/gc/g1/
H A Dg1Allocator.cpp465 HeapWord* old_top = _allocation_region->top(); in archive_mem_allocate() local
472 assert(_bottom <= old_top && old_top <= _max, in archive_mem_allocate()
475 p2i(_bottom), p2i(old_top), p2i(_max)); in archive_mem_allocate()
482 HeapWord* new_top = old_top + word_size; in archive_mem_allocate()
486 if (old_top != _max) { in archive_mem_allocate()
487 size_t fill_size = pointer_delta(_max, old_top); in archive_mem_allocate()
488 CollectedHeap::fill_with_object(old_top, fill_size); in archive_mem_allocate()
492 old_top = _bottom = _max; in archive_mem_allocate()
502 old_top = _allocation_region->bottom(); in archive_mem_allocate()
505 _allocation_region->set_top(old_top + word_size); in archive_mem_allocate()
[all …]
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/src/hotspot/share/gc/g1/
H A Dg1Allocator.cpp466 HeapWord* old_top = _allocation_region->top(); in archive_mem_allocate() local
473 assert(_bottom <= old_top && old_top <= _max, in archive_mem_allocate()
476 p2i(_bottom), p2i(old_top), p2i(_max)); in archive_mem_allocate()
483 HeapWord* new_top = old_top + word_size; in archive_mem_allocate()
487 if (old_top != _max) { in archive_mem_allocate()
488 size_t fill_size = pointer_delta(_max, old_top); in archive_mem_allocate()
489 CollectedHeap::fill_with_object(old_top, fill_size); in archive_mem_allocate()
493 old_top = _bottom = _max; in archive_mem_allocate()
503 old_top = _allocation_region->bottom(); in archive_mem_allocate()
506 _allocation_region->set_top(old_top + word_size); in archive_mem_allocate()
[all …]
/dports/www/moinmoin/moin-1.9.11/MoinMoin/util/
H A Ddiff_html.py27 def diff(request, old, new, old_top='', new_top='', old_bottom='', new_bottom='', old_top_class='',… argument
55 if old_top or new_top:
56 …result += '<tr><td class="%s">%s</td><td class="%s">%s</td></tr>' % (old_top_class, old_top, new_t…
144 …result += '<tr><td class="%s">%s</td><td class="%s">%s</td></tr>' % (old_top_class, old_top, new_t…
/dports/biology/ugene/ugene-40.1/src/libs_3rdparty/breakpad/src/client/linux/dump_writer_common/
H A Dseccomp_unwinder.cc52 uint64_t old_top = top; in PopSeccompStackFrame() local
77 if (top - offsetof(__typeof__(seccomp_stackframe), deadbeef) < old_top || in PopSeccompStackFrame()
115 uint32_t old_top = top; in PopSeccompStackFrame()
131 if (top - offsetof(__typeof__(seccomp_stackframe), deadbeef) < old_top || in PopSeccompStackFrame()
/dports/x11-wm/mutter/mutter-41.1/cogl/cogl/
H A Dcogl-matrix-stack.c108 CoglMatrixEntry *old_top = stack->last_entry; in _cogl_matrix_stack_push_replacement_entry() local
119 for (new_top = old_top; in _cogl_matrix_stack_push_replacement_entry()
125 cogl_matrix_entry_unref (old_top); in _cogl_matrix_stack_push_replacement_entry()
319 CoglMatrixEntry *old_top; in cogl_matrix_stack_pop() local
324 old_top = stack->last_entry; in cogl_matrix_stack_pop()
325 g_return_if_fail (old_top != NULL); in cogl_matrix_stack_pop()
340 for (new_top = old_top; in cogl_matrix_stack_pop()
348 cogl_matrix_entry_unref (old_top); in cogl_matrix_stack_pop()
/dports/mail/rspamd-devel/rspamd-93430bb/src/lua/
H A Dlua_expression.c237 gint flags = 0, old_top; in lua_expr_process() local
241 old_top = lua_gettop (L); in lua_expr_process()
279 lua_settop (L, old_top); in lua_expr_process()
292 gint flags = 0, old_top; in lua_expr_process_traced() local
297 old_top = lua_gettop (L); in lua_expr_process_traced()
323 lua_settop (L, old_top); in lua_expr_process_traced()
/dports/mail/rspamd/rspamd-3.1/src/lua/
H A Dlua_expression.c237 gint flags = 0, old_top; in lua_expr_process() local
241 old_top = lua_gettop (L); in lua_expr_process()
279 lua_settop (L, old_top); in lua_expr_process()
292 gint flags = 0, old_top; in lua_expr_process_traced() local
297 old_top = lua_gettop (L); in lua_expr_process_traced()
323 lua_settop (L, old_top); in lua_expr_process_traced()
/dports/databases/mariadb104-server/mariadb-10.4.24/storage/spider/mysql-test/spider/bugfix/r/
H A Dmdev_27184.result2 # MDEV-27184 Assertion `(old_top == initial_top (av) && old_size == 0) ||
3 # ((unsigned long) (old_size) >= MINSIZE && prev_inuse (old_top) &&
/dports/databases/mariadb104-client/mariadb-10.4.24/storage/spider/mysql-test/spider/bugfix/r/
H A Dmdev_27184.result2 # MDEV-27184 Assertion `(old_top == initial_top (av) && old_size == 0) ||
3 # ((unsigned long) (old_size) >= MINSIZE && prev_inuse (old_top) &&

12345678910>>...29