Home
last modified time | relevance | path

Searched refs:name_cp (Results 1 - 8 of 8) sorted by relevance

/third_party/jerryscript/jerry-core/ecma/base/
H A Decma-lcache.c53 #define ECMA_LCACHE_CREATE_ID(object_cp, name_cp) \
54 (((ecma_lcache_hash_entry_id_t) (object_cp) << ECMA_LCACHE_HASH_ENTRY_ID_SHIFT) | (name_cp))
77 jmem_cpointer_t name_cp) /**< compressed pointer to property name */ in ecma_lcache_row_index()
81 return (size_t) (((name_cp ^ object_cp) & ECMA_LCACHE_HASH_MASK) >> ECMA_LCACHE_HASH_BITSHIFT_INDEX); in ecma_lcache_row_index()
89 const jmem_cpointer_t name_cp, /**< property name */ in ecma_lcache_insert()
102 size_t row_index = ecma_lcache_row_index (object_cp, name_cp); in ecma_lcache_insert()
130 entry_p->id = ECMA_LCACHE_CREATE_ID (object_cp, name_cp); in ecma_lcache_insert()
189 const jmem_cpointer_t name_cp, /**< property name */ in ecma_lcache_invalidate()
201 size_t row_index = ecma_lcache_row_index (object_cp, name_cp); in ecma_lcache_invalidate()
211 JERRY_ASSERT (entry_p->id == ECMA_LCACHE_CREATE_ID (object_cp, name_cp)); in ecma_lcache_invalidate()
76 ecma_lcache_row_index(jmem_cpointer_t object_cp, jmem_cpointer_t name_cp) ecma_lcache_row_index() argument
88 ecma_lcache_insert(const ecma_object_t *object_p, const jmem_cpointer_t name_cp, ecma_property_t *prop_p) ecma_lcache_insert() argument
188 ecma_lcache_invalidate(const ecma_object_t *object_p, const jmem_cpointer_t name_cp, ecma_property_t *prop_p) ecma_lcache_invalidate() argument
[all...]
H A Decma-lcache.h27 void ecma_lcache_insert (const ecma_object_t *object_p, const jmem_cpointer_t name_cp, ecma_property_t *prop_p);
29 void ecma_lcache_invalidate (const ecma_object_t *object_p, const jmem_cpointer_t name_cp, ecma_property_t *prop_p);
H A Decma-property-hashmap.c299 jmem_cpointer_t name_cp, /**< property name */ in ecma_property_hashmap_delete()
315 uint32_t entry_index = ecma_string_get_property_name_hash (*property_p, name_cp); in ecma_property_hashmap_delete()
344 JERRY_ASSERT (property_pair_p->names_cp[offset] == name_cp); in ecma_property_hashmap_delete()
298 ecma_property_hashmap_delete(ecma_object_t *object_p, jmem_cpointer_t name_cp, ecma_property_t *property_p) ecma_property_hashmap_delete() argument
H A Decma-property-hashmap.h72 ecma_property_hashmap_delete_status ecma_property_hashmap_delete (ecma_object_t *object_p, jmem_cpointer_t name_cp,
H A Decma-gc.c971 jmem_cpointer_t name_cp = prop_pair_p->names_cp[i]; in ecma_gc_free_properties() local
976 if (JERRY_UNLIKELY (name_cp == LIT_INTERNAL_MAGIC_STRING_NATIVE_POINTER)) in ecma_gc_free_properties()
981 else if (JERRY_UNLIKELY (name_cp == LIT_INTERNAL_MAGIC_STRING_WEAK_REFS)) in ecma_gc_free_properties()
1004 ecma_free_property (object_p, name_cp, property_p); in ecma_gc_free_properties()
H A Decma-helpers.c764 jmem_cpointer_t name_cp, /**< name of the property or ECMA_NULL_POINTER */ in ecma_free_property()
792 && name_cp >= LIT_FIRST_INTERNAL_MAGIC_STRING); in ecma_free_property()
800 ecma_lcache_invalidate (object_p, name_cp, property_p); in ecma_free_property()
806 ecma_string_t *prop_name_p = ECMA_GET_NON_NULL_POINTER (ecma_string_t, name_cp); in ecma_free_property()
763 ecma_free_property(ecma_object_t *object_p, jmem_cpointer_t name_cp, ecma_property_t *property_p) ecma_free_property() argument
H A Decma-helpers.h454 void ecma_free_property (ecma_object_t *object_p, jmem_cpointer_t name_cp, ecma_property_t *property_p);
/third_party/mesa3d/src/mesa/main/
H A Dshaderapi.c3524 char *name_cp = copy_string(ctx, name, namelen, caller); in _mesa_NamedStringARB() local
3526 if (!name_cp || !string_cp) { in _mesa_NamedStringARB()
3528 free(name_cp); in _mesa_NamedStringARB()
3535 if (!validate_and_tokenise_sh_incl(ctx, mem_ctx, &path_list, name_cp, in _mesa_NamedStringARB()
3538 free(name_cp); in _mesa_NamedStringARB()
3574 free(name_cp); in _mesa_NamedStringARB()
3584 char *name_cp = copy_string(ctx, name, namelen, caller); in _mesa_DeleteNamedStringARB() local
3585 if (!name_cp) in _mesa_DeleteNamedStringARB()
3589 lookup_shader_include(ctx, name_cp, true); in _mesa_DeleteNamedStringARB()
3593 "%s(no string associated with path %s)", caller, name_cp); in _mesa_DeleteNamedStringARB()
3680 char *name_cp = copy_string(ctx, name, namelen, ""); _mesa_IsNamedStringARB() local
3698 char *name_cp = copy_string(ctx, name, namelen, caller); _mesa_GetNamedStringARB() local
3726 char *name_cp = copy_string(ctx, name, namelen, caller); _mesa_GetNamedStringivARB() local
[all...]

Completed in 16 milliseconds