Function report |
Source Code:include\linux\overflow.h |
Create Date:2022-07-28 05:37:56 |
Last Modify:2020-03-12 14:18:49 | Copyright©Brick |
home page | Tree |
Annotation kernel can get tool activity | Download SCCT | Chinese |
Name:array3_size() - Calculate size of 3-dimensional array.*@a: dimension one*@b: dimension two*@c: dimension three* Calculates size of 3-dimensional array: @a *@b *@c.* Returns: number of bytes needed to represent the array or SIZE_MAX on* overflow.
Proto:static inline __must_check size_t array3_size(size_t a, size_t b, size_t c)
Type:size_t
Parameter:
Type | Parameter | Name |
---|---|---|
size_t | a | |
size_t | b | |
size_t | c |
279 | If check_mul_overflow(a, b, & bytes) Then Return SIZE_MAX |
281 | If check_mul_overflow(bytes, c, & bytes) Then Return SIZE_MAX |
284 | Return bytes |
Name | Describe |
---|---|
trigger_batched_requests_store | We use a kthread as otherwise the kernel serializes all our sync requests* and we would not be able to mimic batched requests on a sync call. Batched* requests on a sync call can for instance happen on a device driver when |
trigger_batched_requests_async_store | |
test_rht_init |
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 |