/third_party/mesa3d/src/gallium/drivers/r600/sb/ |
H A D | sb_peephole.cpp | 143 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 D | sb_pass.h | 428 bool get_bool_op_info(value *b, bool_op_info& bop);
|
/third_party/NuttX/fs/driver/ |
H A D | fs_closeblockdriver.c | 57 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 D | tegra.c | 122 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 D | tegra.h | 47 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 D | bchdev_driver.c | 296 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 D | mesa_formats.cpp | 108 #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 D | iris_program.c | 2387 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 D | crocus_program.c | 2675 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 D | test_ast.py | 2173 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 D | dd_draw.c | 1046 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 D | spirv_glsl.cpp | 9792 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, ";");
|