Home
last modified time | relevance | path

Searched refs:COPY_ON_WRITE (Results 1 – 25 of 34) sorted by relevance

12

/dports/graphics/blender/blender-2.91.0/source/blender/depsgraph/intern/eval/
H A Ddeg_eval.cc82 COPY_ON_WRITE, enumerator
136 if (comp_node->type == NodeType::COPY_ON_WRITE) { in check_operation_node_visible()
209 case EvaluationStage::COPY_ON_WRITE: in need_evaluate_operation_at_stage()
210 return (component_node->type == NodeType::COPY_ON_WRITE); in need_evaluate_operation_at_stage()
216 BLI_assert(operation_node->scheduled || component_node->type != NodeType::COPY_ON_WRITE); in need_evaluate_operation_at_stage()
388 state.stage = EvaluationStage::COPY_ON_WRITE; in deg_evaluate_on_refresh()
/dports/lang/kawa/kawa-3.1.1/gnu/lists/
H A DSimpleVector.java65 protected static final long COPY_ON_WRITE = 0x400000000L; field in SimpleVector
119 if ((info & (COPY_ON_WRITE)) != 0) // FIXME handled by checkCanWrite ? in gapReserveGeneric()
189 this.info |= COPY_ON_WRITE; in asImmutable()
198 if ((fl & COPY_ON_WRITE) != 0) { in checkCanWrite()
215 fl &= ~COPY_ON_WRITE; in doCopyOnWrite()
H A DSequences.java213 base.info |= SimpleVector.COPY_ON_WRITE; in copySimple()
/dports/graphics/blender/blender-2.91.0/source/blender/depsgraph/intern/node/
H A Ddeg_node.cc83 case NodeType::COPY_ON_WRITE: in nodeTypeAsString()
156 case NodeType::COPY_ON_WRITE: in nodeTypeToSceneComponent()
239 case NodeType::COPY_ON_WRITE: in nodeTypeToObjectComponent()
H A Ddeg_node_operation.h172 COPY_ON_WRITE, enumerator
H A Ddeg_node.h95 COPY_ON_WRITE, enumerator
H A Ddeg_node_operation.cc175 case OperationCode::COPY_ON_WRITE: in operationCodeAsString()
H A Ddeg_node_component.cc326 DEG_COMPONENT_NODE_DEFINE(CopyOnWrite, COPY_ON_WRITE, ID_RECALC_COPY_ON_WRITE);
/dports/graphics/blender/blender-2.91.0/source/blender/depsgraph/intern/
H A Ddepsgraph_tag.cc124 *component_type = NodeType::COPY_ON_WRITE; in depsgraph_select_tag_to_component_opcode()
125 *operation_code = OperationCode::COPY_ON_WRITE; in depsgraph_select_tag_to_component_opcode()
194 *component_type = NodeType::COPY_ON_WRITE; in depsgraph_tag_to_component_opcode()
268 ComponentNode *cow_comp = id_node->find_component(NodeType::COPY_ON_WRITE); in depsgraph_id_tag_copy_on_write()
H A Ddepsgraph.cc189 BLI_assert(operation_to->owner->type != NodeType::COPY_ON_WRITE || in add_new_relation()
190 operation_from->owner->type == NodeType::COPY_ON_WRITE); in add_new_relation()
/dports/graphics/blender/blender-2.91.0/source/blender/depsgraph/intern/debug/
H A Ddeg_debug_relations_graphviz.cc113 {NodeType::COPY_ON_WRITE, 13},
308 if (op_from->owner->type == NodeType::COPY_ON_WRITE && in deg_debug_graphviz_relation_arrowhead()
422 case NodeType::COPY_ON_WRITE: in deg_debug_graphviz_node()
/dports/graphics/blender/blender-2.91.0/source/blender/depsgraph/intern/builder/
H A Ddeg_builder_relations.cc1336 ComponentKey cow_key(id_node_to->id_orig, NodeType::COPY_ON_WRITE); in build_animdata_curves_targets()
1519 ComponentKey cow_key(id_ptr, NodeType::COPY_ON_WRITE); in build_driver_data()
1539 ComponentKey cow_key(ptr.owner_id, NodeType::COPY_ON_WRITE); in build_driver_data()
2751 owner, NodeType::COPY_ON_WRITE, OperationCode::COPY_ON_WRITE); in build_nested_datablock()
2752 OperationKey id_copy_on_write_key(id, NodeType::COPY_ON_WRITE, OperationCode::COPY_ON_WRITE); in build_nested_datablock()
2777 OperationKey copy_on_write_key(id_orig, NodeType::COPY_ON_WRITE, OperationCode::COPY_ON_WRITE); in build_copy_on_write_relations()
2786 if (comp_node->type == NodeType::COPY_ON_WRITE) { in build_copy_on_write_relations()
2870 object_data_id, NodeType::COPY_ON_WRITE, OperationCode::COPY_ON_WRITE); in build_copy_on_write_relations()
2891 &animation_data->action->id, NodeType::COPY_ON_WRITE, OperationCode::COPY_ON_WRITE); in build_copy_on_write_relations()
H A Ddeg_builder_nodes.cc177 ComponentNode *comp_cow = id_node->add_component(NodeType::COPY_ON_WRITE); in add_id_node()
180 OperationCode::COPY_ON_WRITE, in add_id_node()
/dports/lang/spidermonkey60/firefox-60.9.0/js/src/vm/
H A DNativeObject.h189 COPY_ON_WRITE = 0x4, enumerator
262 bool isCopyOnWrite() const { return flags & COPY_ON_WRITE; } in isCopyOnWrite()
265 flags &= ~COPY_ON_WRITE; in clearCopyOnWrite()
271 MOZ_ASSERT(!(flags & (NONWRITABLE_ARRAY_LENGTH | FROZEN | COPY_ON_WRITE))); in addShiftedElements()
280 MOZ_ASSERT(!(flags & (NONWRITABLE_ARRAY_LENGTH | FROZEN | COPY_ON_WRITE))); in unshiftShiftedElements()
361 COPY_ON_WRITE))); in numShiftedElements()
/dports/lang/spidermonkey78/firefox-78.9.0/js/src/vm/
H A DNativeObject.h196 COPY_ON_WRITE = 0x4, enumerator
279 bool isCopyOnWrite() const { return flags & COPY_ON_WRITE; } in isCopyOnWrite()
282 flags &= ~COPY_ON_WRITE; in clearCopyOnWrite()
289 (NONWRITABLE_ARRAY_LENGTH | SEALED | FROZEN | COPY_ON_WRITE))); in addShiftedElements()
299 (NONWRITABLE_ARRAY_LENGTH | SEALED | FROZEN | COPY_ON_WRITE))); in unshiftShiftedElements()
397 FROZEN | COPY_ON_WRITE))); in numShiftedElements()
/dports/www/firefox-legacy/firefox-52.8.0esr/js/src/vm/
H A DNativeObject.h179 COPY_ON_WRITE = 0x4, enumerator
238 return flags & COPY_ON_WRITE; in isCopyOnWrite()
242 flags &= ~COPY_ON_WRITE; in clearCopyOnWrite()
H A DNativeObject.cpp100 header->flags |= COPY_ON_WRITE; in MakeElementsCopyOnWrite()
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/third_party/mozjs-45/extract/js/src/vm/
H A DNativeObject.h178 COPY_ON_WRITE = 0x4, enumerator
234 return flags & COPY_ON_WRITE; in isCopyOnWrite()
238 flags &= ~COPY_ON_WRITE; in clearCopyOnWrite()
H A DNativeObject.cpp98 header->flags |= COPY_ON_WRITE; in MakeElementsCopyOnWrite()
/dports/lang/spidermonkey60/firefox-60.9.0/js/src/jit/
H A DBaselineCacheIRCompiler.cpp1317 ObjectElements::COPY_ON_WRITE | ObjectElements::FROZEN), in emitStoreDenseElement()
1324 Imm32(ObjectElements::COPY_ON_WRITE | ObjectElements::FROZEN), in emitStoreDenseElement()
1387 Imm32(ObjectElements::COPY_ON_WRITE | ObjectElements::FROZEN), in emitStoreDenseElementHole()
1534 Imm32(ObjectElements::COPY_ON_WRITE | ObjectElements::FROZEN), in emitArrayPush()
/dports/lang/spidermonkey78/firefox-78.9.0/js/src/jit/
H A DBaselineCacheIRCompiler.cpp1137 ObjectElements::COPY_ON_WRITE), in emitStoreDenseElement()
1142 Imm32(ObjectElements::COPY_ON_WRITE), failure->label()); in emitStoreDenseElement()
1204 Imm32(ObjectElements::COPY_ON_WRITE), failure->label()); in emitStoreDenseElementHole()
1353 Imm32(ObjectElements::COPY_ON_WRITE), failure->label()); in emitArrayPush()
/dports/java/eclipse-pydev/eclipse-pydev-8.2.0/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/pydevd_attach_to_process/winappdbg/win32/
H A Dkernel32.py1005 COPY_ON_WRITE = ( variable in MemoryBasicInformation
1145 return self.has_content() and bool(self.Protect & self.COPY_ON_WRITE)
/dports/devel/pycharm-pro/pycharm-2020.2.3/plugins/python/helpers/pydev/pydevd_attach_to_process/winappdbg/win32/
H A Dkernel32.py1005 COPY_ON_WRITE = ( variable in MemoryBasicInformation
1145 return self.has_content() and bool(self.Protect & self.COPY_ON_WRITE)
/dports/devel/py-pydevd/pydevd-1.1.1/pydevd_attach_to_process/winappdbg/win32/
H A Dkernel32.py1005 COPY_ON_WRITE = ( variable in MemoryBasicInformation
1145 return self.has_content() and bool(self.Protect & self.COPY_ON_WRITE)
/dports/devel/py-debugpy/debugpy-1.5.1/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/win32/
H A Dkernel32.py1005 COPY_ON_WRITE = ( variable in MemoryBasicInformation
1145 return self.has_content() and bool(self.Protect & self.COPY_ON_WRITE)

12