Lines Matching defs:integer
327 long long integer = 0;
383 integer = strtoll((const char*)number_c_string, (char**)&after_end, 10);
388 item->valueint = integer;
389 item->valuedouble = (double)integer;
501 CJSON_PUBLIC(long long) cJSON_SetInt64NumberValue(cJSON * const object, const long long integer)
505 return integer;
511 return integer;
514 object->valueint = integer;
515 object->valuedouble = (double)integer;
517 return integer;
541 /* don't ask me, but the original cJSON_SetNumberValue returns an integer or double */
716 long long integer = item->valueint;
730 /* use lld to print the long long integer */
731 length = sprintf((char*)number_buffer, "%lld", integer);
2376 CJSON_PUBLIC(cJSON*) cJSON_AddInt64NumberToObject(cJSON * const object, const char * const name, const long long integer)
2378 cJSON *int_item = cJSON_CreateInt64Number(integer);
2697 CJSON_PUBLIC(cJSON *) cJSON_CreateInt64Number(long long integer)
2703 item->valueint = integer;
2704 item->valuedouble = (double)integer;