Searched defs:fdm (Results 1 - 3 of 3) sorted by relevance

/external/tensorflow/tensorflow/core/util/
H A Dtensor_format_test.cc175 auto& fdm = GetFilterDimMap(num_spatial_dims, format); local
179 EXPECT_EQ(GetFilterTensorOutputChannelsDimIndex(num_dims, format), fdm.o());
180 EXPECT_EQ(GetFilterDimIndex<num_spatial_dims>(format, 'O'), fdm.o());
181 EXPECT_EQ(GetFilterTensorInputChannelsDimIndex(num_dims, format), fdm.i());
182 EXPECT_EQ(GetFilterDimIndex<num_spatial_dims>(format, 'I'), fdm.i());
185 fdm.spatial(i));
187 fdm.spatial(i));
/external/icu/icu4c/source/i18n/
H A Dgregocal.cpp985 int32_t fdm = (dow - dom + 1) % 7; local
986 if (fdm < 0)
987 fdm += 7;
994 if ((7 - fdm) < getMinimalDaysInFirstWeek())
995 start = 8 - fdm; // Skip the first partial week
997 start = 1 - fdm; // This may be zero or negative
H A Dcalendar.cpp1907 int32_t fdm = (dow - internalGet(UCAL_DAY_OF_MONTH) + 1) % 7; local
1908 if (fdm < 0) fdm += 7;
1915 if ((7 - fdm) < getMinimalDaysInFirstWeek())
1916 start = 8 - fdm; // Skip the first partial week
1918 start = 1 - fdm; // This may be zero or negative

Completed in 187 milliseconds