Searched refs:lc (Results 1 - 25 of 326) sorted by relevance

1234567891011>>

/xsrc/external/mit/libX11/dist/modules/
H A DMakefile.am1 SUBDIRS=im lc om
H A DMakefile.in376 SUBDIRS = im lc om
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/llvmpipe/
H A Dlp_jit.c48 LLVMContextRef lc = gallivm->context; local in function:lp_jit_create_types
56 elem_types[LP_JIT_VIEWPORT_MAX_DEPTH] = LLVMFloatTypeInContext(lc);
58 viewport_type = LLVMStructTypeInContext(lc, elem_types,
79 elem_types[LP_JIT_TEXTURE_LAST_LEVEL] = LLVMInt32TypeInContext(lc);
80 elem_types[LP_JIT_TEXTURE_BASE] = LLVMPointerType(LLVMInt8TypeInContext(lc), 0);
84 LLVMArrayType(LLVMInt32TypeInContext(lc), LP_MAX_TEXTURE_LEVELS);
86 texture_type = LLVMStructTypeInContext(lc, elem_types,
125 elem_types[LP_JIT_SAMPLER_LOD_BIAS] = LLVMFloatTypeInContext(lc);
127 LLVMArrayType(LLVMFloatTypeInContext(lc), 4);
129 sampler_type = LLVMStructTypeInContext(lc, elem_type
[all...]
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/llvmpipe/
H A Dlp_jit.c48 LLVMContextRef lc = gallivm->context; local in function:create_jit_texture_type
59 elem_types[LP_JIT_TEXTURE_LAST_LEVEL] = LLVMInt32TypeInContext(lc);
60 elem_types[LP_JIT_TEXTURE_BASE] = LLVMPointerType(LLVMInt8TypeInContext(lc), 0);
64 LLVMArrayType(LLVMInt32TypeInContext(lc), LP_MAX_TEXTURE_LEVELS);
66 texture_type = LLVMStructTypeInContext(lc, elem_types,
110 LLVMContextRef lc = gallivm->context; local in function:create_jit_sampler_type
116 elem_types[LP_JIT_SAMPLER_MAX_ANISO] = LLVMFloatTypeInContext(lc);
118 LLVMArrayType(LLVMFloatTypeInContext(lc), 4);
120 sampler_type = LLVMStructTypeInContext(lc, elem_types,
146 LLVMContextRef lc local in function:create_jit_image_type
191 LLVMContextRef lc = gallivm->context; local in function:lp_jit_create_types
420 LLVMContextRef lc = gallivm->context; local in function:lp_jit_create_cs_types
[all...]
/xsrc/external/mit/MesaLib/dist/src/compiler/nir/
H A Dnir_opt_phi_precision.c269 can_convert_load_const(nir_load_const_instr *lc, nir_op op) argument
274 assert(lc->def.bit_size == 32);
276 for (unsigned i = 0; i < lc->def.num_components; i++) {
279 if (lc->value[i].i32 != (int32_t)(int16_t)lc->value[i].i32)
283 if (lc->value[i].u32 != (uint32_t)(uint16_t)lc->value[i].u32)
287 if (lc->value[i].f32 != _mesa_half_to_float(
288 _mesa_float_to_half(lc->value[i].f32)))
401 nir_load_const_instr *lc local in function:try_move_widening_src
[all...]
H A Dnir_serialize.c1254 write_load_const(write_ctx *ctx, const nir_load_const_instr *lc) argument
1256 assert(lc->def.num_components >= 1 && lc->def.num_components <= 16);
1260 header.load_const.instr_type = lc->instr.type;
1261 header.load_const.last_component = lc->def.num_components - 1;
1262 header.load_const.bit_size = encode_bit_size_3bits(lc->def.bit_size);
1266 if (lc->def.num_components == 1) {
1267 switch (lc->def.bit_size) {
1269 if ((lc->value[0].u64 & 0x1fffffffffffull) == 0) {
1272 header.load_const.packed_value = lc
1340 nir_load_const_instr *lc = local in function:read_load_const
[all...]
H A Dnir_opt_dce.c84 nir_load_const_instr *lc = nir_instr_as_load_const(instr); local in function:is_live
85 return BITSET_TEST(defs_live, lc->def.index);
H A Dnir_clone.c373 clone_load_const(clone_state *state, const nir_load_const_instr *lc) argument
376 nir_load_const_instr_create(state->ns, lc->def.num_components,
377 lc->def.bit_size);
379 memcpy(&nlc->value, &lc->value, sizeof(*nlc->value) * lc->def.num_components);
381 add_remap(state, &nlc->def, &lc->def);
/xsrc/external/mit/xdm/dist/greeter/
H A Dverify.c105 login_cap_t *lc; local in function:Verify
127 if ((lc = login_getclass(p->pw_class)) == NULL) {
132 if ((style = login_getstyle(lc, style, "xdm")) == NULL) {
139 login_close(lc);
145 login_close(lc);
158 lc->lc_class, (void *)NULL);
165 login_close(lc);
169 if (!auth_approval(as, lc, greet->name, "auth-xdm")) {
173 login_close(lc);
177 login_close(lc);
[all...]
/xsrc/external/mit/MesaLib/dist/src/compiler/glsl/
H A Dlower_subroutine.cpp91 ir_constant *lc = new(mem_ctx)ir_constant(fn->subroutine_index); local in function:lower_subroutine_visitor::visit_leave
115 last_branch = if_tree(equal(subr_to_int(var), lc), new_call);
117 last_branch = if_tree(equal(subr_to_int(var), lc), new_call, last_branch);
/xsrc/external/mit/MesaLib.old/dist/src/compiler/glsl/
H A Dlower_subroutine.cpp91 ir_constant *lc = new(mem_ctx)ir_constant(fn->subroutine_index); local in function:lower_subroutine_visitor::visit_leave
115 last_branch = if_tree(equal(subr_to_int(var), lc), new_call);
117 last_branch = if_tree(equal(subr_to_int(var), lc), new_call, last_branch);
/xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/gallivm/
H A Dlp_bld_logic.c309 LLVMContextRef lc = bld->gallivm->context; local in function:lp_build_select
320 mask = LLVMBuildTrunc(builder, mask, LLVMInt1TypeInContext(lc), "");
346 LLVMTypeRef bool_vec_type = LLVMVectorType(LLVMInt1TypeInContext(lc), type.length);
366 LLVMTypeRef int_vec_type = LLVMVectorType(LLVMIntTypeInContext(lc, type.width), type.length);
376 arg_type = LLVMVectorType(LLVMDoubleTypeInContext(lc), 4);
380 arg_type = LLVMVectorType(LLVMFloatTypeInContext(lc), 8);
384 arg_type = LLVMVectorType(LLVMInt8TypeInContext(lc), 32);
390 arg_type = LLVMVectorType(LLVMDoubleTypeInContext(lc), 2);
394 arg_type = LLVMVectorType(LLVMFloatTypeInContext(lc), 4);
397 arg_type = LLVMVectorType(LLVMInt8TypeInContext(lc), 1
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/gallivm/
H A Dlp_bld_logic.c306 LLVMContextRef lc = bld->gallivm->context; local in function:lp_build_select
317 mask = LLVMBuildTrunc(builder, mask, LLVMInt1TypeInContext(lc), "");
345 LLVMTypeRef bool_vec_type = LLVMVectorType(LLVMInt1TypeInContext(lc), type.length);
370 arg_type = LLVMVectorType(LLVMDoubleTypeInContext(lc), 4);
374 arg_type = LLVMVectorType(LLVMFloatTypeInContext(lc), 8);
378 arg_type = LLVMVectorType(LLVMInt8TypeInContext(lc), 32);
384 arg_type = LLVMVectorType(LLVMDoubleTypeInContext(lc), 2);
388 arg_type = LLVMVectorType(LLVMFloatTypeInContext(lc), 4);
391 arg_type = LLVMVectorType(LLVMInt8TypeInContext(lc), 16);
/xsrc/external/mit/libXaw/dist/src/
H A DDisplayList.c231 XawDLClass *lc, *xlibc; local in function:XawCreateDisplayList
293 lc = cname[0] ? XawGetDisplayListClass(cname) : xlibc;
294 if (!lc)
307 lc = xlibc;
312 if ((info = _XawFindDLInfo(lc, fname)) == NULL)
378 /* verify if data is already created for lc */
381 if (dlist->data[i]->dlclass == lc)
390 data->dlclass = lc;
391 if (lc->data_init)
392 data->data = lc
1572 XawDLClass *lc; local in function:XawDisplayListInitialize
2127 XawDeclareDisplayListProc(XawDLClass * lc,String name,XawDisplayListProc proc) argument
2174 _XawFindDLInfo(XawDLClass * lc,String name) argument
2207 XawDLClass *lc; local in function:XawCreateDisplayListClass
2250 XawDLClass **lc; local in function:_XawFindDLClass
[all...]
/xsrc/external/mit/libX11/dist/src/xlibi18n/
H A DMakefile.am36 ${top_builddir}/modules/lc/def/libxlcDef.la \
37 ${top_builddir}/modules/lc/gen/libxlibi18n.la \
38 ${top_builddir}/modules/lc/Utf8/libxlcUTF8Load.la
H A DMakefile.in445 @XLIB_LOADABLE_I18N_FALSE@ ${top_builddir}/modules/lc/def/libxlcDef.la \
446 @XLIB_LOADABLE_I18N_FALSE@ ${top_builddir}/modules/lc/gen/libxlibi18n.la \
447 @XLIB_LOADABLE_I18N_FALSE@ ${top_builddir}/modules/lc/Utf8/libxlcUTF8Load.la
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/r600/sfn/
H A Dsfn_nir_lower_64bit.cpp100 nir_ssa_def *split_load_const(nir_load_const_instr *lc);
162 auto lc = nir_instr_as_load_const(instr); local in function:r600::LowerSplit64BitVar::filter
163 if (lc->def.bit_size != 64)
165 return lc->def.num_components >= 3;
523 LowerSplit64BitVar::split_load_const(nir_load_const_instr *lc) argument
526 for (unsigned i = 0; i < lc->def.num_components; ++i)
527 ir[i] = nir_imm_double(b, lc->value[i].f64);
529 return nir_vec(b, ir, lc->def.num_components);
589 auto lc = nir_instr_as_load_const(instr); local in function:r600::LowerSplit64BitVar::lower
590 return split_load_const(lc);
657 auto lc = nir_instr_as_load_const(instr); local in function:r600::Lower64BitToVec2::filter
723 auto lc = nir_instr_as_load_const(instr); local in function:r600::Lower64BitToVec2::lower
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/compiler/nir/
H A Dnir_serialize.c551 write_load_const(write_ctx *ctx, const nir_load_const_instr *lc) argument
553 uint32_t val = lc->def.num_components;
554 val |= lc->def.bit_size << 3;
556 blob_write_bytes(ctx->blob, lc->value, sizeof(*lc->value) * lc->def.num_components);
557 write_add_object(ctx, &lc->def);
565 nir_load_const_instr *lc = local in function:read_load_const
568 blob_copy_bytes(ctx->blob, lc->value, sizeof(*lc
[all...]
H A Dnir_clone.c354 clone_load_const(clone_state *state, const nir_load_const_instr *lc) argument
357 nir_load_const_instr_create(state->ns, lc->def.num_components,
358 lc->def.bit_size);
360 memcpy(&nlc->value, &lc->value, sizeof(*nlc->value) * lc->def.num_components);
362 add_remap(state, &nlc->def, &lc->def);
/xsrc/external/mit/libX11/dist/
H A Dconfigure.ac414 modules/lc/Makefile
415 modules/lc/def/Makefile
416 modules/lc/gen/Makefile
417 modules/lc/Utf8/Makefile
/xsrc/external/mit/libX11/dist/modules/lc/
H A DMakefile.in92 subdir = modules/lc
389 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign modules/lc/Makefile'; \
391 $(AUTOMAKE) --foreign modules/lc/Makefile
/xsrc/external/mit/libX11/dist/modules/lc/Utf8/
H A DMakefile.in93 subdir = modules/lc/Utf8
444 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign modules/lc/Utf8/Makefile'; \
446 $(AUTOMAKE) --foreign modules/lc/Utf8/Makefile
/xsrc/external/mit/libX11/dist/modules/lc/def/
H A DMakefile.in93 subdir = modules/lc/def
441 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign modules/lc/def/Makefile'; \
443 $(AUTOMAKE) --foreign modules/lc/def/Makefile
/xsrc/external/mit/libX11/dist/modules/lc/gen/
H A DMakefile.in93 subdir = modules/lc/gen
441 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign modules/lc/gen/Makefile'; \
443 $(AUTOMAKE) --foreign modules/lc/gen/Makefile
/xsrc/external/mit/xf86-video-openchrome/dist/src/xvmc/
H A DviaXvMC.c133 int retFtx, lc; local in function:grabDecoder
150 lc, retFtx);
151 *hadLastLock = (ctx->drmcontext == lc);

Completed in 39 milliseconds

1234567891011>>