Home
last modified time | relevance | path

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

/external/libmicrohttpd/src/examples/
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 …]
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 …]
/external/libvpx/libvpx/vp9/encoder/
Dvp9_pickmode.c961 RD_COST *rdc; member
1004 args->rdc->rate += this_rdc.rate; in estimate_block_intra()
1005 args->rdc->dist += this_rdc.dist; in estimate_block_intra()
1112 args.rdc = &this_rdc; in vp9_pick_intra_mode()
2138 args.rdc = &this_rdc; in vp9_pick_inter_mode()
Dvp9_encodeframe.c1457 RD_COUNTS *const rdc = &td->rd_counts; in update_state() local
1561 rdc->comp_pred_diff[SINGLE_REFERENCE] += ctx->single_pred_diff; in update_state()
1562 rdc->comp_pred_diff[COMPOUND_REFERENCE] += ctx->comp_pred_diff; in update_state()
1563 rdc->comp_pred_diff[REFERENCE_MODE_SELECT] += ctx->hybrid_pred_diff; in update_state()
1566 rdc->filter_diff[i] += ctx->best_filter_diff[i]; in update_state()
4646 RD_COUNTS *const rdc = &cpi->td.rd_counts; in vp9_encode_frame() local
4678 mode_thrs[i] = (mode_thrs[i] + rdc->comp_pred_diff[i] / cm->MBs) / 2; in vp9_encode_frame()
4681 filter_thrs[i] = (filter_thrs[i] + rdc->filter_diff[i] / cm->MBs) / 2; in vp9_encode_frame()