HomeSort by: relevance | last modified time | path
    Searched defs:max_ops (Results 1 - 5 of 5) sorted by relevancy

  /src/external/gpl3/binutils/dist/opcodes/
s390-mkopc.c 73 int max_ops; variable
79 max_ops = 256;
80 op_array = malloc (max_ops * sizeof (struct op_struct));
95 while (no_ops >= max_ops)
97 max_ops = max_ops * 2;
98 op_array = realloc (op_array, max_ops * sizeof (struct op_struct));
  /src/external/gpl3/binutils.old/dist/opcodes/
s390-mkopc.c 73 int max_ops; variable
79 max_ops = 256;
80 op_array = malloc (max_ops * sizeof (struct op_struct));
95 while (no_ops >= max_ops)
97 max_ops = max_ops * 2;
98 op_array = realloc (op_array, max_ops * sizeof (struct op_struct));
  /src/external/gpl3/gdb.old/dist/opcodes/
s390-mkopc.c 73 int max_ops; variable
79 max_ops = 256;
80 op_array = malloc (max_ops * sizeof (struct op_struct));
95 while (no_ops >= max_ops)
97 max_ops = max_ops * 2;
98 op_array = realloc (op_array, max_ops * sizeof (struct op_struct));
  /src/external/gpl3/gdb/dist/opcodes/
s390-mkopc.c 73 int max_ops; variable
79 max_ops = 256;
80 op_array = malloc (max_ops * sizeof (struct op_struct));
95 while (no_ops >= max_ops)
97 max_ops = max_ops * 2;
98 op_array = realloc (op_array, max_ops * sizeof (struct op_struct));
  /src/external/bsd/jemalloc/dist/src/
hpa.c 533 size_t max_ops = (forced ? (size_t)-1 : 16); local
541 while (hpa_should_purge(tsdn, shard) && nops < max_ops) {
553 } while ((hugified || purged) && nops < max_ops);

Completed in 42 milliseconds