Function report |
Source Code:lib\bitmap.c |
Create Date:2022-07-28 06:20:22 |
| Last Modify:2020-03-12 14:18:49 | Copyright©Brick |
| home page | Tree |
| Annotation kernel can get tool activity | Download SCCT | Chinese |
Name:__bitmap_shift_left - logical left shift of the bits in a bitmap*@dst : destination bitmap*@src : source bitmap*@shift : shift by this many bits*@nbits : bitmap size, in bits* Shifting left (multiplying) means moving bits in the LS -> MS* direction
Proto:void __bitmap_shift_left(unsigned long *dst, const unsigned long *src, unsigned int shift, unsigned int nbits)
Type:void
Parameter:
| Type | Parameter | Name |
|---|---|---|
| unsigned long * | dst | |
| const unsigned long * | src | |
| unsigned int | shift | |
| unsigned int | nbits |
| 150 | lim = BITS_TO_LONGS(nbits) |
| 151 | off = shift / BITS_PER_LONG , rem = shift % BITS_PER_LONG |
| 161 | Else lower = 0 |
| Name | Describe |
|---|---|
| __bitmap_parse | __bitmap_parse - convert an ASCII hex string into a bitmap |
| Source code conversion tool public plug-in interface | X |
|---|---|
| Support c/c++/esqlc/java Oracle/Informix/Mysql Plug-in can realize: logical Report Code generation and batch code conversion |