Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/core/kernels/image/
Dresize_bilinear_op.cc95 const float in_f = std::floor(in); in compute_interpolation_weights() local
97 std::max(static_cast<Eigen::Index>(in_f), static_cast<Eigen::Index>(0)); in compute_interpolation_weights()
100 interpolation[i].lerp = in - in_f; in compute_interpolation_weights()
/external/tensorflow/tensorflow/core/kernels/
Dquantized_resize_bilinear_op_test.cc74 const float in_f = std::floor(in); in GetReferenceWeight() local
75 const int64 lower = std::max(static_cast<int64>(in_f), static_cast<int64>(0)); in GetReferenceWeight()
77 return std::make_tuple(lower * step, upper * step, in - in_f); in GetReferenceWeight()
Dquantized_resize_bilinear_op.cc62 const float in_f = std::floor(in); in ComputeInterpolationWeights() local
64 std::max(static_cast<int64>(in_f), static_cast<int64>(0)); in ComputeInterpolationWeights()
67 interpolation->lerp[i] = in - in_f; in ComputeInterpolationWeights()
69 static_cast<T_SCALE>((in - in_f) * (1 << resolution)); in ComputeInterpolationWeights()
/external/libchrome/third_party/ply/
Dyacc.py1851 in_f = open(filename,"rb")
1853 tabversion = pickle.load(in_f)
1856 self.lr_method = pickle.load(in_f)
1857 signature = pickle.load(in_f)
1858 self.lr_action = pickle.load(in_f)
1859 self.lr_goto = pickle.load(in_f)
1860 productions = pickle.load(in_f)
1866 in_f.close()
/external/autotest/client/bin/
Dutils.py1953 with open(_AMD_PCI_IDS_FILE_PATH, 'r') as in_f:
1954 pciid_to_amd_architecture = json.load(in_f)
1961 with open(_INTEL_PCI_IDS_FILE_PATH, 'r') as in_f:
1962 pciid_to_intel_architecture = json.load(in_f)
/external/selinux/python/sepolgen/src/sepolgen/
Dyacc.py2009 in_f = open(filename, 'rb')
2011 tabversion = pickle.load(in_f)
2014 self.lr_method = pickle.load(in_f)
2015 signature = pickle.load(in_f)
2016 self.lr_action = pickle.load(in_f)
2017 self.lr_goto = pickle.load(in_f)
2018 productions = pickle.load(in_f)
2024 in_f.close()
/external/python/pycparser/pycparser/ply/
Dyacc.py2007 in_f = open(filename, 'rb')
2009 tabversion = pickle.load(in_f)
2012 self.lr_method = pickle.load(in_f)
2013 signature = pickle.load(in_f)
2014 self.lr_action = pickle.load(in_f)
2015 self.lr_goto = pickle.load(in_f)
2016 productions = pickle.load(in_f)
2022 in_f.close()
/external/ply/ply/ply/
Dyacc.py2009 in_f = open(filename, 'rb')
2011 tabversion = pickle.load(in_f)
2014 self.lr_method = pickle.load(in_f)
2015 signature = pickle.load(in_f)
2016 self.lr_action = pickle.load(in_f)
2017 self.lr_goto = pickle.load(in_f)
2018 productions = pickle.load(in_f)
2024 in_f.close()