Searched refs:first_non_zero (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
H A Dfixed-dtoa.cc297 int first_non_zero = 0; local
298 while (first_non_zero < *length && buffer[first_non_zero] == '0') {
299 first_non_zero++;
301 if (first_non_zero != 0) {
302 for (int i = first_non_zero; i < *length; ++i) {
303 buffer[i - first_non_zero] = buffer[i];
305 *length -= first_non_zero;
306 *decimal_point -= first_non_zero;
/external/chromium_org/v8/src/
H A Dfixed-dtoa.cc275 int first_non_zero = 0; local
276 while (first_non_zero < *length && buffer[first_non_zero] == '0') {
277 first_non_zero++;
279 if (first_non_zero != 0) {
280 for (int i = first_non_zero; i < *length; ++i) {
281 buffer[i - first_non_zero] = buffer[i];
283 *length -= first_non_zero;
284 *decimal_point -= first_non_zero;
/external/chromium_org/skia/ext/
H A Dconvolver.cc289 int first_non_zero = 0; local
290 while (first_non_zero < filter_length && filter_values[first_non_zero] == 0)
291 first_non_zero++;
293 if (first_non_zero < filter_length) {
299 filter_offset += first_non_zero;
300 filter_length = last_non_zero + 1 - first_non_zero;
303 for (int i = first_non_zero; i <= last_non_zero; i++)

Completed in 1152 milliseconds