HomeSort by: relevance | last modified time | path
    Searched refs:prev_id (Results 1 - 6 of 6) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/msan/
msan_chained_origin_depot.cc 21 u32 prev_id; member in struct:__msan::ChainedOriginDepotDesc
28 u32 prev_id; member in struct:__msan::ChainedOriginDepotNode
33 return here_id == args.here_id && prev_id == args.prev_id;
49 prev_id has either the same distribution as here_id (but with 3:8:21)
65 k = args.prev_id;
80 prev_id = args.prev_id;
84 args_type ret = {here_id, prev_id};
95 int prev_id() { return node_->prev_id; function in struct:__msan::ChainedOriginDepotNode::Handle
    [all...]
msan_chained_origin_depot.h 20 bool ChainedOriginDepotPut(u32 here_id, u32 prev_id, u32 *new_id);
msan_origin.h 40 // (stack_id, prev_id) -> id, where
43 // * prev_id is another origin id that describes the earlier part of the
45 // Following a chain of prev_id provides the full recorded history of an
88 u32 prev_id; local in function:__msan::Origin::getNextChainedOrigin
89 u32 stack_id = ChainedOriginDepotGet(getChainedId(), &prev_id);
91 return Origin(prev_id);
msan_interface_internal.h 109 // Test that this_id is a descendant of prev_id (or they are simply equal).
113 int __msan_origin_is_descendant_or_same(u32 this_id, u32 prev_id);
msan.cc 604 int __msan_origin_is_descendant_or_same(u32 this_id, u32 prev_id) {
606 while (o.raw_id() != prev_id && o.isChainedOrigin())
608 return o.raw_id() == prev_id;
  /src/sys/external/bsd/compiler_rt/dist/include/sanitizer/
msan_interface.h 28 /* Test that this_id is a descendant of prev_id (or they are simply equal).
31 int __msan_origin_is_descendant_or_same(uint32_t this_id, uint32_t prev_id);

Completed in 14 milliseconds