HomeSort by relevance Sort by last modified time
    Searched full:first_non_zero (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
fixed-dtoa.cc 299 int first_non_zero = 0; local
300 while (first_non_zero < *length && buffer[first_non_zero] == '0') {
301 first_non_zero++;
303 if (first_non_zero != 0) {
304 for (int i = first_non_zero; i < *length; ++i) {
305 buffer[i - first_non_zero] = buffer[i];
307 *length -= first_non_zero;
308 *decimal_point -= first_non_zero;
  /external/chromium_org/v8/src/
fixed-dtoa.cc 298 int first_non_zero = 0; local
299 while (first_non_zero < *length && buffer[first_non_zero] == '0') {
300 first_non_zero++;
302 if (first_non_zero != 0) {
303 for (int i = first_non_zero; i < *length; ++i) {
304 buffer[i - first_non_zero] = buffer[i];
306 *length -= first_non_zero;
307 *decimal_point -= first_non_zero;
  /external/v8/src/
fixed-dtoa.cc 298 int first_non_zero = 0; local
299 while (first_non_zero < *length && buffer[first_non_zero] == '0') {
300 first_non_zero++;
302 if (first_non_zero != 0) {
303 for (int i = first_non_zero; i < *length; ++i) {
304 buffer[i - first_non_zero] = buffer[i];
306 *length -= first_non_zero;
307 *decimal_point -= first_non_zero;
  /external/chromium_org/skia/ext/
convolver.cc 289 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 125 milliseconds