Lines Matching refs:X_PFX
47 X_EXTERN x_hash_table *X_PFX(hash_table_new) (x_hash_fun * hash,
51 X_EXTERN void X_PFX(hash_table_free) (x_hash_table * h);
53 X_EXTERN unsigned int X_PFX(hash_table_size) (x_hash_table * h);
55 X_EXTERN void X_PFX(hash_table_insert) (x_hash_table * h, void *k, void *v);
56 X_EXTERN void X_PFX(hash_table_replace) (x_hash_table * h, void *k, void *v);
57 X_EXTERN void X_PFX(hash_table_remove) (x_hash_table * h, void *k);
58 X_EXTERN void *X_PFX(hash_table_lookup) (x_hash_table * h,
60 X_EXTERN void X_PFX(hash_table_foreach) (x_hash_table * h,
68 X_PFX(cvt_uint_to_vptr) (unsigned int val) __attribute__((always_inline));
70 X_PFX(cvt_vptr_to_uint) (void * val) __attribute__((always_inline));
74 X_PFX(cvt_uint_to_vptr) (unsigned int val) { in X_PFX() function
79 X_PFX(cvt_vptr_to_uint) (void * val) { in X_PFX() function