| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/softpipe/ |
| sp_clear.c | 58 uint64_t cv; local 88 cv = util_pack64_z_stencil(zsbuf->format, depth, stencil); 89 sp_tile_cache_clear(softpipe->zsbuf_cache, &zero, cv);
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/softpipe/ |
| sp_clear.c | 56 uint64_t cv; local 86 cv = util_pack64_z_stencil(zsbuf->format, depth, stencil); 87 sp_tile_cache_clear(softpipe->zsbuf_cache, &zero, cv);
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/clover/core/ |
| event.hpp | 96 mutable std::condition_variable cv; member in class:clover::event
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/clover/core/core/ |
| event.hpp | 96 mutable std::condition_variable cv; member in class:clover::event
|
| /xsrc/external/mit/MesaLib/dist/src/compiler/nir/ |
| nir_lower_clip.c | 238 nir_ssa_def *cv; local 241 cv = nir_load_var(b, clipvertex ? clipvertex : position); 249 cv = find_output(b->shader, clipvertex->data.driver_location); 252 cv = find_output(b->shader, position->data.driver_location); 260 /* calculate clipdist[plane] - dot(ucp, cv): */ 261 clipdist[plane] = nir_fdot(b, ucp, cv);
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/draw/ |
| draw_cliptest_tmp.h | 38 const unsigned cv = draw_current_shader_clipvertex_output(pvs->draw); local 96 if ((flags & DO_CLIP_USER) && cv != pos) { 97 assert(cv != -1); 98 clipvertex = out->data[cv];
|
| draw_llvm.c | 1524 const unsigned cv = llvm->draw->vs.clipvertex_output; local 1556 if (clip_user && cv != pos) { 1557 cv_x = LLVMBuildLoad(builder, outputs[cv][0], ""); /*x0 x1 .. xn */ 1558 cv_y = LLVMBuildLoad(builder, outputs[cv][1], ""); /*y0 y1 .. yn */ 1559 cv_z = LLVMBuildLoad(builder, outputs[cv][2], ""); /*z0 z1 .. zn */ 1560 cv_w = LLVMBuildLoad(builder, outputs[cv][3], ""); /*w0 w1 .. wn */ 1967 const unsigned cv = draw->vs.clipvertex_output; local 2327 if (pos != -1 && cv != -1) {
|
| /xsrc/external/mit/MesaLib.old/dist/src/compiler/nir/ |
| nir_lower_clip.c | 168 nir_ssa_def *cv; local 211 cv = nir_load_var(&b, clipvertex ? clipvertex : position); 220 cv = find_output(shader, clipvertex->data.driver_location); 222 cv = find_output(shader, position->data.driver_location); 239 /* calculate clipdist[plane] - dot(ucp, cv): */ 240 clipdist[plane] = nir_fdot4(&b, ucp, cv);
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/draw/ |
| draw_cliptest_tmp.h | 37 const unsigned cv = draw_current_shader_clipvertex_output(pvs->draw); local 90 if ((flags & DO_CLIP_USER) && cv != pos) { 91 assert(cv != -1); 92 clipvertex = out->data[cv];
|
| draw_llvm.c | 1152 const unsigned cv = llvm->draw->vs.clipvertex_output; local 1184 if (clip_user && cv != pos) { 1185 cv_x = LLVMBuildLoad(builder, outputs[cv][0], ""); /*x0 x1 .. xn */ 1186 cv_y = LLVMBuildLoad(builder, outputs[cv][1], ""); /*y0 y1 .. yn */ 1187 cv_z = LLVMBuildLoad(builder, outputs[cv][2], ""); /*z0 z1 .. zn */ 1188 cv_w = LLVMBuildLoad(builder, outputs[cv][3], ""); /*w0 w1 .. wn */ 1571 const unsigned cv = draw->vs.clipvertex_output; local 1911 if (pos != -1 && cv != -1) {
|
| /xsrc/external/mit/libX11/dist/src/ |
| locking.h | 48 xcondition_t cv; member in struct:_XCVList 71 xcondition_t cv; /* wait if another thread has XLockDisplay */ member in struct:_XLockInfo 88 xcondition_t /* cv */, 105 xcondition_t /* cv */ 112 xcondition_t /* cv */
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/r600/sb/ |
| sb_ra_coalesce.cpp | 466 vvec & cv = c->values; local 479 for (vvec::iterator I = cv.begin(), E = cv.end(); I != E; ++I, ++k) { 589 cc = detach_value(cv[i]);
|
| sb_expr.cpp | 423 literal dv, cv = v0->get_const_value(); local 424 apply_alu_src_mod(n.bc, 0, cv); 427 case ALU_OP1_CEIL: dv = ceilf(cv.f); break; 428 case ALU_OP1_COS: dv = cos(cv.f * 2.0f * M_PI); break; 429 case ALU_OP1_EXP_IEEE: dv = exp2f(cv.f); break; 430 case ALU_OP1_FLOOR: dv = floorf(cv.f); break; 431 case ALU_OP1_FLT_TO_INT: dv = (int)cv.f; break; // FIXME: round modes ???? 432 case ALU_OP1_FLT_TO_INT_FLOOR: dv = (int32_t)floorf(cv.f); break; 433 case ALU_OP1_FLT_TO_INT_RPI: dv = (int32_t)floorf(cv.f + 0.5f); break; 434 case ALU_OP1_FLT_TO_INT_TRUNC: dv = (int32_t)truncf(cv.f); break [all...] |
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/r600/sfn/ |
| sfn_ir_to_assembly.cpp | 1209 const UniformValue& cv = static_cast<const UniformValue&>(s); local 1210 src.kc_bank = cv.kcache_bank(); 1211 auto addr = cv.addr();
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/r600/sb/ |
| sb_ra_coalesce.cpp | 466 vvec & cv = c->values; local 479 for (vvec::iterator I = cv.begin(), E = cv.end(); I != E; ++I, ++k) { 589 cc = detach_value(cv[i]);
|
| sb_expr.cpp | 423 literal dv, cv = v0->get_const_value(); local 424 apply_alu_src_mod(n.bc, 0, cv); 427 case ALU_OP1_CEIL: dv = ceil(cv.f); break; 428 case ALU_OP1_COS: dv = cos(cv.f * 2.0f * M_PI); break; 429 case ALU_OP1_EXP_IEEE: dv = exp2(cv.f); break; 430 case ALU_OP1_FLOOR: dv = floor(cv.f); break; 431 case ALU_OP1_FLT_TO_INT: dv = (int)cv.f; break; // FIXME: round modes ???? 432 case ALU_OP1_FLT_TO_INT_FLOOR: dv = (int32_t)floor(cv.f); break; 433 case ALU_OP1_FLT_TO_INT_RPI: dv = (int32_t)floor(cv.f + 0.5f); break; 434 case ALU_OP1_FLT_TO_INT_TRUNC: dv = (int32_t)trunc(cv.f); break [all...] |
| /xsrc/external/mit/MesaLib/dist/src/compiler/nir/tests/ |
| load_store_vectorizer_tests.cpp | 742 nir_const_value *cv = nir_instr_as_load_const(val->parent_instr)->value; local 743 ASSERT_EQ(nir_const_value_as_uint(cv[0], 32), 0x10); 744 ASSERT_EQ(nir_const_value_as_uint(cv[1], 32), 0x20); 765 nir_const_value *cv = nir_instr_as_load_const(val->parent_instr)->value; local 766 ASSERT_EQ(nir_const_value_as_uint(cv[0], 32), 0x10); 767 ASSERT_EQ(nir_const_value_as_uint(cv[1], 32), 0x20); 768 ASSERT_EQ(nir_const_value_as_uint(cv[2], 32), 0x21); 1068 nir_const_value *cv = nir_instr_as_load_const(val->parent_instr)->value; local 1069 ASSERT_EQ(nir_const_value_as_uint(cv[0], 8), 0x10); 1070 ASSERT_EQ(nir_const_value_as_uint(cv[1], 8), 0x20) 1093 nir_const_value *cv = nir_instr_as_load_const(val->parent_instr)->value; local 1119 nir_const_value *cv = nir_instr_as_load_const(val->parent_instr)->value; local 1143 nir_const_value *cv = nir_instr_as_load_const(val->parent_instr)->value; local 1180 nir_const_value *cv = nir_instr_as_load_const(val->parent_instr)->value; local 1529 nir_const_value *cv = nir_instr_as_load_const(val->parent_instr)->value; local [all...] |
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/etnaviv/ |
| etnaviv_compiler_nir.c | 760 nir_const_value *cv = nir_src_as_const_value(alu->src[i].src); local 761 if (!cv) 766 int idx = const_add(&value[0].u64, cv[alu->src[i].swizzle[j]].u64); 782 nir_const_value *cv = nir_src_as_const_value(alu->src[i].src); local 783 if (!cv) 797 nir_const_value *cv = nir_src_as_const_value(alu->src[i].src); local 798 if (!cv) 815 nir_const_value *cv = nir_src_as_const_value(alu->src[i].src); local 816 if (cv) 817 value[num_components++] = cv[alu->src[i].swizzle[0]] 834 nir_const_value *cv = nir_src_as_const_value(alu->src[i].src); local [all...] |
| /xsrc/external/mit/MesaLib/dist/src/mesa/main/ |
| texcompress_s3tc_tmp.h | 202 GLubyte cv[4][4]; local 226 cv[0][i] = testcolor[0][i]; 227 cv[1][i] = testcolor[1][i]; 228 cv[2][i] = (testcolor[0][i] * 2 + testcolor[1][i]) / 3; 229 cv[3][i] = (testcolor[0][i] + testcolor[1][i] * 2) / 3; 246 colordist = srccolors[j][i][0] - (cv[colors][0]); 249 colordist = srccolors[j][i][1] - (cv[colors][1]); 252 colordist = srccolors[j][i][2] - (cv[colors][2]); 392 GLubyte cv[4][4]; local 410 cv[0][i] = bestcolor[0][i] [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/main/ |
| texcompress_s3tc_tmp.h | 202 GLubyte cv[4][4]; local 226 cv[0][i] = testcolor[0][i]; 227 cv[1][i] = testcolor[1][i]; 228 cv[2][i] = (testcolor[0][i] * 2 + testcolor[1][i]) / 3; 229 cv[3][i] = (testcolor[0][i] + testcolor[1][i] * 2) / 3; 246 colordist = srccolors[j][i][0] - (cv[colors][0]); 249 colordist = srccolors[j][i][1] - (cv[colors][1]); 252 colordist = srccolors[j][i][2] - (cv[colors][2]); 392 GLubyte cv[4][4]; local 410 cv[0][i] = bestcolor[0][i] [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/swr/ |
| swr_shader.cpp | 886 unsigned cv = 0; local 888 cv = locate_linkage(TGSI_SEMANTIC_CLIPVERTEX, 0, 894 cv = i; 899 LLVMValueRef cx = LLVMBuildLoad(gallivm->builder, outputs[cv][0], ""); 900 LLVMValueRef cy = LLVMBuildLoad(gallivm->builder, outputs[cv][1], ""); 901 LLVMValueRef cz = LLVMBuildLoad(gallivm->builder, outputs[cv][2], ""); 902 LLVMValueRef cw = LLVMBuildLoad(gallivm->builder, outputs[cv][3], ""); 908 unsigned cv = locate_linkage(TGSI_SEMANTIC_CLIPDIST, val < 4 ? 0 : 1, local 911 LLVMValueRef dist = LLVMBuildLoad(gallivm->builder, outputs[cv][val], ""); 914 LLVMValueRef dist = LLVMBuildLoad(gallivm->builder, outputs[cv][val - 4], "") [all...] |
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/zink/nir_to_spirv/ |
| nir_to_spirv.c | 3131 nir_const_value *cv; local 3149 cv = nir_src_as_const_value(tex->src[i].src); 3150 if (cv) { 3156 int64_t tmp = nir_const_value_as_int(cv[i], bit_size);
|