函数逻辑报告 |
Source Code:include\linux\overflow.h |
Create Date:2022-07-27 06:40:31 |
Last Modify:2020-03-12 14:18:49 | Copyright©Brick |
首页 | 函数Tree |
注解内核,赢得工具 | 下载SCCT | English |
函数名称: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.
函数原型:static inline __must_check size_t array3_size(size_t a, size_t b, size_t c)
返回类型:size_t
参数:
类型 | 参数 | 名称 |
---|---|---|
size_t | a | |
size_t | b | |
size_t | c |
279 | 如果check_mul_overflow(a, b, & bytes)则返回:SIZE_MAX |
281 | 如果check_mul_overflow(bytes, c, & bytes)则返回:SIZE_MAX |
284 | 返回:bytes |
名称 | 描述 |
---|---|
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 |
源代码转换工具 开放的插件接口 | X |
---|---|
支持:c/c++/esqlc/java Oracle/Informix/Mysql 插件可实现:逻辑报告 代码生成和批量转换代码 |