Home
last modified time | relevance | path

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

/frameworks/minikin/tools/
Dmk_hyb_file.py457 def traverse_trie(ix, s, trie_data, ch_map, pattern_data, patterns, exceptions): argument
458 (char_mask, link_shift, link_mask, pattern_shift) = struct.unpack('<4I', trie_data[4:20])
459 node_entry = struct.unpack('<I', trie_data[24 + ix * 4: 24 + ix * 4 + 4])[0]
491 edge_entry = struct.unpack('<I', trie_data[24 + (ix + ch) * 4: 24 + (ix + ch) * 4 + 4])[0]
495 traverse_trie(link, sch, trie_data, ch_map, pattern_data, patterns, exceptions)
509 trie_data = hyb_data[trie_off:pattern_off]
541 traverse_trie(0, '', trie_data, ch_map, pattern_data, patterns, exceptions)