We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/mrexodia/ida-pro-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
ida_bitrange.md•652 B
# ida_bitrange
Bitfield and bit-level range operations (low-priority, specialized use).
## Key Class
### bitrange_t
Represents a range of bits within a larger value.
- `init(bit_ofs, size_in_bits)` - Initialize offset and size
- `reset()` - Make empty
- `empty()` - Check if empty
- `bitoff()` / `bitsize()` / `bytesize()` - Get offset/size
- `mask64()` - Convert to 64-bit mask
- `has_common(r)` - Check overlap with another bitrange
- `intersect(r)` - Intersect two ranges
- `create_union(r)` - Union including hole between ranges
- `shift_down(cnt)` / `shift_up(cnt)` - Shift range left/right
## See Also
Full docs: skill/docs/ida_bitrange.rst