Home
last modified time | relevance | path

Searched refs:target (Results 151 – 175 of 2150) sorted by relevance

12345678910>>...86

/freebsd/crypto/openssl/util/
H A Dfind-doc-nits720 my $target = $1;
721 next unless $target =~ /^L<(.*)>$/; # Skip if not L<...>
722 $target = $1; # Peal away L< and >
728 next if $target =~ /\([1357]\)$/; # it has a section
733 my $target = $1;
734 next if $target =~ /openssl-?/;
735 next if ( grep { basename($_) eq "$target.pod" }
737 next if $target =~ /ps|apropos|sha1sum|procmail|perl/;
742 my $target = $1;
743 err($id, "Bad L<$target>")
[all …]
H A Dadd-depends.pl28 my $depext = $target{dep_extension} || ".d";
329 my ($target, $deps) = $procedure->($depfile, $_);
330 $collect{$target}->{$deps} = 1 if defined $target;
345 foreach my $target (sort keys %collect) {
346 my $prefix = $target . ' :';
347 my @deps = sort keys %{$collect{$target}};
/freebsd/lib/libc/softfloat/
H A Dsoftfloat-source.txt101 is slightly scattered between target-specific and target-independent
131 target-independent.
133 The naming convention used for the target-specific directories is
135 target directories should be interpreted as follows:
148 Alongside the supplied target-specific directories is a `templates'
169 The target-specific `processors' header file defines integer types
198 The target-specific `softfloat.h' header file defines the SoftFloat
208 be stated as `int', although in `softfloat.c' it is given in target-
231 This target-specific C source fragment defines:
307 6. In the target-specific subdirectory, execute `make'.
[all …]
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_import/
H A Dzpool_import_007_pos.ksh68 typeset target=$TESTPOOL1
70 target=$guid
76 log_must zpool import -d $DEVICE_DIR -D -f $target
81 log_must zpool import -d $DEVICE_DIR -D -f $target
87 log_mustnot zpool import -d $DEVICE_DIR -D -f $target
H A Dzpool_import_016_pos.ksh69 typeset target=$TESTPOOL1
71 target=$guid
77 log_must zpool import -d $DEVICE_DIR -D -f $target
82 log_must zpool import -d $DEVICE_DIR -D -f $target
88 log_mustnot zpool import -d $DEVICE_DIR -D -f $target
H A Dzpool_import_008_pos.ksh68 typeset target=$TESTPOOL1
70 target=$guid
76 log_must zpool import -d $DEVICE_DIR -D -f $target
81 log_must zpool import -d $DEVICE_DIR -D -f $target
88 log_mustnot zpool import -d $DEVICE_DIR -D -f $target
H A Dzpool_import_017_pos.ksh69 typeset target=$TESTPOOL1
71 target=$guid
77 log_must zpool import -d $DEVICE_DIR -D -f $target
82 log_must zpool import -d $DEVICE_DIR -D -f $target
89 log_mustnot zpool import -d $DEVICE_DIR -D -f $target
/freebsd/contrib/llvm-project/lldb/include/lldb/API/
H A DSBInstruction.h40 const char *GetMnemonic(lldb::SBTarget target);
42 const char *GetOperands(lldb::SBTarget target);
44 const char *GetComment(lldb::SBTarget target);
46 lldb::InstructionControlFlowKind GetControlFlowKind(lldb::SBTarget target);
48 lldb::SBData GetData(lldb::SBTarget target);
/freebsd/libexec/rtld-elf/i386/
H A Drtld_machdep.h50 Elf_Addr reloc_jmpslot(Elf_Addr *where, Elf_Addr target,
57 #define call_initfini_pointer(obj, target) \ argument
58 (((InitFunc)(target))())
60 #define call_init_pointer(obj, target) \ argument
61 (((InitArrFunc)(target))(main_argc, main_argv, environ))
/freebsd/libexec/rtld-elf/powerpc/
H A Drtld_machdep.h49 Elf_Addr reloc_jmpslot(Elf_Addr *where, Elf_Addr target,
57 #define call_initfini_pointer(obj, target) \ argument
58 (((InitFunc)(target))())
60 #define call_init_pointer(obj, target) \ argument
61 (((InitArrFunc)(target))(main_argc, main_argv, environ))
H A Dreloc.c494 Elf_Addr target; in reloc_jmpslots() local
544 (void *)wherep, (void *)target); in reloc_jmpslot()
557 if (*wherep != target) in reloc_jmpslot()
558 *wherep = target; in reloc_jmpslot()
568 offset = target - (Elf_Addr)wherep; in reloc_jmpslot()
593 jmptab[reloff] = target; in reloc_jmpslot()
611 return (target); in reloc_jmpslot()
624 Elf_Addr *where, target, *ptr; in reloc_iresolve() local
639 *where = target; in reloc_iresolve()
656 *where = target; in reloc_iresolve()
[all …]
/freebsd/libexec/rtld-elf/powerpc64/
H A Drtld_machdep.h49 Elf_Addr reloc_jmpslot(Elf_Addr *where, Elf_Addr target,
57 #define call_initfini_pointer(obj, target) \ argument
58 (((InitFunc)(target))())
60 #define call_init_pointer(obj, target) \ argument
61 (((InitArrFunc)(target))(main_argc, main_argv, environ))
/freebsd/libexec/rtld-elf/riscv/
H A Drtld_machdep.h63 Elf_Addr reloc_jmpslot(Elf_Addr *where, Elf_Addr target,
70 #define call_initfini_pointer(obj, target) \ argument
74 (((InitFunc)(target))()); \
78 #define call_init_pointer(obj, target) \ argument
82 (((InitArrFunc)(target))(main_argc, main_argv, environ)); \
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectExpression.cpp218 auto_apply_fixits = target.GetEnableAutoApplyFixIts(); in GetEvaluateExpressionOptions()
223 options.SetRetriesWithFixIts(target.GetNumberOfRetriesWithFixits()); in GetEvaluateExpressionOptions()
359 Target &target = exe_target ? *exe_target : GetDummyTarget(); in HandleCompletion() local
393 lldb::UserExpressionSP expr(target.GetUserExpressionForLanguage( in HandleCompletion()
422 Target &target = exe_target ? *exe_target : GetDummyTarget(); in EvaluateExpression() local
439 ExpressionResults success = target.EvaluateExpression( in EvaluateExpression()
444 if (!m_fixed_expression.empty() && target.GetEnableNotifyAboutFixIts()) { in EvaluateExpression()
616 Target &target = GetSelectedOrDummyTarget(); in DoExecute() local
621 Debugger &debugger = target.GetDebugger(); in DoExecute()
641 repl_sp = target.GetREPL(repl_error, m_command_options.language, in DoExecute()
[all …]
/freebsd/libexec/rtld-elf/aarch64/
H A Dreloc.c259 Elf_Addr *where, target; in reloc_plt() local
290 target = (Elf_Addr)(defobj->relocbase + in reloc_plt()
296 *where = target; in reloc_plt()
335 Elf_Addr *where, target; in reloc_jmpslots() local
363 Elf_Addr *where, target, *ptr; in reloc_iresolve_one() local
368 target = call_ifunc_resolver(ptr); in reloc_iresolve_one()
370 *where = target; in reloc_iresolve_one()
414 Elf_Addr *where, target; in reloc_gnu_ifunc() local
450 if (*where != target && !ld_bind_not) in reloc_jmpslot()
451 *where = target; in reloc_jmpslot()
[all …]
/freebsd/contrib/sendmail/libsm/
H A Dfseek.c84 off_t target, curoff; local
216 target = offset;
221 target = st.st_size + offset;
267 if (target >= curoff && target < curoff + (off_t) n)
269 register int o = target - curoff;
289 curoff = target & ~(fp->f_blksize - 1);
297 n = target - curoff;
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DAddress.h201 Target *target);
217 bool GetDescription(Stream &s, Target &target,
288 lldb::addr_t GetLoadAddress(Target *target) const;
302 lldb::addr_t GetCallableLoadAddress(Target *target,
321 Target *target,
416 bool SetLoadAddress(lldb::addr_t load_addr, Target *target,
420 lldb::addr_t load_addr, Target *target,
424 bool SetCallableLoadAddress(lldb::addr_t load_addr, Target *target);
/freebsd/contrib/unbound/testdata/
H A Drpz_qtype_cname.rpl4 target-fetch-policy: "0 0 0 0 0"
21 www.gotham.a CNAME foo.target.a.
22 32.42.30.20.10.rpz-nsip CNAME foo.target.a.
64 target.a. IN A
66 target.a. IN A 1.2.3.6
80 www.gotham2.a. CNAME foo2.target.a.
99 www.gotham.a. IN CNAME foo.target.a.
117 www.gotham2.a. IN CNAME foo.target.a.
/freebsd/sys/contrib/device-tree/src/arm/ti/omap/
H A Domap4-l4.dtsi47 target-module@2000 { /* 0x4a002000, ap 3 06.0 */
89 target-module@4000 { /* 0x4a004000, ap 5 02.0 */
114 target-module@8000 { /* 0x4a008000, ap 23 32.0 */
139 target-module@56000 { /* 0x4a056000, ap 7 0a.0 */
176 target-module@58000 { /* 0x4a058000, ap 10 0e.0 */
235 target-module@5e000 { /* 0x4a05e000, ap 80 68.0 */
243 target-module@62000 { /* 0x4a062000, ap 11 16.0 */
270 target-module@64000 { /* 0x4a064000, ap 86 1e.0 */
320 target-module@66000 { /* 0x4a066000, ap 25 26.0 */
656 target-module@0 { /* 0x4a100000, ap 21 2a.0 */
[all …]
/freebsd/sys/dev/ata/chipsets/
H A Data-siliconimage.c208 ata_cmd_setmode(device_t dev, int target, int mode) in ata_cmd_setmode() argument
213 int devno = (ch->unit << 1) + target; in ata_cmd_setmode()
227 umode &= ~(target == 0 ? 0x35 : 0xca); in ata_cmd_setmode()
228 umode |= udmatimings[mode & ATA_MODE_MASK][target]; in ata_cmd_setmode()
234 ~(target == 0 ? 0x35 : 0xca), 1); in ata_cmd_setmode()
343 ata_sii_setmode(device_t dev, int target, int mode) in ata_sii_setmode() argument
348 int rego = (ch->unit << 4) + (target << 1); in ata_sii_setmode()
350 int mask = 0x03 << (target << 2); in ata_sii_setmode()
374 mval | (0x03 << (target << 2)), 1); in ata_sii_setmode()
381 mval | (0x02 << (target << 2)), 1); in ata_sii_setmode()
[all …]
/freebsd/sys/contrib/device-tree/Bindings/bus/
H A Dti-sysc.yaml7 title: Texas Instruments interconnect target module
13 Texas Instruments SoCs can have a generic interconnect target module
20 Each interconnect target module can have one or more devices connected to
24 The interconnect target module control registers are sprinkled into the
31 pattern: "^target-module(@[0-9a-f]+)?$"
58 Interconnect target module control registers consisting of
66 Interconnect target module control register names consisting
162 description: Interconnect target module shall not be reset at init
166 description: Interconnect target module shall not be idled at init
170 description: Interconnect target module shall not be idled
[all …]
/freebsd/crypto/openssl/Configurations/
H A Ddescrip.mms.tmpl108 join(',', @{$target{lib_defines}}, @{$target{shared_defines}},
121 join('', $target{lib_cppflags} || (), $target{shared_cppflags} || (),
132 join('', $target{lib_lflags} || (), $target{shared_ldflag} || (),
144 join(',', @{$target{dso_defines}}, @{$target{module_defines}},
151 join(' ', $target{dso_asflags} || (), $target{module_asflags} || (),
155 join('', $target{dso_cppflags} || (), $target{module_cppflags} || (),
168 join('', $target{dso_lflags} || (), $target{module_ldflag} || (),
709 WRITE CONFIG " target => '","{- $config{target} -}","',"
939 $args{target} : $deps
1013 $target : $gen0 $deps
[all …]
/freebsd/contrib/bmake/mk/
H A Ddoc.mk6 .if !target(__${_this}__)
28 .if !target(paper.ps)
33 .if !target(print)
38 .if !target(manpages)
42 .if !target(obj)
H A Ddep.mk6 .if !target(__${_this}__)
27 .if !target(${s:T:R}$e)
64 .if !target(depend)
109 .if !target(beforedepend)
112 .if !target(afterdepend)
118 .if !target(tags)
130 .if !target(cleandepend)
/freebsd/contrib/llvm-project/lld/ELF/
H A DRelocations.cpp948 target->tlsGotRel, *in.got, off, sym, target->symbolicRel); in addTpOffsetGotEntry()
1016 return target->usesOnlyLowPageBits(type); in isStaticLinkTimeConstant()
1139 RelType rel = target->getDynRel(type); in processAux()
1146 rel = target->relativeRel; in processAux()
1326 return target->getTlsGdRelaxSkip(type); in handleTlsRelocation()
1375 return target->getTlsGdRelaxSkip(type); in handleTlsRelocation()
1742 target->tlsDescRel); in postScanRelocations()
1992 if (target->inBranchRange(rel.type, src, in getISDThunkSec()
2003 if (!target->inBranchRange(rel.type, src, in getISDThunkSec()
2138 return target->partition == 1; in isThunkSectionCompatible()
[all …]

12345678910>>...86