HomeSort by relevance Sort by last modified time
    Searched refs:aom_malloc (Results 1 - 25 of 30) sorted by null

1 2

  /external/libaom/libaom/aom_mem/
aom_mem.h 36 void *aom_malloc(size_t size);
aom_mem.c 63 void *aom_malloc(size_t size) { return aom_memalign(DEFAULT_ALIGNMENT, size); } function
67 void *const x = aom_malloc(total_size);
  /external/libaom/libaom/aom_dsp/
buf_ans.c 22 AOM_CHECK_MEM_ERROR(error, c->buf, aom_malloc(c->size * sizeof(*c->buf)));
38 aom_malloc(new_size * sizeof(*new_buf)));
noise_util.c 40 (struct aom_noise_tx_t *)aom_malloc(sizeof(struct aom_noise_tx_t));
161 mean_x = (double *)aom_malloc(sizeof(*mean_x) * w);
162 var_x = (double *)aom_malloc(sizeof(*var_x) * w);
163 mean_y = (double *)aom_malloc(sizeof(*mean_x) * h);
164 var_y = (double *)aom_malloc(sizeof(*var_y) * h);
noise_model.c 110 eqns->A = (double *)aom_malloc(sizeof(*eqns->A) * n * n);
111 eqns->b = (double *)aom_malloc(sizeof(*eqns->b) * n);
112 eqns->x = (double *)aom_malloc(sizeof(*eqns->x) * n);
128 double *b = (double *)aom_malloc(sizeof(*b) * n);
129 double *A = (double *)aom_malloc(sizeof(*A) * n * n);
217 lut->points = (double(*)[2])aom_malloc(num_points * sizeof(*lut->points));
289 double *A = (double *)aom_malloc(sizeof(*A) * n * n);
389 double *residual = aom_malloc(solver->num_bins * sizeof(*residual));
435 AtA_inv = (double *)aom_malloc(kLowPolyNumParams * kLowPolyNumParams *
437 A = (double *)aom_malloc(kLowPolyNumParams * n * sizeof(*A))
    [all...]
grain_synthesis.c 259 pred_pos_luma = (int **)aom_malloc(sizeof(*pred_pos_luma) * num_pos_luma);
262 pred_pos_luma[row] = (int *)aom_malloc(sizeof(**pred_pos_luma) * 3);
266 (int **)aom_malloc(sizeof(*pred_pos_chroma) * num_pos_chroma);
269 pred_pos_chroma[row] = (int *)aom_malloc(sizeof(**pred_pos_chroma) * 3);
309 *y_line_buf = (int *)aom_malloc(sizeof(**y_line_buf) * luma_stride * 2);
310 *cb_line_buf = (int *)aom_malloc(sizeof(**cb_line_buf) * chroma_stride *
312 *cr_line_buf = (int *)aom_malloc(sizeof(**cr_line_buf) * chroma_stride *
316 (int *)aom_malloc(sizeof(**y_col_buf) * (luma_subblock_size_y + 2) * 2);
318 (int *)aom_malloc(sizeof(**cb_col_buf) *
322 (int *)aom_malloc(sizeof(**cr_col_buf)
    [all...]
grain_table.c 186 aom_film_grain_table_entry_t *new_tail = aom_malloc(sizeof(*new_tail));
235 aom_malloc(sizeof(*new_entry));
280 aom_film_grain_table_entry_t *entry = aom_malloc(sizeof(*entry));
  /external/libaom/libaom/av1/encoder/
ransac.c 230 double *a = (double *)aom_malloc(sizeof(*a) * (np2 * 5 + 20));
269 double *a = (double *)aom_malloc(sizeof(*a) * (np2 * 7 + 42));
410 points1 = (double *)aom_malloc(sizeof(*points1) * npoints * 2);
411 points2 = (double *)aom_malloc(sizeof(*points2) * npoints * 2);
412 corners1 = (double *)aom_malloc(sizeof(*corners1) * npoints * 2);
413 corners2 = (double *)aom_malloc(sizeof(*corners2) * npoints * 2);
414 image1_coord = (double *)aom_malloc(sizeof(*image1_coord) * npoints * 2);
417 (RANSAC_MOTION *)aom_malloc(sizeof(RANSAC_MOTION) * num_desired_motions);
420 (int *)aom_malloc(sizeof(*motions->inlier_indices) * npoints);
424 (int *)aom_malloc(sizeof(*current_motion.inlier_indices) * npoints)
    [all...]
global_motion.c 583 ImagePyramid *pyr = aom_malloc(sizeof(*pyr));
589 pyr->level_buffer = aom_malloc(buffer_size);
596 pyr->level_dx_buffer = aom_malloc(gradient_size);
597 pyr->level_dy_buffer = aom_malloc(gradient_size);
731 aom_malloc(frm_pyr->strides[0] * frm_pyr->heights[0] * sizeof(*flow_u));
733 aom_malloc(frm_pyr->strides[0] * frm_pyr->heights[0] * sizeof(*flow_v));
832 aom_malloc(frm_pyr->strides[0] * frm_pyr->heights[0] * sizeof(*flow_u));
834 aom_malloc(frm_pyr->strides[0] * frm_pyr->heights[0] * sizeof(*flow_v));
    [all...]
ethread.c 146 aom_malloc(sizeof(*row_mt_sync->mutex_) * rows));
154 aom_malloc(sizeof(*row_mt_sync->cond_) * rows));
164 aom_malloc(sizeof(*row_mt_sync->cur_col) * rows));
382 aom_malloc(num_workers * sizeof(*cpi->workers)));
391 aom_malloc(sizeof(*(cpi->row_mt_mutex_))));
433 (InterModesInfo *)aom_malloc(
440 (uint32_t *)aom_malloc(
mathutils.h 71 scratch_ = (double *)aom_malloc(sizeof(*scratch) * n * (n + 1));
139 double *rv1 = (double *)aom_malloc(sizeof(*rv1) * (n + 1));
322 double **nrU = (double **)aom_malloc((M) * sizeof(*nrU));
323 double **nrV = (double **)aom_malloc((N) * sizeof(*nrV));
pickcdef.c 306 int *sb_index = aom_malloc(nvfb * nhfb * sizeof(*sb_index));
307 int *selected_strength = aom_malloc(nvfb * nhfb * sizeof(*sb_index));
327 mse[0] = aom_malloc(sizeof(**mse) * nvfb * nhfb);
328 mse[1] = aom_malloc(sizeof(**mse) * nvfb * nhfb);
hash_motion.c 129 (Vector **)aom_malloc(sizeof(p_hash_table->p_lookup_table[0]) * max_addr);
139 aom_malloc(sizeof(p_hash_table->p_lookup_table[0][0]));
aq_cyclicrefresh.c 73 cr->last_coded_q_map = aom_malloc(last_coded_q_map_size);
  /external/libaom/libaom/test/
pickrst_test.cc 47 src_ = (uint8_t *)(aom_malloc(MAX_DATA_BLOCK * MAX_DATA_BLOCK *
50 dgd_ = (uint8_t *)(aom_malloc(MAX_DATA_BLOCK * MAX_DATA_BLOCK *
53 flt0_ = (int32_t *)(aom_malloc(MAX_DATA_BLOCK * MAX_DATA_BLOCK *
56 flt1_ = (int32_t *)(aom_malloc(MAX_DATA_BLOCK * MAX_DATA_BLOCK *
213 (uint16_t *)aom_malloc(MAX_DATA_BLOCK * MAX_DATA_BLOCK * sizeof(*src_));
216 (uint16_t *)aom_malloc(MAX_DATA_BLOCK * MAX_DATA_BLOCK * sizeof(*dgd_));
219 (int32_t *)aom_malloc(MAX_DATA_BLOCK * MAX_DATA_BLOCK * sizeof(*flt0_));
222 (int32_t *)aom_malloc(MAX_DATA_BLOCK * MAX_DATA_BLOCK * sizeof(*flt1_));
av1_nn_predict_test.cc 40 weights_buf = (float *)aom_malloc(MAX_NODES2 * (NN_MAX_HIDDEN_LAYERS + 1) *
43 (float *)aom_malloc(NN_MAX_NODES_PER_LAYER *
horver_correlation_test.cc 35 data_buf_ = (int16_t *)aom_malloc(MAX_SB_SQUARE * sizeof(int16_t));
  /external/libaom/libaom/av1/common/
thread_common.c 64 aom_malloc(sizeof(*(lf_sync->mutex_[j])) * rows));
72 aom_malloc(sizeof(*(lf_sync->cond_[j])) * rows));
81 aom_malloc(sizeof(*(lf_sync->job_mutex))));
88 aom_malloc(num_workers * sizeof(*(lf_sync->lfdata))));
93 aom_malloc(sizeof(*(lf_sync->cur_sb_col[j])) * rows));
97 aom_malloc(sizeof(*(lf_sync->job_queue)) * rows * MAX_MB_PLANE * 2));
591 aom_malloc(sizeof(*(lr_sync->mutex_[j])) * num_rows_lr));
599 aom_malloc(sizeof(*(lr_sync->cond_[j])) * num_rows_lr));
608 aom_malloc(sizeof(*(lr_sync->job_mutex))));
615 aom_malloc(num_workers * sizeof(*(lr_sync->lrworkerdata))))
    [all...]
resize.c 648 uint8_t *intbuf = (uint8_t *)aom_malloc(sizeof(uint8_t) * width2 * height);
650 (uint8_t *)aom_malloc(sizeof(uint8_t) * AOMMAX(width, height));
651 uint8_t *arrbuf = (uint8_t *)aom_malloc(sizeof(uint8_t) * height);
652 uint8_t *arrbuf2 = (uint8_t *)aom_malloc(sizeof(uint8_t) * height2);
679 double *intbuf = (double *)aom_malloc(sizeof(double) * width2 * height);
680 double *arrbuf = (double *)aom_malloc(sizeof(double) * height);
681 double *arrbuf2 = (double *)aom_malloc(sizeof(double) * height2);
726 tmp_left = (uint8_t *)aom_malloc(sizeof(*tmp_left) * border_cols * height);
734 (uint8_t *)aom_malloc(sizeof(*tmp_right) * border_cols * height);
    [all...]
cdef.c 161 row_cdef = aom_malloc(sizeof(*row_cdef) * (nhfb + 2) * 2);
173 linebuf[pli] = aom_malloc(sizeof(*linebuf) * CDEF_VBORDER * stride);
175 aom_malloc(sizeof(*colbuf) *
alloccommon.c 120 CHECK_MEM_ERROR(cm, cm->rlbs, aom_malloc(sizeof(RestorationLineBuffers)));
  /external/libaom/libaom/av1/decoder/
inspection.c 19 fd->mi_grid = (insp_mi_data *)aom_malloc(sizeof(insp_mi_data) * fd->mi_rows *
decodeframe.c     [all...]
  /external/libaom/libaom/examples/
noise_model.c 330 uint8_t *flat_blocks = (uint8_t *)aom_malloc(num_blocks_w * num_blocks_h);
inspect.c 625 char *buffer = aom_malloc(MAX_BUFFER);

Completed in 2124 milliseconds

1 2