Home
last modified time | relevance | path

Searched refs:range_idx (Results 1 – 9 of 9) sorted by relevance

/external/lldb/scripts/Python/interface/
DSBBlock.i127 range_idx = self.sbblock.GetRangeIndexForBlockAddress(key);
128 if range_idx < len(self):
129 … return [self.sbblock.GetRangeStartAddress(range_idx), self.sbblock.GetRangeEndAddress(range_idx)]
/external/chromium_org/third_party/brotli/src/brotli/enc/
Dprefix.cc97 int range_idx = 3 * (insert_prefix >> 3) + (copy_prefix >> 3); in CommandPrefix() local
98 return ((kInsertAndCopyRangeLut[range_idx] << 6) + in CommandPrefix()
/external/chromium_org/third_party/brotli/src/brotli/dec/
Ddecode.c854 int range_idx; in BrotliDecompress() local
880 range_idx = cmd_code >> 6; in BrotliDecompress()
881 if (range_idx >= 2) { in BrotliDecompress()
882 range_idx -= 2; in BrotliDecompress()
887 insert_code = kInsertRangeLut[range_idx] + ((cmd_code >> 3) & 7); in BrotliDecompress()
888 copy_code = kCopyRangeLut[range_idx] + (cmd_code & 7); in BrotliDecompress()
/external/lldb/source/Symbol/
DBlock.cpp352 Block::GetRangeAtIndex (uint32_t range_idx, AddressRange &range) in GetRangeAtIndex() argument
354 if (range_idx < m_ranges.GetSize()) in GetRangeAtIndex()
359 const Range &vm_range = m_ranges.GetEntryRef(range_idx); in GetRangeAtIndex()
DSymbolContext.cpp402 uint32_t range_idx, in GetAddressRange() argument
418 return inline_block->GetRangeAtIndex (range_idx, range); in GetAddressRange()
422 return block->GetRangeAtIndex (range_idx, range); in GetAddressRange()
428 if (range_idx == 0) in GetAddressRange()
437 if (range_idx == 0) in GetAddressRange()
/external/lldb/include/lldb/Symbol/
DBlock.h461 GetRangeAtIndex (uint32_t range_idx,
DSymbolContext.h210 uint32_t range_idx,
/external/lldb/source/Core/
DDisassembler.cpp151 …for (uint32_t range_idx = 0; sc.GetAddressRange(scope, range_idx, use_inline_block_range, range); … in Disassemble() local
/external/chromium_org/v8/src/
Dlithium-allocator.cc1404 for (int range_idx = 0; range_idx < live_ranges()->length(); ++range_idx) { in PopulatePointerMaps() local
1405 LiveRange* range = live_ranges()->at(range_idx); in PopulatePointerMaps()