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

  /external/qemu/
translate-all.c 526 static inline size_t size_code_gen_buffer(size_t tb_size)
529 if (tb_size == 0) {
531 tb_size = DEFAULT_CODE_GEN_BUFFER_SIZE;
537 tb_size = (unsigned long)(ram_size / 4);
540 if (tb_size < MIN_CODE_GEN_BUFFER_SIZE) {
541 tb_size = MIN_CODE_GEN_BUFFER_SIZE;
543 if (tb_size > MAX_CODE_GEN_BUFFER_SIZE) {
544 tb_size = MAX_CODE_GEN_BUFFER_SIZE;
546 tcg_ctx.code_gen_buffer_size = tb_size;
547 return tb_size;
    [all...]
vl-android.c 2145 int tb_size; local
    [all...]
exec.c 102 /* Must be called before using the QEMU cpus. 'tb_size' is the size
105 void cpu_exec_init_all(unsigned long tb_size)
108 //code_gen_alloc(tb_size);
111 tcg_exec_init(tb_size);
    [all...]
  /external/qemu/include/exec/
exec-all.h 84 void tcg_exec_init(unsigned long tb_size);
  /external/qemu/include/
qemu-common.h 309 void cpu_exec_init_all(unsigned long tb_size);

Completed in 581 milliseconds