Searched refs:def (Results 1 - 25 of 502) sorted by last modified time

1234567891011>>

/freebsd-11-stable/contrib/sqlite3/
H A Dltmain.sh3248 # True iff FILE is a Windows DLL '.def' file.
4658 eval "echo EXPORTS "'> "$output_objdir/$outputname.def"'
4659 eval 'cat "$export_symbols" >> "$output_objdir/$outputname.def"'
4670 eval "echo EXPORTS "'> "$output_objdir/$outputname.def"'
4671 eval 'cat "$nlist" >> "$output_objdir/$outputname.def"'
4859 if test -f "$output_objdir/$my_outputname.def"; then
4860 compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"`
4861 finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"`
8230 if test -f "$output_objdir/$soname-def"; then :
9642 # and it's NOT already a .def fil
[all...]
H A DMakefile.msc539 CORE_LINK_DEP = sqlite3.def
551 CORE_LINK_OPTS = /DEF:sqlite3.def
995 sqlite3.def: Replace.exe $(LIBOBJ)
996 echo EXPORTS > sqlite3.def
999 | sort >> sqlite3.def
1038 del /Q *.bsc *.def *.cod *.da *.bb *.bbg *.vc gmon.out 2>NUL
/freebsd-11-stable/contrib/unbound/
H A Dltmain.sh3248 # True iff FILE is a Windows DLL '.def' file.
4658 eval "echo EXPORTS "'> "$output_objdir/$outputname.def"'
4659 eval 'cat "$export_symbols" >> "$output_objdir/$outputname.def"'
4670 eval "echo EXPORTS "'> "$output_objdir/$outputname.def"'
4671 eval 'cat "$nlist" >> "$output_objdir/$outputname.def"'
4859 if test -f "$output_objdir/$my_outputname.def"; then
4860 compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"`
4861 finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"`
8226 if test -f "$output_objdir/$soname-def"; then :
9635 # and it's NOT already a .def fil
[all...]
H A Dconfigure11652 # If the export-symbols file already is a .def file, use it as
11655 cp $export_symbols $output_objdir/$soname.def;
11657 echo EXPORTS > $output_objdir/$soname.def;
11658 cat $export_symbols >> $output_objdir/$soname.def;
11660 $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'
11676 archive_cmds='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~
11677 $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~
11678 $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~
11679 $ECHO EXPORTS >> $output_objdir/$libname.def~
11680 emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~
[all...]
/freebsd-11-stable/contrib/less/
H A Dscreen.c247 static char *cheaper LESSPARAMS((char *t1, char *t2, char *def));
1421 cheaper(t1, t2, def)
1423 char *def;
1428 return (def);
/freebsd-11-stable/lib/msun/
H A DMakefile102 VERSION_DEF= ${LIBCSRCDIR}/Versions.def
/freebsd-11-stable/libexec/rtld-elf/
H A Drtld.c841 rtld_resolve_ifunc(const Obj_Entry *obj, const Elf_Sym *def) argument
846 ptr = (void *)make_function_pointer(def, obj);
859 const Elf_Sym *def; local
874 def = find_symdef(ELF_R_SYM(rel->r_info), obj, &defobj, SYMLOOK_IN_PLT,
876 if (def == NULL)
878 if (ELF_ST_TYPE(def->st_info) == STT_GNU_IFUNC)
879 target = (Elf_Addr)rtld_resolve_ifunc(defobj, def);
881 target = (Elf_Addr)(defobj->relocbase + def->st_value);
884 defobj->strtab + def->st_name, basename(obj->path),
1764 const Elf_Sym *def; local
3537 const Elf_Sym *def; local
3730 const Elf_Sym *def; local
4289 const Elf_Sym *def; local
4327 const Elf_Sym *def; local
[all...]
H A Drtld.h387 void *rtld_resolve_ifunc(const Obj_Entry *obj, const Elf_Sym *def);
/freebsd-11-stable/lib/clang/libclang/
H A DMakefile880 ${CLANG_TBLGEN} -gen-arm-mve-builtin-def \
/freebsd-11-stable/lib/liblzma/
H A DMakefile151 VERSION_DEF= ${.CURDIR}/Versions.def
/freebsd-11-stable/contrib/file/src/
H A Dsoftmagic.c147 file_fmtcheck(struct magic_set *ms, const char *desc, const char *def, argument
155 ptr = fmtcheck(desc, def);
156 if (ptr == def)
159 " with `%s'", file, line, desc, def);
H A Dfuncs.c303 const char *def = "data"; local
312 def = "empty";
315 def = "very short file (no magic)";
452 if (file_printf(ms, "%s", def) == -1)
H A Dfile.c105 #define OPT(shortname, longname, opt, def, doc) \
107 #define OPT_LONGONLY(longname, opt, def, doc, id) \
138 size_t def; member in struct:__anon6
612 defprint(int def) argument
614 if (!def)
616 if (((def & 1) && posixly) || ((def & 2) && !posixly))
622 docprint(const char *opts, int def) argument
631 defprint(def);
654 fprintf(stdout, "%9s %7zu %s", pm[i].name, pm[i].def,
[all...]
/freebsd-11-stable/contrib/subversion/subversion/svnserve/
H A Dserve.c542 const char *def,
548 svn_config_get(cfg, &val, SVN_CONFIG_SECTION_GENERAL, option, def);
539 get_access(svn_config_t *cfg, const char *option, const char *def, svn_boolean_t read_only) argument
/freebsd-11-stable/contrib/subversion/subversion/libsvn_auth_gnome_keyring/
H A Dgnome_keyring.c201 char *name, *def;
208 def = apr_pstrdup(result_pool, name);
211 return def;
200 char *name, *def; local
/freebsd-11-stable/stand/lua/
H A Ddrawer.lua363 -- For when things go terribly wrong; this def should be present here in the
367 function drawer.addBrand(name, def)
368 branddefs[name] = def
371 function drawer.addLogo(name, def)
372 logodefs[name] = def
/freebsd-11-stable/lib/libz/
H A DMakefile47 VERSION_DEF= ${.CURDIR}/Versions.def
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DFixedLenDecoderEmitter.cpp219 static BitsInit &getBitsField(const Record &def, StringRef str) { argument
220 BitsInit *bits = def.getValueAsBitsInit(str);
H A DCodeGenSchedule.cpp1132 "SchedClass has duplicate InstRW def");
1300 TransVariant(Record *def, unsigned rwi, unsigned pi, unsigned ti): argument
1301 VarOrSeqDef(def), RWIdx(rwi), ProcIdx(pi), TransVecIdx(ti) {}
2146 PrintFatalError(PRDef->getLoc(), "ProcResource def is not included in "
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DMachODump.cpp6274 uint32_t i, j, p, offset, xoffset, left, defs_left, def; local
6362 memcpy(&def, defs + j * sizeof(uint32_t), sizeof(uint32_t));
6364 sys::swapByteOrder(def);
6366 r = get_pointer_32(def, xoffset, left, xS, &info, true);
6367 outs() << "\tdefs[" << j << "] " << format("0x%08" PRIx32, def);
6412 memcpy(&def, defs + (j + symtab.cls_def_cnt) * sizeof(uint32_t),
6415 sys::swapByteOrder(def);
6417 r = get_pointer_32(def, xoffset, left, xS, &info, true);
6419 << format("0x%08" PRIx32, def);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Coroutines/
H A DCoroFrame.cpp108 assert(Block[UseIndex].Consumes[DefIndex] && "use must consume def");
297 Value *def() const { return Def; } function in class:__anon2548::Spill
326 if (CurrentValue != E.def()) {
327 CurrentValue = E.def();
433 if (CurrentDef == S.def())
436 CurrentDef = S.def();
655 if (CurrentValue != E.def()) {
656 CurrentValue = E.def();
691 BasicBlock *DefBlock = cast<Instruction>(E.def())->getParent();
701 auto *I = cast<Instruction>(E.def());
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyRegStackify.cpp279 return LIS.getInstructionFromIndex(ValNo->def);
358 // a different def.
481 /// A single-use def in the same block with no intervening memory or register
482 /// dependencies; move the def down and nest it with the current instruction.
501 // just our one def and use so that we can stackify it.
533 LLVM_DEBUG(dbgs() << "Rematerializing cheap def: "; Def.dump());
576 /// A multiple-use def in the same block with no intervening memory or register
577 /// dependencies; move the def down, nest it with the current instruction, and
624 // Tell LiveIntervals we moved the original vreg def from Def to Tee.
629 ValNo->def
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCVSXFMAMutate.cpp94 // %5<def,tied1> = XSMADDADP %5<tied0>, %17, %16,
97 // %9<def,tied1> = XSMADDADP %9<tied0>, %17, %19,
102 // %5<def,tied1> = XSMADDADP %5<tied0>, %17, %16,
105 // %16<def,tied1> = XSMADDMDP %16<tied0>, %18, %9,
118 MachineInstr *AddendMI = LIS->getInstructionFromIndex(AddendValNo->def);
157 // %9<def,tied1> = XSMADDASP %9<tied0>, %1, %4; VSSRC:
158 // %6<def,tied1> = XSMADDASP %6<tied0>, %1, %2; VSSRC:
159 // %7<def,tied1> = XSMADDASP %7<tied0>, %1, %3; VSSRC:
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonSubtarget.h214 void adjustSchedDependency(SUnit *def, SUnit *use, SDep& dep) const override;
H A DHexagonNewValueJump.cpp149 // Make sure that the (unique) def operand is a register from IntRegs.
162 // Make sure there is no 'def' or 'use' of any of the uses of
226 // The following pseudo Hexagon instructions sets "use" and "def"
295 MachineInstr *def = MRI.getVRegDef(cmpOp2); local
296 if (def->getOpcode() == TargetOpcode::COPY)
301 // Walk the instructions after the compare (predicate def) to the jump,
314 // If there is a def or use of predicate (result of compare), bail out.
320 // If there is a def of any of the use of the compare (operands of compare),

Completed in 374 milliseconds

1234567891011>>