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.
130 kernel memory byte is uninitialized. Marking the memory uninitialized (i.e.
158 ``c`` are uninitialized, while the lower byte is initialized.
164 This origin describes the point in program execution at which the uninitialized
166 stack (for heap-allocated memory), or the function containing the uninitialized
169 When an uninitialized variable is allocated on stack or heap, a new origin
173 result is one of the origins corresponding to any of the uninitialized inputs.
209 If both function arguments are uninitialized, only the origin of the second
216 uninitialized value to memory. The new origin references both its creation stack
279 Passing uninitialized values to functions
287 enabled by default to let KMSAN report uninitialized values earlier.
421 E. Stepanov, K. Serebryany. `MemorySanitizer: fast detector of uninitialized