Lines Matching refs:uninitialized
8 KMSAN is a dynamic error detector aimed at finding uses of uninitialized
53 Bytes 4-7 of 8 are uninitialized
60 The report says that the local variable ``uninit`` was created uninitialized in
66 uninitialized in the local variable, as well as the stack where the value was
69 A use of uninitialized value ``v`` is reported by KMSAN in the following cases:
85 ignore uninitialized values in that function and mark its output as initialized.
137 kernel memory byte is uninitialized. Marking the memory uninitialized (i.e.
165 ``c`` are uninitialized, while the lower byte is initialized.
171 This origin describes the point in program execution at which the uninitialized
173 stack (for heap-allocated memory), or the function containing the uninitialized
176 When an uninitialized variable is allocated on stack or heap, a new origin
180 result is one of the origins corresponding to any of the uninitialized inputs.
216 If both function arguments are uninitialized, only the origin of the second
223 uninitialized value to memory. The new origin references both its creation stack
286 Passing uninitialized values to functions
294 enabled by default to let KMSAN report uninitialized values earlier.
428 E. Stepanov, K. Serebryany. `MemorySanitizer: fast detector of uninitialized