Lines Matching defs:count
2856 CJSON_PUBLIC(cJSON *) cJSON_CreateIntArray(const int *numbers, int count)
2863 if ((count < 0) || (numbers == NULL))
2870 for(i = 0; a && (i < (size_t)count); i++)
2896 CJSON_PUBLIC(cJSON *) cJSON_CreateFloatArray(const float *numbers, int count)
2903 if ((count < 0) || (numbers == NULL))
2910 for(i = 0; a && (i < (size_t)count); i++)
2936 CJSON_PUBLIC(cJSON *) cJSON_CreateDoubleArray(const double *numbers, int count)
2943 if ((count < 0) || (numbers == NULL))
2950 for(i = 0; a && (i < (size_t)count); i++)
2976 CJSON_PUBLIC(cJSON *) cJSON_CreateStringArray(const char *const *strings, int count)
2983 if ((count < 0) || (strings == NULL))
2990 for (i = 0; a && (i < (size_t)count); i++)