Example #1
0
def nr_regions(x, max_count=None):
    return list(hashsplit._nonresident_page_regions(bytearray(x), 1,
                                                    max_count))
Example #2
0
def nr_regions(x, max_count=None):
    return list(hashsplit._nonresident_page_regions(bytearray(x), max_count))
Example #3
0
def nr_regions(x, max_count=None):
    return list(hashsplit._nonresident_page_regions(''.join(map(chr, x)),
                                                    max_count))
Example #4
0
def nr_regions(x, max_count=None):
    return list(
        hashsplit._nonresident_page_regions(''.join(map(chr, x)), max_count))