Lines Matching refs:avoid
104 #### [Rule] Use the defined data types to define variables, and avoid custom basic data types witho…
333 …is used by default. Using **sizeof()** to obtain the structure length can avoid length calculation…
335 Pay attention to the length differences on 32- and 64-bit OSs to avoid length calculation errors. C…
365 …ignment is preferred. Do not use 8-byte alignment or 64-bit data types to avoid errors during comm…
371 …t pad the structures. It is recommended that natural alignment be used to avoid data holes. Use at…
420 …a structure, implement 8-byte natural alignment to save storage space and avoid padding on the pre…
446 …tween different data types. If necessary, use explicit type conversion to avoid result inconsisten…
456 The preceding conversion process may cause unexpected results. Therefore, exercise caution to avoid…
524 To avoid this type conflict, use uintptr_t to indicate the pointer type.
554 …bit fields, fully consider the basic types and alignment of bit fields to avoid calculation errors…
560 …heck whether overflow and rewind occur. Change the data type to 32-bit to avoid result inconsisten…