Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/core/profiler/internal/
Dtfprof_show.cc155 string params = FormatNumber(node->proto().total_parameters()) + " params"; in FormatNode()
157 params = FormatNumber(node->proto().parameters()) + "/" + params; in FormatNode()
164 string fops = FormatNumber(node->proto().total_float_ops()) + " flops"; in FormatNode()
166 fops = FormatNumber(node->proto().float_ops()) + "/" + fops; in FormatNode()
212 string run = FormatNumber(node->proto().total_run_count()); in FormatNode()
214 run = FormatNumber(node->proto().run_count()) + "/" + run; in FormatNode()
218 string definition = FormatNumber(node->proto().total_definition_count()); in FormatNode()
Dtfprof_utils.h30 string FormatNumber(int64 n);
Dtfprof_code.cc654 string params = FormatNumber(node->proto().total_parameters()) + " params"; in FormatNode()
656 params = FormatNumber(node->proto().parameters()) + "/" + params; in FormatNode()
664 string fops = FormatNumber(node->proto().total_float_ops()) + " flops"; in FormatNode()
666 fops = FormatNumber(node->proto().float_ops()) + "/" + fops; in FormatNode()
Dtfprof_op.cc276 FormatNumber(node->proto().parameters()).c_str(), in FormatNode()
292 FormatNumber(node->proto().float_ops()).c_str(), in FormatNode()
Dtfprof_utils.cc32 string FormatNumber(int64 n) { in FormatNumber() function
/external/v8/src/objects/
Dintl-objects.h136 static MaybeHandle<String> FormatNumber(Isolate* isolate,
Dintl-objects.cc1300 MaybeHandle<String> NumberFormat::FormatNumber( in FormatNumber() function in v8::internal::NumberFormat
2081 return NumberFormat::FormatNumber(isolate, number_format_holder, number); in NumberToLocaleString()
/external/v8/src/builtins/
Dbuiltins-intl.cc593 RETURN_RESULT_OR_FAILURE(isolate, NumberFormat::FormatNumber( in BUILTIN()