static boolean is_ind_register_used( struct sanity_check_ctx *ctx, scan_register *reg) { return cso_hash_contains(ctx->regs_ind_used, reg->file); }
VGboolean vg_context_is_object_valid(struct vg_context *ctx, enum vg_object_type type, void *ptr) { if (ctx) { struct cso_hash *hash = ctx->owned_objects[type]; if (!hash) return VG_FALSE; return cso_hash_contains(hash, (unsigned)(long)ptr); } return VG_FALSE; }