| /xsrc/external/mit/xorgproto/dist/include/X11/ |
| H A D | Xthreads.h | 56 # define xcondition_init(cv) condition_init(cv) 57 # define xcondition_clear(cv) condition_clear(cv) 58 # define xcondition_wait(cv,m) condition_wait(cv,m) 59 # define xcondition_signal(cv) condition_signal(cv) 60 # define xcondition_broadcast(cv) condition_broadcast(cv) [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/softpipe/ |
| H A D | sp_clear.c | 56 uint64_t cv; local in function:softpipe_clear 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/drivers/softpipe/ |
| H A D | sp_clear.c | 58 uint64_t cv; local in function:softpipe_clear 88 cv = util_pack64_z_stencil(zsbuf->format, depth, stencil); 89 sp_tile_cache_clear(softpipe->zsbuf_cache, &zero, cv);
|
| /xsrc/external/mit/libX11/dist/src/ |
| H A D | locking.c | 261 cvl->cv = xcondition_malloc(); 262 if (!cvl->cv) { 266 xcondition_init(cvl->cv); 267 xcondition_set_name(cvl->cv, "Xlib read queue"); 320 xcondition_clear(front->cv); 321 Xfree(front->cv); 328 ConditionSignal(dpy, dpy->lock->reply_awaiters->cv); 330 ConditionSignal(dpy, dpy->lock->event_awaiters->cv); 335 xcondition_t cv, 359 xcondition_wait(cv, mute 334 _XConditionWait(xcondition_t cv,xmutex_t mutex XTHREADS_FILE_LINE_ARGS) argument [all...] |
| H A D | LockDis.c | 67 ConditionWait(dpy, cvl->cv);
|
| H A D | 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.old/dist/src/gallium/auxiliary/draw/ |
| H A D | draw_cliptest_tmp.h | 37 const unsigned cv = draw_current_shader_clipvertex_output(pvs->draw); local in function:TAG 90 if ((flags & DO_CLIP_USER) && cv != pos) { 91 assert(cv != -1); 92 clipvertex = out->data[cv];
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/draw/ |
| H A D | draw_cliptest_tmp.h | 38 const unsigned cv = draw_current_shader_clipvertex_output(pvs->draw); local in function:TAG 96 if ((flags & DO_CLIP_USER) && cv != pos) { 97 assert(cv != -1); 98 clipvertex = out->data[cv];
|
| /xsrc/external/mit/MesaLib.old/dist/src/compiler/nir/ |
| H A D | nir_lower_clip.c | 168 nir_ssa_def *cv; local in function:nir_lower_clip_vs 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/drivers/r600/sb/ |
| H A D | sb_expr.cpp | 423 literal dv, cv = v0->get_const_value(); local in function:r600_sb::expr_handler::fold_alu_op1 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 [all...] |
| H A D | sb_ra_coalesce.cpp | 466 vvec & cv = c->values; local in function:r600_sb::coalescer::color_reg_constraint 479 for (vvec::iterator I = cv.begin(), E = cv.end(); I != E; ++I, ++k) { 589 cc = detach_value(cv[i]);
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/r600/sb/ |
| H A D | sb_expr.cpp | 423 literal dv, cv = v0->get_const_value(); local in function:r600_sb::expr_handler::fold_alu_op1 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 [all...] |
| H A D | sb_ra_coalesce.cpp | 466 vvec & cv = c->values; local in function:r600_sb::coalescer::color_reg_constraint 479 for (vvec::iterator I = cv.begin(), E = cv.end(); I != E; ++I, ++k) { 589 cc = detach_value(cv[i]);
|
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/main/ |
| H A D | texcompress_s3tc_tmp.h | 202 GLubyte cv[4][4]; local in function:fancybasecolorsearch 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 in function:storedxtencodedblock 410 cv[ [all...] |
| /xsrc/external/mit/MesaLib/dist/src/mesa/main/ |
| H A D | texcompress_s3tc_tmp.h | 202 GLubyte cv[4][4]; local in function:fancybasecolorsearch 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 in function:storedxtencodedblock 410 cv[ [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/nouveau/codegen/lib/ |
| H A D | gk104.asm | 94 // $p1, $p2: caching predicate (00: cv, 01: ca, 10: cg) 100 $p1 suldgb b128 $r0q cv zero u8 g[$r4d] $r2 $p0 107 $p1 suldgb b128 $r0q cv zero u8 g[$r4d] $r2 $p0 123 $p1 suldgb b64 $r0d cv zero u8 g[$r4d] $r2 $p0 139 $p1 suldgb b64 $r0d cv zero u8 g[$r4d] $r2 $p0 150 $p1 suldgb b64 $r0d cv zero u8 g[$r4d] $r2 $p0 161 $p1 suldgb b64 $r0d cv zero u8 g[$r4d] $r2 $p0 173 $p1 suldgb b64 $r0d cv zero u8 g[$r4d] $r2 $p0 182 $p1 suldgb b64 $r0d cv zero u8 g[$r4d] $r2 $p0 191 $p1 suldgb b32 $r0 cv zer [all...] |
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/nouveau/codegen/lib/ |
| H A D | gk104.asm | 94 // $p1, $p2: caching predicate (00: cv, 01: ca, 10: cg) 100 $p1 suldgb b128 $r0q cv zero u8 g[$r4d] $r2 $p0 107 $p1 suldgb b128 $r0q cv zero u8 g[$r4d] $r2 $p0 123 $p1 suldgb b64 $r0d cv zero u8 g[$r4d] $r2 $p0 139 $p1 suldgb b64 $r0d cv zero u8 g[$r4d] $r2 $p0 150 $p1 suldgb b64 $r0d cv zero u8 g[$r4d] $r2 $p0 161 $p1 suldgb b64 $r0d cv zero u8 g[$r4d] $r2 $p0 173 $p1 suldgb b64 $r0d cv zero u8 g[$r4d] $r2 $p0 182 $p1 suldgb b64 $r0d cv zero u8 g[$r4d] $r2 $p0 191 $p1 suldgb b32 $r0 cv zer [all...] |
| /xsrc/external/mit/MesaLib/dist/src/compiler/nir/tests/ |
| H A D | load_store_vectorizer_tests.cpp | 742 nir_const_value *cv = nir_instr_as_load_const(val->parent_instr)->value; local in function:TEST_F 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 in function:TEST_F 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 in function:TEST_F 1069 ASSERT_EQ(nir_const_value_as_uint(cv[0], 8), 0x10); 1070 ASSERT_EQ(nir_const_value_as_uint(cv[ 1093 nir_const_value *cv = nir_instr_as_load_const(val->parent_instr)->value; local in function:TEST_F 1119 nir_const_value *cv = nir_instr_as_load_const(val->parent_instr)->value; local in function:TEST_F 1143 nir_const_value *cv = nir_instr_as_load_const(val->parent_instr)->value; local in function:TEST_F 1180 nir_const_value *cv = nir_instr_as_load_const(val->parent_instr)->value; local in function:TEST_F 1529 nir_const_value *cv = nir_instr_as_load_const(val->parent_instr)->value; local in function:TEST_F [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/clover/core/core/ |
| H A D | event.cpp | 47 cv.notify_all(); 71 cv.notify_all(); 116 cv.wait(lock, [=]{ return !_wait_count; });
|
| H A D | event.hpp | 96 mutable std::condition_variable cv; member in class:clover::event
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/clover/core/ |
| H A D | event.cpp | 47 cv.notify_all(); 71 cv.notify_all(); 116 cv.wait(lock, [=]{ return !_wait_count; });
|
| H A D | event.hpp | 96 mutable std::condition_variable cv; member in class:clover::event
|
| /xsrc/external/mit/MesaLib/dist/src/compiler/nir/ |
| H A D | nir_lower_clip.c | 238 nir_ssa_def *cv; local in function:lower_clip_outputs 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/drivers/etnaviv/ |
| H A D | etnaviv_compiler_nir.c | 760 nir_const_value *cv = nir_src_as_const_value(alu->src[i].src); local in function:lower_alu 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 in function:lower_alu 783 if (!cv) 797 nir_const_value *cv = nir_src_as_const_value(alu->src[i].src); local in function:lower_alu 798 if (!cv) 815 nir_const_value *cv = nir_src_as_const_value(alu->src[i].src); local in function:lower_alu 816 if (cv) 817 value[num_components++] = cv[al 834 nir_const_value *cv = nir_src_as_const_value(alu->src[i].src); local in function:lower_alu [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/swr/ |
| H A D | swr_shader.cpp | 886 unsigned cv = 0; local in function:BuilderSWR::CompileVS 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 in function:BuilderSWR::CompileVS 911 LLVMValueRef dist = LLVMBuildLoad(gallivm->builder, outputs[cv][val], ""); 914 LLVMValueRef dist = LLVMBuildLoad(gallivm->builder, outputs[cv][va [all...] |