Home
last modified time | relevance | path

Searched refs:cur_value (Results 1 – 2 of 2) sorted by relevance

/system/core/libunwindstack/
DDwarfMemory.cpp48 uint64_t cur_value = 0; in ReadULEB128() local
55 cur_value += static_cast<uint64_t>(byte & 0x7f) << shift; in ReadULEB128()
58 *value = cur_value; in ReadULEB128()
63 uint64_t cur_value = 0; in ReadSLEB128() local
70 cur_value += static_cast<uint64_t>(byte & 0x7f) << shift; in ReadSLEB128()
75 cur_value |= static_cast<uint64_t>(-1) << shift; in ReadSLEB128()
77 *value = static_cast<int64_t>(cur_value); in ReadSLEB128()
/system/iorap/tests/src/inode2filename/
Dsearch_directories_test.cc812 value_type cur_value; member
840 os << "cur_value:\"" << cur_value << "\","; in PrintToStream()
889 return cur_value; // Can't use *cur because we could yield a '/'. in operator *()
894 return &cur_value; // Can't use &*cur because we could yield a '/'. in operator ->()
941 it.cur_value = whole_path.substr(0, /*count*/1); // '/' in MakeBegin()
942 DCHECK_EQ(it.cur_value, "/"sv); in MakeBegin()
994 cur_value = *cur; in UpdateValues()
1036 cur_value = *cur; in UpdateValues()
1039 DCHECK_NE(&cur_value[0], &old_cur_value[0]); in UpdateValues()