Searched refs:prebuffer (Results 1 – 6 of 6) sorted by relevance
/third_party/vulkan-loader/loader/ |
D | cJSON.h | 79 char *cJSON_PrintBuffered(cJSON *item, int prebuffer, int fmt);
|
D | cJSON.c | 482 char *cJSON_PrintBuffered(cJSON *item, int prebuffer, int fmt) { in cJSON_PrintBuffered() argument 484 p.buffer = (char *)cJSON_malloc(item->pAllocator, prebuffer); in cJSON_PrintBuffered() 485 p.length = prebuffer; in cJSON_PrintBuffered()
|
/third_party/cJSON/ |
D | cJSON.h | 160 CJSON_PUBLIC(char *) cJSON_PrintBuffered(const cJSON *item, int prebuffer, cJSON_bool fmt);
|
D | cJSON.c | 1267 CJSON_PUBLIC(char *) cJSON_PrintBuffered(const cJSON *item, int prebuffer, cJSON_bool fmt) in cJSON_PrintBuffered() argument 1271 if (prebuffer < 0) in cJSON_PrintBuffered() 1276 p.buffer = (unsigned char*)global_hooks.allocate((size_t)prebuffer); in cJSON_PrintBuffered() 1282 p.length = (size_t)prebuffer; in cJSON_PrintBuffered()
|
D | README.md | 320 …(const cJSON *item, int prebuffer, cJSON_bool fmt)`. `fmt` is a boolean to turn formatting with wh…
|
/third_party/ffmpeg/libavformat/ |
D | matroskadec.c | 4199 double pre_sec, prebuffer, bits_per_second; in webm_dash_manifest_compute_bandwidth() local 4232 prebuffer = prebuffer_ns / nano_seconds_per_second; in webm_dash_manifest_compute_bandwidth() 4250 if (prebuffer < desc_sec) { in webm_dash_manifest_compute_bandwidth() 4258 double buffer = prebuffer; in webm_dash_manifest_compute_bandwidth()
|