Home
last modified time | relevance | path

Searched refs:grid (Results 101 - 125 of 128) sorted by relevance

123456

/third_party/astc-encoder/Test/
H A Dastc_test_result_plot.py230 ax.grid(ls=':')
/third_party/mesa3d/src/gallium/include/pipe/
H A Dp_state.h941 * clEnqueueNDRangeKernel. Note block[] and grid[] must be padded with
952 * last_block allows disabling threads at the farthermost grid boundary.
956 * If a block touches the grid boundary in the i-th axis, threads with
965 * if (block_id[i] == grid[i] - 1 &&
973 * Determine the layout of the grid (in block units) to be used.
975 uint grid[3]; member
/third_party/mesa3d/src/gallium/auxiliary/driver_trace/
H A Dtr_dump_state.c1089 trace_dump_member_begin("grid"); in trace_dump_grid_info()
1090 trace_dump_array(uint, state->grid, ARRAY_SIZE(state->grid)); in trace_dump_grid_info()
/foundation/barrierfree/accessibility/interfaces/innerkits/common/include/
H A Daccessibility_element_info.h123 * @brief Define the list/grid component
147 * @brief Set the grid object
157 * @brief Copy grid object.
158 * @param other The copied grid
181 * @brief Get the mode of grid
226 * @brief Set grid object
272 * @brief Checks if the grid item is a heading.
280 * @brief Checks if the grid item is a selected.
1252 * @param grid the object of GridInfo
1256 void SetGrid(const GridInfo &grid);
[all...]
/third_party/python/Lib/idlelib/idle_test/
H A Dtest_codecontext.py65 text.grid(row=1, column=1, sticky=NSEW)
H A Dtest_sidebar.py52 cls.text.grid(row=1, column=1, sticky=tk.NSEW)
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/
H A DarkComponent.js5901 getUINativeModule().grid.setGridScroller(node, undefined);
5904 getUINativeModule().grid.setGridScroller(node, this.value);
5919 getUINativeModule().grid.setGridLayoutOptions(node, undefined, undefined, undefined, undefined, undefined);
5922 getUINativeModule().grid.setGridLayoutOptions(node, isArray(this.value.regularSize) ? this.value.regularSize : undefined,
5948 getUINativeModule().grid.resetColumnsTemplate(node);
5951 getUINativeModule().grid.setColumnsTemplate(node, this.value);
5962 getUINativeModule().grid.resetRowsTemplate(node);
5965 getUINativeModule().grid.setRowsTemplate(node, this.value);
5976 getUINativeModule().grid.resetColumnsGap(node);
5979 getUINativeModule().grid
[all...]
/third_party/mesa3d/src/gallium/auxiliary/util/
H A Du_dump_state.c988 util_dump_member_begin(stream, "grid"); in util_dump_grid_info()
989 util_dump_array(stream, uint, state->grid, ARRAY_SIZE(state->grid)); in util_dump_grid_info()
/third_party/ffmpeg/libavfilter/
H A Dvf_datascope.c764 int grid; member
809 { "g", "draw trace grid", OOFFSET(grid), AV_OPT_TYPE_BOOL, {.i64=1}, 0, 1, FLAGSR },
1062 if (s->grid && outlink->h >= 10) { in oscilloscope_filter_frame()
/third_party/mesa3d/src/gallium/drivers/v3d/
H A Dv3dx_draw.c1391 v3d->compute_num_workgroups[0] = info->grid[0]; in v3d_launch_grid()
1392 v3d->compute_num_workgroups[1] = info->grid[1]; in v3d_launch_grid()
1393 v3d->compute_num_workgroups[2] = info->grid[2]; in v3d_launch_grid()
/third_party/mesa3d/src/gallium/drivers/virgl/
H A Dvirgl_encode.c1441 virgl_encoder_write_dword(ctx->cbuf, grid_info->grid[0]); in virgl_encode_launch_grid()
1442 virgl_encoder_write_dword(ctx->cbuf, grid_info->grid[1]); in virgl_encode_launch_grid()
1443 virgl_encoder_write_dword(ctx->cbuf, grid_info->grid[2]); in virgl_encode_launch_grid()
/third_party/mesa3d/src/mesa/state_tracker/
H A Dst_pbo_compute.c662 /* pass the grid offset as the coord to get the zero-indexed buffer offset */ in create_conversion_shader()
978 info.grid[0] = DIV_ROUND_UP(width, info.block[0]); in download_texture_compute()
979 info.grid[1] = DIV_ROUND_UP(height, info.block[1]); in download_texture_compute()
980 info.grid[2] = depth; in download_texture_compute()
/third_party/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_state_cs.c1367 grid_size[0] = info->grid[0]; in fill_grid_size()
1368 grid_size[1] = info->grid[1]; in fill_grid_size()
1369 grid_size[2] = info->grid[2]; in fill_grid_size()
/third_party/mesa3d/src/gallium/drivers/zink/
H A Dzink_draw.cpp1001 VKCTX(CmdDispatch)(batch->state->cmdbuf, info->grid[0], info->grid[1], info->grid[2]); in zink_launch_grid()
/third_party/mesa3d/src/gallium/drivers/nouveau/nvc0/
H A Dnvc0_query_hw_sm.c2547 const uint grid[3] = { screen->mp_count, screen->gpc_count, 1 }; in nvc0_hw_sm_end_query() local
2587 info.grid[i] = grid[i]; in nvc0_hw_sm_end_query()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/
H A DvktPipelineMultisampleSampleLocationsExtTests.cpp276 log << tcu::TestLog::Section("pixelGrid", "Multisample pixel grid configuration:") in logPixelGrid()
278 << tcu::TestLog::Message << "Specified grid size = " << pixelGrid.size() << tcu::TestLog::EndMessage; in logPixelGrid()
332 void fillSampleLocationsPacked (MultisamplePixelGrid& grid, const deUint32 subPixelBits) in fillSampleLocationsPacked() argument
338 for (deUint32 gridY = 0; gridY < grid.size().y(); ++gridY) in fillSampleLocationsPacked()
339 for (deUint32 gridX = 0; gridX < grid.size().x(); ++gridX) in fillSampleLocationsPacked()
347 for (deUint32 sampleNdx = 0; sampleNdx < numSamplesPerPixel(grid); /* no increment */) in fillSampleLocationsPacked()
357 grid.setSample(gridX, gridY, sampleNdx, location); in fillSampleLocationsPacked()
1295 log << tcu::TestLog::Message << "FAIL: Expected (0, 0) grid size" << tcu::TestLog::EndMessage; in testQueryMultisampleProperties()
1490 // Generate grid size combinations in TestBase()
1502 // Will be executed several times, for all possible pixel grid size in iterate()
[all...]
/third_party/python/Lib/
H A Dturtle.py353 self._canvas.grid(padx=1, in_ = self, pady=1, row=0,
355 self.vscroll.grid(padx=1, in_ = self, pady=1, row=0,
357 self.hscroll.grid(padx=1, in_ = self, pady=1, row=1,
388 self.hscroll.grid(padx=1, in_ = self, pady=1, row=1,
390 self.vscroll.grid(padx=1, in_ = self, pady=1, row=0,
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/pipeline/
H A DvktPipelineMultisampleSampleLocationsExtTests.cpp275 log << tcu::TestLog::Section("pixelGrid", "Multisample pixel grid configuration:") in logPixelGrid()
277 << tcu::TestLog::Message << "Specified grid size = " << pixelGrid.size() << tcu::TestLog::EndMessage; in logPixelGrid()
331 void fillSampleLocationsPacked (MultisamplePixelGrid& grid, const deUint32 subPixelBits) in fillSampleLocationsPacked() argument
337 for (deUint32 gridY = 0; gridY < grid.size().y(); ++gridY) in fillSampleLocationsPacked()
338 for (deUint32 gridX = 0; gridX < grid.size().x(); ++gridX) in fillSampleLocationsPacked()
346 for (deUint32 sampleNdx = 0; sampleNdx < numSamplesPerPixel(grid); /* no increment */) in fillSampleLocationsPacked()
356 grid.setSample(gridX, gridY, sampleNdx, location); in fillSampleLocationsPacked()
1275 log << tcu::TestLog::Message << "FAIL: Expected (0, 0) grid size" << tcu::TestLog::EndMessage; in testQueryMultisampleProperties()
1470 // Generate grid size combinations in TestBase()
1482 // Will be executed several times, for all possible pixel grid size in iterate()
[all...]
/third_party/mesa3d/src/gallium/drivers/crocus/
H A Dcrocus_state.c8048 const struct pipe_grid_info *grid)
8059 brw_cs_get_dispatch_info(devinfo, cs_prog_data, grid->block);
8191 if (grid->indirect) {
8253 ggw.IndirectParameterEnable = grid->indirect != NULL;
8254 ggw.PredicateEnable = GFX_VER <= 7 && grid->indirect != NULL;
8259 ggw.ThreadGroupIDXDimension = grid->grid[0];
8260 ggw.ThreadGroupIDYDimension = grid->grid[1];
8261 ggw.ThreadGroupIDZDimension = grid
8046 crocus_upload_compute_state(struct crocus_context *ice, struct crocus_batch *batch, const struct pipe_grid_info *grid) global() argument
[all...]
/third_party/mesa3d/src/gallium/frontends/clover/core/
H A Dkernel.cpp100 copy(pad_vector(q, reduced_grid_size, 1), info.grid); in launch()
/third_party/python/Lib/idlelib/
H A Deditor.py225 vbar.grid(row=1, column=2, sticky=NSEW)
228 text.grid(row=1, column=1, sticky=NSEW)
/foundation/barrierfree/accessibility/interfaces/kits/napi/accessibility_extension_module_loader/src/
H A Dnapi_accessibility_element.cpp1235 napi_value grid = nullptr; in GetElementInfoAllAttribute3() local
1236 GetElementInfoGridItem(callbackInfo, grid); in GetElementInfoAllAttribute3()
1237 NAPI_CALL_RETURN_VOID(env, napi_set_named_property(env, value, "grid", grid)); in GetElementInfoAllAttribute3()
/third_party/mesa3d/src/gallium/frontends/lavapipe/
H A Dlvp_execute.c2788 state->dispatch_info.grid[0] = cmd->u.dispatch.group_count_x; in handle_dispatch()
2789 state->dispatch_info.grid[1] = cmd->u.dispatch.group_count_y; in handle_dispatch()
2790 state->dispatch_info.grid[2] = cmd->u.dispatch.group_count_z; in handle_dispatch()
2801 state->dispatch_info.grid[0] = cmd->u.dispatch_base.group_count_x; in handle_dispatch_base()
2802 state->dispatch_info.grid[1] = cmd->u.dispatch_base.group_count_y; in handle_dispatch_base()
2803 state->dispatch_info.grid[2] = cmd->u.dispatch_base.group_count_z; in handle_dispatch_base()
/third_party/mesa3d/src/gallium/tests/trivial/
H A Dcompute.c435 info.grid[i] = grid_layout[i]; in launch_grid()
/third_party/python/Lib/tkinter/
H A D__init__.py14 or Grid. These managers can be called with methods place, pack, grid
1768 """The anchor value controls how to place the grid within the
1772 self.tk.call('grid', 'anchor', self._w, anchor)
1778 box of this widget controlled by the geometry manager grid.
1788 args = ('grid', 'bbox', self._w)
1824 self.tk.call('grid', command, self._w, index),
1827 ('grid', command, self._w, index)
1833 """Configure column INDEX of a grid.
1848 'grid', 'location', self._w, x, y)) or None
1859 'grid', 'propagat
2115 grid = wm_grid global() variable in Wm
[all...]

Completed in 116 milliseconds

123456