Home
last modified time | relevance | path

Searched refs:buffer_length (Results 1 – 3 of 3) sorted by relevance

/petsc/src/mat/tests/
H A DcJSON.h145 CJSON_PUBLIC(cJSON *) cJSON_ParseWithLength(const char *value, size_t buffer_length);
149 CJSON_PUBLIC(cJSON *) cJSON_ParseWithLengthOpts(const char *value, size_t buffer_length, const char…
H A DcJSON.c867 size_t buffer_length; in cJSON_ParseWithOpts() local
872 buffer_length = strlen(value) + sizeof(""); in cJSON_ParseWithOpts()
874 return cJSON_ParseWithLengthOpts(value, buffer_length, return_parse_end, require_null_terminated); in cJSON_ParseWithOpts()
878 CJSON_PUBLIC(cJSON *) cJSON_ParseWithLengthOpts(const char *value, size_t buffer_length, const char… in cJSON_ParseWithLengthOpts() argument
889 if (value == NULL || 0 == buffer_length) goto fail; in cJSON_ParseWithLengthOpts()
892 buffer.length = buffer_length; in cJSON_ParseWithLengthOpts()
944 CJSON_PUBLIC(cJSON *) cJSON_ParseWithLength(const char *value, size_t buffer_length) in cJSON_ParseWithLength() argument
946 return cJSON_ParseWithLengthOpts(value, buffer_length, 0, 0); in cJSON_ParseWithLength()
/petsc/src/dm/dt/fe/impls/opencl/
H A Dfeopencl.c46 …CLGenerateIntegrationCode(PetscFE fem, char **string_buffer, PetscInt buffer_length, PetscBool use… in PetscFEOpenCLGenerateIntegrationCode() argument
51 char *end_of_buffer = *string_buffer + buffer_length; in PetscFEOpenCLGenerateIntegrationCode()