Searched refs:num_to_pad (Results 1 – 1 of 1) sorted by relevance
1603 inline void PadFloatFeature(int num_to_pad, float* out) { in PadFloatFeature() argument1604 for (int i = 0; i < num_to_pad; i++) { in PadFloatFeature()1609 inline void PadInt64Feature(int num_to_pad, int64* out) { in PadInt64Feature() argument1610 for (int i = 0; i < num_to_pad; i++) { in PadInt64Feature()2295 int num_to_pad = expected_max_elements - num_elements; in FastParseSequenceExample() local2298 out_bytes += num_to_pad; in FastParseSequenceExample()2301 PadFloatFeature(num_to_pad, out_float); in FastParseSequenceExample()2302 out_float += num_to_pad; in FastParseSequenceExample()2305 PadInt64Feature(num_to_pad, out_int64); in FastParseSequenceExample()2306 out_int64 += num_to_pad; in FastParseSequenceExample()