Home
last modified time | relevance | path

Searched refs:f_size (Results 1 – 12 of 12) sorted by relevance

/external/perfetto/src/trace_processor/python/perfetto/trace_processor/
Dloader.py47 f_size = os.path.getsize(file_path)
49 while (bytes_read < f_size):
/external/tensorflow/tensorflow/python/framework/
Dop_def_util.cc271 } else if (list.f_size()) { in AttrValueListToPyObject()
272 Safe_PyObjectPtr result(PyList_New(list.f_size())); in AttrValueListToPyObject()
273 for (int i = 0; i < list.f_size(); ++i) { in AttrValueListToPyObject()
Dpython_op_gen_internal.cc399 } else if (value.list().f_size() > 0) { in AttrListToPython()
400 for (int i = 0; i < value.list().f_size(); ++i) { in AttrListToPython()
/external/tensorflow/tensorflow/c/eager/
Dc_api.cc1081 if (const int f_size = default_value.list().f_size()) { in SetOpAttrValueScalar() local
1083 for (int i = 0; i < f_size; ++i) { in SetOpAttrValueScalar()
1086 TFE_OpSetAttrFloatList(op, attr_name, f_vector.data(), f_size); in SetOpAttrValueScalar()
/external/tensorflow/tensorflow/core/framework/
Dattr_value_util.cc255 } else if (attr_value.list().f_size() > 0) { in SummarizeAttrValue()
256 for (int i = 0; i < attr_value.list().f_size(); ++i) { in SummarizeAttrValue()
Dop_def_util.cc109 length = attr_value.list().f_size(); in ValidateAttrValue()
/external/tensorflow/tensorflow/cc/framework/
Dcc_op_gen.cc242 } else if (attr_value.list().f_size() > 0) { in PrintAttrValue()
243 for (int i = 0; i < attr_value.list().f_size(); ++i) { in PrintAttrValue()
282 return list.s_size() == 0 && list.i_size() == 0 && list.f_size() == 0 && in IsEmptyList()
/external/autotest/client/cros/faft/utils/
Dflashrom_handler.py816 f_size = os.fstat(sig_f.fileno()).st_size
817 pad = '\0' * (sig_size - f_size)
/external/tensorflow/tensorflow/lite/toco/tflite/
Doperator_test.cc709 ASSERT_EQ(3, list.f_size()); in TEST_F()
Doperator.cc1694 } else if (attr.list().f_size() > 0) { in WriteOptions()
/external/tensorflow/tensorflow/compiler/mlir/lite/
Dflatbuffer_export.cc1045 } else if (attr.list().f_size() > 0) { in CreateFlexBuilderWithNodeAttrs()
/external/tensorflow/tensorflow/python/eager/
Dpywrap_tfe_src.cc563 int num_values = attr.default_value().list().f_size(); in SetOpAttrListDefault()