Home
last modified time | relevance | path

Searched refs:is_negative (Results 1 – 4 of 4) sorted by relevance

/device/google/bonito/json-c/
Djson_tokener.c357 int is_negative = 0; in json_tokener_parse_ex() local
365 is_negative = 1; in json_tokener_parse_ex()
374 current = json_object_new_double(is_negative ? -INFINITY : INFINITY); in json_tokener_parse_ex()
/device/google/crosshatch/json-c/
Djson_tokener.c357 int is_negative = 0; in json_tokener_parse_ex() local
365 is_negative = 1; in json_tokener_parse_ex()
374 current = json_object_new_double(is_negative ? -INFINITY : INFINITY); in json_tokener_parse_ex()
/device/generic/goldfish/gps/
Dgps_qemu.c157 bool is_negative = false; in str2int64() local
159 is_negative = true; in str2int64()
182 if (is_negative) { in str2int64()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Ddecimal.py6084 def _format_sign(is_negative, spec): argument
6087 if is_negative:
6094 def _format_number(is_negative, intpart, fracpart, exp, spec): argument
6112 sign = _format_sign(is_negative, spec)