Home
last modified time | relevance | path

Searched refs:bop (Results 1 - 12 of 12) sorted by relevance

/third_party/mesa3d/src/gallium/drivers/r600/sb/
H A Dsb_peephole.cpp143 bool_op_info bop = {}; in optimize_cc_op2() local
151 if (!get_bool_op_info(s, bop)) in optimize_cc_op2()
155 bop.invert = !bop.invert; in optimize_cc_op2()
159 cc = bop.n->bc.op_ptr->flags & AF_CC_MASK; in optimize_cc_op2()
161 if (bop.invert) in optimize_cc_op2()
164 if (bop.int_cvt) { in optimize_cc_op2()
171 dump::dump_op(bop.n); in optimize_cc_op2()
172 sblog << " invert: " << bop.invert << " int_cvt: " << bop in optimize_cc_op2()
225 bool_op_info bop = {}; optimize_CNDcc_op() local
341 get_bool_op_info(value* b, bool_op_info& bop) get_bool_op_info() argument
[all...]
H A Dsb_pass.h428 bool get_bool_op_info(value *b, bool_op_info& bop);
/third_party/NuttX/fs/driver/
H A Dfs_closeblockdriver.c57 struct block_operations *bop = NULL; in close_blockdriver() local
67 bop = (struct block_operations*)(((struct drv_data*)vnode_ptr->data)->ops); in close_blockdriver()
69 if (bop == NULL) { in close_blockdriver()
108 if (bop->close != NULL) in close_blockdriver()
110 ret = bop->close(vnode_ptr); in close_blockdriver()
122 if (bop->close != NULL) in close_blockdriver()
124 ret = bop->close(vnode_ptr); in close_blockdriver()
/third_party/libdrm/tegra/
H A Dtegra.c122 struct drm_tegra_bo **bop) in drm_tegra_bo_new()
128 if (!drm || size == 0 || !bop) in drm_tegra_bo_new()
149 *bop = bo; in drm_tegra_bo_new()
156 uint32_t size, struct drm_tegra_bo **bop) in drm_tegra_bo_wrap()
160 if (!drm || !bop) in drm_tegra_bo_wrap()
167 *bop = bo; in drm_tegra_bo_wrap()
266 struct drm_tegra_bo **bop) in drm_tegra_bo_open()
286 *bop = bo; in drm_tegra_bo_open()
329 drm_tegra_bo_import(struct drm_tegra *drm, int fd, struct drm_tegra_bo **bop) in drm_tegra_bo_import() argument
347 *bop in drm_tegra_bo_import()
121 drm_tegra_bo_new(struct drm_tegra *drm, uint32_t flags, uint32_t size, struct drm_tegra_bo **bop) drm_tegra_bo_new() argument
155 drm_tegra_bo_wrap(struct drm_tegra *drm, uint32_t handle, uint32_t flags, uint32_t size, struct drm_tegra_bo **bop) drm_tegra_bo_wrap() argument
265 drm_tegra_bo_open(struct drm_tegra *drm, uint32_t name, uint32_t flags, struct drm_tegra_bo **bop) drm_tegra_bo_open() argument
[all...]
H A Dtegra.h47 struct drm_tegra_bo **bop);
49 uint32_t size, struct drm_tegra_bo **bop);
58 struct drm_tegra_bo **bop);
62 struct drm_tegra_bo **bop);
/third_party/NuttX/drivers/bch/
H A Dbchdev_driver.c296 struct block_operations *bop = NULL; in bch_ioctl() local
355 bop = (struct block_operations *)(((struct drv_data *)vnode->data)->ops); in bch_ioctl()
356 if (bop != NULL && bop->ioctl != NULL) in bch_ioctl()
358 ret = bop->ioctl(bch->vnode, cmd, arg); in bch_ioctl()
/third_party/mesa3d/src/mesa/main/tests/
H A Dmesa_formats.cpp108 #define HAS_PROP(rop,gop,bop,aop,lop,iop) \ in TEST_F()
112 EXPECT_TRUE(b bop 0); \ in TEST_F()
/third_party/mesa3d/src/gallium/drivers/iris/
H A Diris_program.c2387 struct iris_bo **bop = &ice->shaders.scratch_bos[encoded_size][stage]; in iris_get_scratch_space() local
2389 if (!*bop) { in iris_get_scratch_space()
2392 *bop = iris_bo_alloc(bufmgr, "scratch", size, 1024, in iris_get_scratch_space()
2396 return *bop; in iris_get_scratch_space()
/third_party/mesa3d/src/gallium/drivers/crocus/
H A Dcrocus_program.c2675 struct crocus_bo **bop = &ice->shaders.scratch_bos[encoded_size][stage]; in crocus_get_scratch_space() local
2677 if (!*bop) { in crocus_get_scratch_space()
2680 *bop = crocus_bo_alloc(bufmgr, "scratch", size); in crocus_get_scratch_space()
2683 return *bop; in crocus_get_scratch_space()
/third_party/python/Lib/test/
H A Dtest_ast.py2173 bop = ast.parse(s).body[0].test
2174 self._check_end_pos(bop, 2, 44)
2175 self._check_content(s, bop.values[1],
/third_party/mesa3d/src/gallium/auxiliary/driver_ddebug/
H A Ddd_draw.c1046 const char *bop = dd_fence_state(screen, record->bottom_of_pipe, NULL); in dd_report_hang() local
1049 record->draw_call, driver ? "YES" : "NO ", prev_bop, top, bop); in dd_report_hang()
/third_party/skia/third_party/externals/spirv-cross/
H A Dspirv_glsl.cpp9792 char bop = rhs[op];
9796 if ((bop == '+' || bop == '-') && (expr == "1" || expr == "uint(1)" || expr == "1u" || expr == "int(1u)"))
9797 statement(lhs, bop, bop, ";");
9799 statement(lhs, " ", bop, "= ", expr, ";");

Completed in 31 milliseconds