Home
last modified time | relevance | path

Searched refs:IDA_BMP_SIZE (Results 1 – 3 of 3) sorted by relevance

/DragonOS-0.1.2/kernel/src/libs/
Didr.c898 if (unlikely((unsigned long long)ary_id * IDA_BMP_SIZE + bmp_id > INT32_MAX)) in __get_id_from_bitmap()
905 return ary_id * IDA_BMP_SIZE + bmp_id; in __get_id_from_bitmap()
973 int ary_id = (__id % IDA_BITMAP_BITS) / IDA_BMP_SIZE; in ida_count()
974 int bmp_id = (__id % IDA_BITMAP_BITS) % IDA_BMP_SIZE; in ida_count()
996 int64_t ary_id = (__id % IDA_BITMAP_BITS) / IDA_BMP_SIZE; in ida_remove()
997 int64_t bmp_id = (__id % IDA_BITMAP_BITS) % IDA_BMP_SIZE; in ida_remove()
/DragonOS-0.1.2/kernel/src/common/
Didr.h141 #define IDA_BMP_SIZE (8 * sizeof(long)) macro
/DragonOS-0.1.2/kernel/src/ktest/
Dtest-idr.c472 assert(IDA_BMP_SIZE != 0); in ktest_idr_case6()