Searched refs:lv (Results 1 - 21 of 21) sorted by relevance

/freebsd-13-stable/contrib/netbsd-tests/libexec/ld.elf_so/
H A Dt_dl_symver.sh43 for lv in 0 1 2; do
45 -o file:$(datadir)/symver-output-ref-stdout.v$tv-v$lv \
46 -e file:$(datadir)/symver-output-ref-stderr.v$tv-v$lv \
47 -x "LD_LIBRARY_PATH=$(atf_get_srcdir)/h_helper_symver_dso$lv $(atf_get_srcdir)/h_dl_symver_v$tv"
/freebsd-13-stable/sys/geom/linux_lvm/
H A Dg_linux_lvm.c198 struct g_llvm_lv *lv; local
208 lv = pp->private;
247 if (lv->lv_sgcount == 1) {
252 sg = lv->lv_firstsg;
262 LIST_FOREACH(sg, &lv->lv_segs, sg_next) {
289 offset, length, lv->lv_name,
319 struct g_llvm_lv *lv; local
329 LIST_FOREACH(lv, &vg->vg_lvs, lv_next) {
332 LIST_FOREACH(sg, &lv->lv_segs, sg_next) {
335 lv
371 g_llvm_activate_lv(struct g_llvm_vg *vg, struct g_llvm_lv *lv) argument
400 struct g_llvm_lv *lv; local
500 struct g_llvm_lv *lv; local
1047 struct g_llvm_lv *lv; local
1111 llvm_textconf_decode_sg(char **buf, char *tok, struct g_llvm_lv *lv) argument
[all...]
/freebsd-13-stable/tools/tools/nanobsd/
H A Dmtree-dedup.awk78 lv = path " ";
81 lv = lv k " ";
83 lv = lv k "=" kvs[k] " ";
85 return lv;
/freebsd-13-stable/sys/cddl/compat/opensolaris/sys/
H A Dassfail.h68 __assfail3(const char *expr, uintmax_t lv, const char *op, uintmax_t rv, argument
73 expr, lv, op, rv, file, line);
/freebsd-13-stable/sys/cddl/compat/opensolaris/kern/
H A Dopensolaris_cmn_err.c87 assfail3(const char *a, uintmax_t lv, const char *op, uintmax_t rv, argument
92 a, lv, op, rv, f, l);
/freebsd-13-stable/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_pq.c134 uint64_t lv = dt_pq_getvalue(p, lc); local
137 if (lv < rv) {
139 v = lv;
/freebsd-13-stable/usr.bin/localedef/
H A Dwide.c213 wchar_t lv; /* lowest legal value */ local
226 lv = 0x80;
231 lv = 0x800;
236 lv = 0x1000;
257 if (c < lv) {
/freebsd-13-stable/contrib/libucl/src/
H A Ducl_parser.c728 int64_t lv = 0; local
811 lv = strtoimax (c, &endptr, 16);
814 lv = strtoimax (c, &endptr, 10);
842 dv = lv;
858 lv = dv;
860 lv *= ucl_lex_num_multiplier (*p, true);
869 lv *= ucl_lex_num_multiplier (*p, number_bytes);
881 dv = lv;
895 lv *= ucl_lex_num_multiplier (*p, number_bytes);
907 dv = lv;
[all...]
H A Dmum.h129 uint64_t lv = (uint32_t) v, lp = (uint32_t) p; local
132 uint64_t rm_1 = hp * lv;
133 uint64_t rl = lv * lp;
/freebsd-13-stable/contrib/tcsh/
H A Ded.refresh.c162 int w, i, lv, lh; local
237 lv = vcursor_v;
242 lv--;
243 if (lv < 0)
245 lh = Strlen(Vdisplay[lv]) - 1;
247 if (Vdisplay[lv][lh] != CHAR_DBWIDTH)
250 if (lv < 0) {
257 Vdisplay[lv][lh] = MakeLiteral(cp, 1, Vdisplay[lv][lh]);
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGCall.h233 CallArg(LValue lv, QualType ty) argument
234 : LV(lv), HasLV(true), IsUsed(false), Ty(ty) {}
H A DCGDeclCXX.cpp39 LValue lv = CGF.MakeAddrLValue(DeclPtr, type); local
45 if (lv.isObjCStrong())
48 else if (lv.isObjCWeak())
52 CGF.EmitScalarInit(Init, &D, lv, false);
56 CGF.EmitComplexExprIntoLValue(Init, lv, /*isInit*/ true);
60 AggValueSlot::forLValue(lv, CGF, AggValueSlot::IsDestructed,
H A DCGDecl.cpp1858 LValue lv = MakeAddrLValue(Loc, type); local
1859 lv.setNonGC(true);
1860 return EmitExprAsInit(Init, &D, lv, capturedByInit);
1865 LValue lv = MakeAddrLValue(Loc, type); local
1866 lv.setNonGC(true);
1867 return EmitStoreThroughLValue(RValue::get(constant), lv, true);
2447 LValue lv = MakeAddrLValue(DeclPtr, Ty); local
2476 EmitStoreOfScalar(Null, lv, /* isInitialization */ true);
2477 EmitARCStoreStrongCall(lv.getAddress(*this), ArgVal, true);
2508 EmitStoreOfScalar(ArgVal, lv, /* isInitializatio
[all...]
H A DCGExprAgg.cpp1443 void AggExprEmitter::EmitNullInitializationToLValue(LValue lv) { argument
1444 QualType type = lv.getType();
1456 if (lv.isBitField()) {
1457 CGF.EmitStoreThroughBitfieldLValue(RValue::get(null), lv); local
1459 assert(lv.isSimple());
1460 CGF.EmitStoreOfScalar(null, lv, /* isInitialization */ true);
1466 CGF.EmitNullInitialization(lv.getAddress(CGF), lv.getType());
H A DCGObjC.cpp2777 LValue lv = CGF.EmitLValue(e); local
2780 llvm::Value *result = CGF.EmitLoadOfLValue(lv,
2784 CGF.EmitStoreOfScalar(getNullForVariable(lv.getAddress(CGF)), lv); local
H A DCodeGenFunction.h1177 const LValue &lv) {
1179 CGF.OpaqueLValues.insert(std::make_pair(ov, lv));
1175 bind(CodeGenFunction &CGF, const OpaqueValueExpr *ov, const LValue &lv) argument
/freebsd-13-stable/usr.sbin/bsdinstall/scripts/
H A Dmirrorselect98 ftp://ftp.lv.freebsd.org "Latvia"\
/freebsd-13-stable/sys/dev/usb/
H A Dusb_hub_acpi.c365 acpi_usb_hub_port_probe_cb(ACPI_HANDLE ah, UINT32 lv, void *ctx, void **rv) argument
/freebsd-13-stable/sys/dev/sound/pci/
H A Dds1.c372 u_int32_t lv[] = {1, 1, 0, 0, 0}; local
419 pb->LchGain = pb->LchGainEnd = lv[ch] * 0x40000000;
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp3432 const auto *lv = cast<LValueReferenceType>(ty); local
3434 getVariableArrayDecayedType(lv->getPointeeType()),
3435 lv->isSpelledAsLValue());
3440 const auto *lv = cast<RValueReferenceType>(ty); local
3442 getVariableArrayDecayedType(lv->getPointeeType()));
/freebsd-13-stable/sys/dev/bce/
H A Dif_bcereg.h359 #define BCE_MSG_LEVEL(lv) \
360 ((lv & BCE_LEVEL_MASK) <= (bce_debug & BCE_LEVEL_MASK))

Completed in 286 milliseconds