Searched refs:assocOOP (Results 1 – 4 of 4) sorted by relevance
/dports/lang/smalltalk/smalltalk-3.2.5/libgst/ |
H A D | sym.c | 843 OOP assocOOP; in find_class_variable() local 858 assocOOP = in find_class_variable() 861 if (!IS_NIL (assocOOP)) in find_class_variable() 862 return (assocOOP); in find_class_variable() 898 OOP symbol, root, assocOOP; in _gst_find_variable_binding() local 902 assocOOP = find_class_variable (symbol); in _gst_find_variable_binding() 906 root = ASSOCIATION_VALUE (assocOOP); in _gst_find_variable_binding() 908 assocOOP = _gst_namespace_association_at (root, symbol); in _gst_find_variable_binding() 911 if (!IS_NIL (assocOOP)) in _gst_find_variable_binding() 912 return _gst_make_oop_constant (&list->location, assocOOP); in _gst_find_variable_binding() [all …]
|
H A D | dict.c | 1460 OOP assocOOP; in _gst_namespace_association_at() local 1471 assocOOP = dictionary_association_at (poolOOP, symbol); in _gst_namespace_association_at() 1472 if (!IS_NIL (assocOOP)) in _gst_namespace_association_at() 1473 return (assocOOP); in _gst_namespace_association_at() 1488 OOP assocOOP = _gst_namespace_association_at (poolOOP, symbol); in _gst_namespace_at() local 1489 if (IS_NIL (assocOOP)) in _gst_namespace_at() 1490 return assocOOP; in _gst_namespace_at() 1492 return ASSOCIATION_VALUE (assocOOP); in _gst_namespace_at()
|
H A D | xlat.c | 2121 char *assocOOP = ((char *) tree->data) + jit_ptr_field (OOP, object); in gen_store_lit_var() local 2124 jit_ldi_p (JIT_R0, assocOOP); in gen_store_lit_var() 2170 char *assocOOP = ((char *) tree->data) + jit_ptr_field (OOP, object); in gen_push_lit_var() local 2173 jit_ldi_p (JIT_V0, assocOOP); in gen_push_lit_var() 2237 char *assocOOP = ((char *) tree->data) + jit_ptr_field (OOP, object); in gen_alt_lit_var() local 2239 jit_ldi_p (JIT_V1, assocOOP); in gen_alt_lit_var() 2333 char *assocOOP = ((char *) tree->data) + jit_ptr_field (OOP, object); in gen_top_lit_var() local 2337 jit_ldi_p (JIT_V0, assocOOP); in gen_top_lit_var()
|
H A D | dict.inl | 881 OOP assocOOP; local 883 assocOOP = dictionary_association_at (dictionaryOOP, keyOOP); 885 if UNCOMMON (IS_NIL (assocOOP)) 888 return (ASSOCIATION_VALUE (assocOOP));
|