Home
last modified time | relevance | path

Searched refs:neighbors (Results 1 – 24 of 24) sorted by relevance

/external/libvpx/libvpx/vp8/decoder/
Derror_concealment.c360 static void find_neighboring_blocks(MODE_INFO *mi, EC_BLOCK *neighbors, in find_neighboring_blocks() argument
367 if (mb_col > 0) assign_neighbor(&neighbors[i], mi - mi_stride - 1, 15); in find_neighboring_blocks()
371 assign_neighbor(&neighbors[i], mi - mi_stride, j); in find_neighboring_blocks()
376 if (mb_row > 0) assign_neighbor(&neighbors[i], mi - mi_stride + 1, 12); in find_neighboring_blocks()
379 for (j = 0; j <= 12; j += 4, ++i) assign_neighbor(&neighbors[i], mi + 1, j); in find_neighboring_blocks()
385 assign_neighbor(&neighbors[i], mi + mi_stride + 1, 0); in find_neighboring_blocks()
389 assign_neighbor(&neighbors[i], mi + mi_stride, j); in find_neighboring_blocks()
395 assign_neighbor(&neighbors[i], mi + mi_stride - 1, 4); in find_neighboring_blocks()
399 assign_neighbor(&neighbors[i], mi - 1, j); in find_neighboring_blocks()
409 static void interpolate_mvs(MACROBLOCKD *mb, EC_BLOCK *neighbors, in interpolate_mvs() argument
[all …]
/external/bcc/tools/
Ddeadlock_detector.py73 def neighbors(self, node): member in DiGraph
78 for node, neighbors in self.adjacency_map.items():
79 for neighbor in neighbors:
99 for _, neighbors in self.adjacency_map.items():
100 neighbors.discard(node)
105 for neighbor in self.neighbors(node):
130 for node, neighbors in self.adjacency_map.items():
131 for neighbor in neighbors:
165 v_nbrs = G.neighbors(v)
234 stack = [(startnode, list(subG.neighbors(startnode)))]
[all …]
/external/libvpx/libvpx/vp9/common/
Dvp9_scan.h29 const int16_t *neighbors; member
35 static INLINE int get_coef_context(const int16_t *neighbors, in get_coef_context() argument
37 return (1 + token_cache[neighbors[MAX_NEIGHBORS * c + 0]] + in get_coef_context()
38 token_cache[neighbors[MAX_NEIGHBORS * c + 1]]) >> in get_coef_context()
/external/libaom/libaom/av1/encoder/x86/
Dtemporal_filter_sse4.c634 const int16_t *const *neighbors, int top_weight, int bottom_weight, in av1_apply_temporal_filter_chroma_8() argument
652 mul = _mm_loadu_si128((const __m128i *)neighbors[0]); in av1_apply_temporal_filter_chroma_8()
697 mul = _mm_loadu_si128((const __m128i *)neighbors[1]); in av1_apply_temporal_filter_chroma_8()
759 mul = _mm_loadu_si128((const __m128i *)neighbors[0]); in av1_apply_temporal_filter_chroma_8()
808 const int16_t *const *neighbors; in av1_apply_temporal_filter_chroma() local
817 neighbors = CHROMA_DOUBLE_SS_SINGLE_COLUMN_NEIGHBORS; in av1_apply_temporal_filter_chroma()
819 neighbors = CHROMA_SINGLE_SS_SINGLE_COLUMN_NEIGHBORS; in av1_apply_temporal_filter_chroma()
829 y_dist + blk_col, u_dist + uv_blk_col, v_dist + uv_blk_col, neighbors, in av1_apply_temporal_filter_chroma()
838 y_dist + blk_col, u_dist + uv_blk_col, v_dist + uv_blk_col, neighbors, in av1_apply_temporal_filter_chroma()
847 neighbors = CHROMA_DOUBLE_SS_LEFT_COLUMN_NEIGHBORS; in av1_apply_temporal_filter_chroma()
[all …]
/external/mesa3d/src/gallium/auxiliary/gallivm/
Dlp_bld_sample_aos.c851 LLVMValueRef neighbors[2][2][2]; /* [z][y][x] */ in lp_build_sample_fetch_image_linear() local
956 neighbors[k][j][i] = rgba8; in lp_build_sample_fetch_image_linear()
968 neighbors[0][0][0], in lp_build_sample_fetch_image_linear()
969 neighbors[0][0][1], in lp_build_sample_fetch_image_linear()
976 neighbors[0][0][0], in lp_build_sample_fetch_image_linear()
977 neighbors[0][0][1], in lp_build_sample_fetch_image_linear()
985 neighbors[0][0][0], in lp_build_sample_fetch_image_linear()
986 neighbors[0][0][1], in lp_build_sample_fetch_image_linear()
992 neighbors[0][0][0], in lp_build_sample_fetch_image_linear()
993 neighbors[0][0][1], in lp_build_sample_fetch_image_linear()
[all …]
Dlp_bld_sample_soa.c1030 LLVMValueRef neighbors[2][2][4]; in lp_build_sample_image_linear() local
1327 data_ptr, mipoffsets, neighbors[0][0]); in lp_build_sample_image_linear()
1332 data_ptr, mipoffsets, neighbors[0][1]); in lp_build_sample_image_linear()
1340 neighbors[0][0][chan], in lp_build_sample_image_linear()
1341 neighbors[0][1][chan], in lp_build_sample_image_linear()
1347 cmpval0 = lp_build_sample_comparefunc(bld, coords[4], neighbors[0][0][0]); in lp_build_sample_image_linear()
1348 cmpval1 = lp_build_sample_comparefunc(bld, coords[4], neighbors[0][1][0]); in lp_build_sample_image_linear()
1365 data_ptr, mipoffsets, neighbors[1][0]); in lp_build_sample_image_linear()
1370 data_ptr, mipoffsets, neighbors[1][1]); in lp_build_sample_image_linear()
1446 neighbors[0][0][chan]); in lp_build_sample_image_linear()
[all …]
/external/libvpx/libvpx/vp8/encoder/
Dmcomp.c844 MV neighbors[4] = { { 0, -1 }, { -1, 0 }, { 1, 0 }, { 0, 1 } }; in vp8_hex_search() local
984 this_mv.as_mv.row = br + neighbors[i].row; in vp8_hex_search()
985 this_mv.as_mv.col = bc + neighbors[i].col; in vp8_hex_search()
993 this_mv.as_mv.row = br + neighbors[i].row; in vp8_hex_search()
994 this_mv.as_mv.col = bc + neighbors[i].col; in vp8_hex_search()
1006 br += neighbors[best_site].row; in vp8_hex_search()
1007 bc += neighbors[best_site].col; in vp8_hex_search()
1642 MV neighbors[4] = { { -1, 0 }, { 0, -1 }, { 0, 1 }, { 1, 0 } }; in vp8_refining_search_sad_c() local
1674 this_row_offset = ref_mv->as_mv.row + neighbors[j].row; in vp8_refining_search_sad_c()
1675 this_col_offset = ref_mv->as_mv.col + neighbors[j].col; in vp8_refining_search_sad_c()
[all …]
/external/libvpx/libvpx/vp9/encoder/
Dvp9_mcomp.c974 static const MV neighbors[4] = { { 0, -1 }, { 1, 0 }, { 0, 1 }, { -1, 0 } }; in calc_int_cost_list() local
992 const MV this_mv = { br + neighbors[i].row, bc + neighbors[i].col }; in calc_int_cost_list()
1001 const MV this_mv = { br + neighbors[i].row, bc + neighbors[i].col }; in calc_int_cost_list()
1428 static const MV neighbors[4] = { { 0, -1 }, { 1, 0 }, { 0, 1 }, { -1, 0 } }; in vp9_pattern_search_sad() local
1433 const MV this_mv = { br + neighbors[i].row, bc + neighbors[i].col }; in vp9_pattern_search_sad()
1440 const MV this_mv = { br + neighbors[i].row, bc + neighbors[i].col }; in vp9_pattern_search_sad()
1452 const MV this_mv = { br + neighbors[i].row, bc + neighbors[i].col }; in vp9_pattern_search_sad()
2464 const MV neighbors[4] = { { -1, 0 }, { 0, -1 }, { 0, 1 }, { 1, 0 } }; in vp9_refining_search_sad_new() local
2493 const MV mv = { best_full_mv->row + neighbors[j].row, in vp9_refining_search_sad_new()
2494 best_full_mv->col + neighbors[j].col }; in vp9_refining_search_sad_new()
[all …]
Dvp9_tokenize.c383 nb = so->neighbors; in tokenize_b()
Dvp9_rdopt.c656 args->so->neighbors, args->use_fast_coef_costing); in rate_block()
1017 so->neighbors, cpi->sf.use_fast_coef_costing); in rd_pick_intra4x4block()
1035 so->neighbors, cpi->sf.use_fast_coef_costing); in rd_pick_intra4x4block()
1117 so->neighbors, cpi->sf.use_fast_coef_costing); in rd_pick_intra4x4block()
1132 so->neighbors, cpi->sf.use_fast_coef_costing); in rd_pick_intra4x4block()
1583 so->neighbors, cpi->sf.use_fast_coef_costing); in encode_inter_mb_segment()
Dvp9_encodemb.c79 const int16_t *const nb = so->neighbors; in vp9_optimize_b()
/external/libaom/libaom/av1/encoder/
Dmcomp.c920 const MV neighbors[8] = { { 0, -1 }, { 1, 0 }, { 0, 1 }, { -1, 0 }, in av1_refine_warped_mv() local
950 *tr = br + neighbors[idx].row; in av1_refine_warped_mv()
951 *tc = bc + neighbors[idx].col; in av1_refine_warped_mv()
981 br += neighbors[best_idx].row; in av1_refine_warped_mv()
982 bc += neighbors[best_idx].col; in av1_refine_warped_mv()
1027 static const MV neighbors[4] = { { 0, -1 }, { 1, 0 }, { 0, 1 }, { -1, 0 } }; in calc_int_cost_list() local
1043 const MV neighbor_mv = { br + neighbors[i].row, bc + neighbors[i].col }; in calc_int_cost_list()
1052 const MV neighbor_mv = { br + neighbors[i].row, bc + neighbors[i].col }; in calc_int_cost_list()
1071 static const MV neighbors[4] = { { 0, -1 }, { 1, 0 }, { 0, 1 }, { -1, 0 } }; in calc_int_sad_list() local
1083 const MV this_mv = { br + neighbors[i].row, bc + neighbors[i].col }; in calc_int_sad_list()
[all …]
/external/libvpx/libvpx/vp9/decoder/
Dvp9_detokenize.c252 dequant, ctx, sc->scan, sc->neighbors, r); in vp9_decode_block_tokens()
260 dequant, ctx, sc->scan, sc->neighbors, r); in vp9_decode_block_tokens()
269 dequant, ctx, sc->scan, sc->neighbors, r); in vp9_decode_block_tokens()
281 dequant, ctx, sc->scan, sc->neighbors, r); in vp9_decode_block_tokens()
/external/tensorflow/tensorflow/python/grappler/
Dhierarchical_controller.py493 neighbors = adj_dict[int(idx)]
494 min_dim = min(self.hparams.adj_embed_dim, len(neighbors))
496 neighbors = neighbors[:min_dim] + [0] * padding_size
497 op_adj[int(idx)] = neighbors
/external/libaom/libaom/av1/common/
Dentropymode.h66 const int16_t *neighbors; member
/external/mesa3d/src/gallium/docs/source/drivers/freedreno/
Dir3-notes.rst404 …is a conflict (ie. one instruction cannot have two unique left or right neighbors), an additional …
/external/tensorflow/tensorflow/lite/g3doc/guide/
Dops_compatibility.md796 using nearest neighbors interpolation.
/external/cldr/tools/java/org/unicode/cldr/util/data/
Dafrica1063 # with Namibia's neighbors.
/external/tensorflow/tensorflow/examples/udacity/
D5_word2vec.ipynb415 "# We pick a random validation set to sample nearest neighbors. here we limit the\n",
532 " top_k = 8 # number of nearest neighbors\n",
/external/freetype/
DChangeLog.235710 (af_glyph_hints_align_weak_points): Skip any touched neighbors.
/external/jline/src/src/test/resources/jline/example/
Denglish.gz
/external/brotli/tests/testdata/
Dlcet10.txt3743 characteristics. The neighbors of a pixel determine where the threshold
/external/cldr/tools/java/org/unicode/cldr/util/data/transforms/
Dinternal_raw_IPA.txt113761 neighbors %41882 nˈebərz
113762 neighbors' nˈebərz
Dinternal_raw_IPA-old.txt135319 neighbors %33992 nˈebərz
135320 neighbors' nˈebərz