Home
last modified time | relevance | path

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

/external/libmicrohttpd/src/examples/
Ddemo.c254 list_directory (struct ResponseDataContext *rdc, in list_directory() argument
277 if (rdc->off + 1024 > rdc->buf_len) in list_directory()
281 if ( (2 * rdc->buf_len + 1024) < rdc->buf_len) in list_directory()
283 rdc->buf_len = 2 * rdc->buf_len + 1024; in list_directory()
284 if (NULL == (r = realloc (rdc->buf, rdc->buf_len))) in list_directory()
286 rdc->buf = r; in list_directory()
288 rdc->off += snprintf (&rdc->buf[rdc->off], in list_directory()
289 rdc->buf_len - rdc->off, in list_directory()
307 struct ResponseDataContext rdc; in update_directory() local
315 rdc.buf_len = initial_allocation; in update_directory()
[all …]
Ddemo_https.c255 list_directory (struct ResponseDataContext *rdc, in list_directory() argument
278 if (rdc->off + 1024 > rdc->buf_len) in list_directory()
282 if ( (2 * rdc->buf_len + 1024) < rdc->buf_len) in list_directory()
284 rdc->buf_len = 2 * rdc->buf_len + 1024; in list_directory()
285 if (NULL == (r = realloc (rdc->buf, rdc->buf_len))) in list_directory()
287 rdc->buf = r; in list_directory()
289 rdc->off += snprintf (&rdc->buf[rdc->off], in list_directory()
290 rdc->buf_len - rdc->off, in list_directory()
308 struct ResponseDataContext rdc; in update_directory() local
316 rdc.buf_len = initial_allocation; in update_directory()
[all …]
/external/libvpx/libvpx/vp9/encoder/
Dvp9_encodeframe.c972 RD_COUNTS *const rdc = &td->rd_counts; in update_state() local
1086 rdc->comp_pred_diff[SINGLE_REFERENCE] += ctx->single_pred_diff; in update_state()
1087 rdc->comp_pred_diff[COMPOUND_REFERENCE] += ctx->comp_pred_diff; in update_state()
1088 rdc->comp_pred_diff[REFERENCE_MODE_SELECT] += ctx->hybrid_pred_diff; in update_state()
1091 rdc->filter_diff[i] += ctx->best_filter_diff[i]; in update_state()
3881 RD_COUNTS *const rdc = &cpi->td.rd_counts; in encode_frame_internal() local
3887 vp9_zero(rdc->coef_counts); in encode_frame_internal()
3888 vp9_zero(rdc->comp_pred_diff); in encode_frame_internal()
3889 vp9_zero(rdc->filter_diff); in encode_frame_internal()
4029 RD_COUNTS *const rdc = &cpi->td.rd_counts; in vp9_encode_frame() local
[all …]