HomeSort by relevance Sort by last modified time
    Searched refs:handler_size_bytes (Results 1 - 2 of 2) sorted by null

  /dalvik/vm/compiler/template/
gen-template.py 28 handler_size_bytes = -1000 variable
45 "handler_size_bytes":handler_size_bytes }
49 # Set handler_size_bytes to the value of tokens[1], and handler_size_bits to
50 # log2(handler_size_bytes). Throws an exception if "bytes" is not a power
54 global handler_size_bits, handler_size_bytes
61 handler_size_bytes = bytes = int(tokens[1])
67 if handler_size_bytes == 0 or handler_size_bytes != (1 << bits):
189 # asm_fp.write("\n .balign %d\n" % handler_size_bytes)
    [all...]
  /dalvik/vm/mterp/
gen-mterp.py 31 handler_size_bytes = -1000 variable
53 "handler_size_bytes":handler_size_bytes }
69 # Set handler_size_bytes to the value of tokens[1], and handler_size_bits to
70 # log2(handler_size_bytes). Throws an exception if "bytes" is not 0 or
74 global handler_size_bits, handler_size_bytes
83 handler_size_bytes = bytes = int(tokens[1])
89 if handler_size_bytes == 0 or handler_size_bytes != (1 << bits):
264 asm_fp.write(" .balign %d\n" % handler_size_bytes)
    [all...]

Completed in 262 milliseconds