Home
last modified time | relevance | path

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

/external/autotest/server/site_tests/graphics_MultipleDisplays/
Dgraphics_MultipleDisplays.py109 new_bounds = {'top': 0, 'left': 0, 'width': 0, 'height': 0}
117 new_bounds['width'] = int(display_info.work_area.width / 2)
118 new_bounds['height'] = display_info.work_area.height
125 new_bounds['left'] = display_info.bounds.left
127 new_bounds['left'] = new_bounds['left'] + new_bounds['width']
129 return new_bounds
176 new_bounds = self._calculate_new_bounds(window_config)
178 self._display_facade.update_window(new_id, 'normal', new_bounds)
/external/tensorflow/tensorflow/compiler/xla/tests/
Dreshape_test.cc876 std::vector<int64> new_bounds = {bounds[0], bounds[1], bounds[3], bounds[2]}; in XLA_TEST_P() local
888 /*new_sizes=*/new_bounds); in XLA_TEST_P()
891 LiteralUtil::ReshapeSlice(new_bounds, {2, 3, 1, 0}, input_literal) in XLA_TEST_P()
904 std::vector<int64> new_bounds = {bounds[0], bounds[1], bounds[3], bounds[2]}; in XLA_TEST_P() local
916 /*new_sizes=*/new_bounds); in XLA_TEST_P()
919 LiteralUtil::ReshapeSlice(new_bounds, {2, 3, 1, 0}, input_literal) in XLA_TEST_P()
932 std::vector<int64> new_bounds = {bounds[0], bounds[1], bounds[3], bounds[2]}; in XLA_TEST_P() local
944 /*new_sizes=*/new_bounds); in XLA_TEST_P()
947 LiteralUtil::ReshapeSlice(new_bounds, {2, 3, 1, 0}, input_literal) in XLA_TEST_P()
961 std::vector<int64> new_bounds = {bounds[0], bounds[1], bounds[3], bounds[2]}; in XLA_TEST_P() local
[all …]
/external/toybox/toys/pending/
Dvi.c652 size_t new_bounds = (1+end-from)/1024; in vi_yank() local
653 new_bounds += ((1+end-from)%1024) ? 1 : 0; in vi_yank()
654 new_bounds *= 1024; in vi_yank()
655 TT.yank.data = xrealloc(TT.yank.data, new_bounds); in vi_yank()
656 TT.yank.alloc = new_bounds; in vi_yank()