Home
last modified time | relevance | path

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

/external/cronet/third_party/libxml/src/
Dtestrecurse.c857 unsigned long f_size = xmlStrlen(BAD_CAST "some internal data"); in notRecursiveHugeTest() local
863 e_size = f_size * 2 + in notRecursiveHugeTest()
902 total_size = (f_size + e_size + d_size + 3 * fixed_cost) * in notRecursiveHugeTest()
963 unsigned long f_size; in hugeDtdTest() local
979 f_size = e_size * 2; in hugeDtdTest()
981 e_size + f_size + fixed_cost * 4 + in hugeDtdTest()
982 (a_size + e_size + f_size + fixed_cost * 3) * in hugeDtdTest()
/external/libxml2/
Dtestrecurse.c857 unsigned long f_size = xmlStrlen(BAD_CAST "some internal data"); in notRecursiveHugeTest() local
863 e_size = f_size * 2 + in notRecursiveHugeTest()
902 total_size = (f_size + e_size + d_size + 3 * fixed_cost) * in notRecursiveHugeTest()
963 unsigned long f_size; in hugeDtdTest() local
979 f_size = e_size * 2; in hugeDtdTest()
981 e_size + f_size + fixed_cost * 4 + in hugeDtdTest()
982 (a_size + e_size + f_size + fixed_cost * 3) * in hugeDtdTest()
/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/compiler/mlir/tosa/transforms/
Dlegalize_utils.cc378 int64_t f_size = filter_type.getDimSize(filter_dim); in getPaddingValuesFromPadType() local
380 ip_size = ip_size < 0 ? f_size * dim_dilation : ip_size; in getPaddingValuesFromPadType()
384 ip_size, f_size, dim_dilation, dim_stride, tf_pad, &op_size, in getPaddingValuesFromPadType()
/external/tensorflow/tensorflow/c/eager/
Dc_api.cc1070 if (const int f_size = default_value.list().f_size()) { in SetOpAttrValueScalar() local
1072 f_vector.reserve(f_size); in SetOpAttrValueScalar()
1073 for (int i = 0; i < f_size; ++i) { in SetOpAttrValueScalar()
1076 TFE_OpSetAttrFloatList(op, attr_name, f_vector.data(), f_size); in SetOpAttrValueScalar()
/external/tensorflow/tensorflow/core/framework/
Dattr_value_util.cc266 } else if (attr_value.list().f_size() > 0) { in SummarizeAttrValue()
267 for (int i = 0; i < attr_value.list().f_size(); ++i) { in SummarizeAttrValue()
Dattr_value.pb_text.cc42 for (int i = 0; i < msg.f_size(); ++i) { in AppendProtoDebugString()
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.py791 f_size = os.fstat(sig_f.fileno()).st_size
792 pad = b'\0' * (sig_size - f_size)
/external/rust/crates/libc/src/unix/bsd/freebsdlike/dragonfly/
Dmod.rs246 pub f_size: ::size_t,
/external/tensorflow/tensorflow/lite/toco/tflite/
Doperator_test.cc711 ASSERT_EQ(3, list.f_size()); in TEST_F()
Doperator.cc1693 } else if (attr.list().f_size() > 0) { in WriteOptions()
/external/tensorflow/tensorflow/compiler/mlir/lite/
Dflatbuffer_export.cc1166 } else if (attr.list().f_size() > 0) { in CreateFlexBuilderWithNodeAttrs()
/external/tensorflow/tensorflow/python/eager/
Dpywrap_tfe_src.cc572 int num_values = attr.default_value().list().f_size(); in SetOpAttrListDefault()