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

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/stringlib/
formatter.h 407 If a decimal point is present, set *has_decimal and increment
414 Py_ssize_t *n_remainder, int *has_decimal)
424 *has_decimal = ptr<end && *remainder == '.';
427 if (*has_decimal)
441 int has_decimal, const LocaleInfo *locale,
447 spec->n_digits = n_number - n_remainder - (has_decimal?1:0);
450 spec->n_decimal = has_decimal ? strlen(locale->decimal_point) : 0;
929 int has_decimal; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/stringlib/
formatter.h 407 If a decimal point is present, set *has_decimal and increment
414 Py_ssize_t *n_remainder, int *has_decimal)
424 *has_decimal = ptr<end && *remainder == '.';
427 if (*has_decimal)
441 int has_decimal, const LocaleInfo *locale,
447 spec->n_digits = n_number - n_remainder - (has_decimal?1:0);
450 spec->n_decimal = has_decimal ? strlen(locale->decimal_point) : 0;
931 int has_decimal; local
    [all...]
  /external/python/cpython2/Objects/stringlib/
formatter.h 407 If a decimal point is present, set *has_decimal and increment
414 Py_ssize_t *n_remainder, int *has_decimal)
424 *has_decimal = ptr<end && *remainder == '.';
427 if (*has_decimal)
441 int has_decimal, const LocaleInfo *locale,
447 spec->n_digits = n_number - n_remainder - (has_decimal?1:0);
450 spec->n_decimal = has_decimal ? strlen(locale->decimal_point) : 0;
937 int has_decimal; local
    [all...]
  /external/python/cpython3/Python/
formatter_unicode.c 434 If a decimal point is present, set *has_decimal and increment
441 Py_ssize_t *n_remainder, int *has_decimal)
452 *has_decimal = pos<end && PyUnicode_READ(kind, data, remainder) == '.';
455 if (*has_decimal)
470 int has_decimal, const LocaleInfo *locale,
476 spec->n_digits = n_end - n_start - n_remainder - (has_decimal?1:0);
479 spec->n_decimal = has_decimal ? PyUnicode_GET_LENGTH(locale->decimal_point) : 0;
1022 int has_decimal; local
    [all...]

Completed in 206 milliseconds