Searched refs:target (Results 76 - 100 of 1432) sorted by relevance

1234567891011>>

/freebsd-11-stable/libexec/rtld-elf/i386/
H A Drtld_machdep.h41 Elf_Addr reloc_jmpslot(Elf_Addr *where, Elf_Addr target,
48 #define call_initfini_pointer(obj, target) \
49 (((InitFunc)(target))())
51 #define call_init_pointer(obj, target) \
52 (((InitArrFunc)(target))(main_argc, main_argv, environ))
/freebsd-11-stable/libexec/rtld-elf/powerpc/
H A Drtld_machdep.h40 Elf_Addr reloc_jmpslot(Elf_Addr *where, Elf_Addr target,
47 #define call_initfini_pointer(obj, target) \
48 (((InitFunc)(target))())
50 #define call_init_pointer(obj, target) \
51 (((InitArrFunc)(target))(main_argc, main_argv, environ))
/freebsd-11-stable/libexec/rtld-elf/mips/
H A Drtld_machdep.h41 Elf_Addr reloc_jmpslot(Elf_Addr *where, Elf_Addr target,
48 #define call_initfini_pointer(obj, target) \
49 (((InitFunc)(target))())
51 #define call_init_pointer(obj, target) \
52 (((InitArrFunc)(target))(main_argc, main_argv, environ))
/freebsd-11-stable/libexec/rtld-elf/amd64/
H A Drtld_machdep.h41 Elf_Addr reloc_jmpslot(Elf_Addr *where, Elf_Addr target,
48 #define call_initfini_pointer(obj, target) \
49 (((InitFunc)(target))())
51 #define call_init_pointer(obj, target) \
52 (((InitArrFunc)(target))(main_argc, main_argv, environ))
/freebsd-11-stable/libexec/rtld-elf/arm/
H A Drtld_machdep.h40 Elf_Addr reloc_jmpslot(Elf_Addr *where, Elf_Addr target,
47 #define call_initfini_pointer(obj, target) \
48 (((InitFunc)(target))())
50 #define call_init_pointer(obj, target) \
51 (((InitArrFunc)(target))(main_argc, main_argv, environ))
/freebsd-11-stable/libexec/rtld-elf/aarch64/
H A Drtld_machdep.h49 Elf_Addr reloc_jmpslot(Elf_Addr *where, Elf_Addr target,
56 #define call_initfini_pointer(obj, target) \
57 (((InitFunc)(target))())
59 #define call_init_pointer(obj, target) \
60 (((InitArrFunc)(target))(main_argc, main_argv, environ))
/freebsd-11-stable/libexec/rtld-elf/powerpc64/
H A Drtld_machdep.h40 Elf_Addr reloc_jmpslot(Elf_Addr *where, Elf_Addr target,
47 #define call_initfini_pointer(obj, target) \
48 (((InitFunc)(target))())
50 #define call_init_pointer(obj, target) \
51 (((InitArrFunc)(target))(main_argc, main_argv, environ))
/freebsd-11-stable/libexec/rtld-elf/riscv/
H A Drtld_machdep.h56 Elf_Addr reloc_jmpslot(Elf_Addr *where, Elf_Addr target,
63 #define call_initfini_pointer(obj, target) \
67 (((InitFunc)(target))()); \
71 #define call_init_pointer(obj, target) \
75 (((InitArrFunc)(target))(main_argc, main_argv, environ)); \
/freebsd-11-stable/sys/contrib/ck/include/gcc/ppc64/
H A Dck_pr.h93 ck_pr_md_load_##S(const M *target) \
98 : "m" (*(const C *)target) \
124 ck_pr_md_store_##S(M *target, T v) \
127 : "=m" (*(C *)target) \
153 ck_pr_cas_64_value(uint64_t *target, uint64_t compare, uint64_t set, uint64_t *value) argument
165 : "r" (target),
175 ck_pr_cas_ptr_value(void *target, void *compare, void *set, void *value) argument
187 : "r" (target),
197 ck_pr_cas_64(uint64_t *target, uint64_t compare, uint64_t set) argument
209 : "r" (target),
218 ck_pr_cas_ptr(void *target, void *compare, void *set) argument
384 ck_pr_faa_ptr(void *target, uintptr_t delta) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DConvertUTF.cpp149 UTF16* target = *targetStart; local
152 if (target >= targetEnd) {
164 *target++ = UNI_REPLACEMENT_CHAR;
167 *target++ = (UTF16)ch; /* normal case */
173 *target++ = UNI_REPLACEMENT_CHAR;
176 /* target is a character in range 0xFFFF - 0x10FFFF. */
177 if (target + 1 >= targetEnd) {
182 *target++ = (UTF16)((ch >> halfShift) + UNI_SUR_HIGH_START);
183 *target++ = (UTF16)((ch & halfMask) + UNI_SUR_LOW_START);
187 *targetStart = target;
198 UTF32* target = *targetStart; local
252 UTF8* target = *targetStart; local
322 UTF8* target = *targetStart; local
546 UTF16* target = *targetStart; local
620 UTF32* target = *targetStart; local
[all...]
/freebsd-11-stable/sys/contrib/ck/include/gcc/arm/
H A Dck_pr.h110 ck_pr_md_load_##S(const M *target) \
115 : "r" (target) \
139 ck_pr_md_load_##N(const T *target) \
145 : "r" (target) \
159 ck_pr_md_store_##S(M *target, T v) \
163 : "r" (target), \
188 ck_pr_md_store_##N(const T *target, T value) \
199 : "r" (target), "r" (value) \
212 ck_pr_cas_##N##_value(T *target, T compare, T set, T *value) \
227 "r"(target) \
241 ck_pr_cas_ptr_2_value(void *target, void *compare, void *set, void *value) argument
285 ck_pr_cas_ptr_2(void *target, void *compare, void *set) argument
299 ck_pr_cas_ptr_value(void *target, void *compare, void *set, void *value) argument
320 ck_pr_cas_ptr(void *target, void *compare, void *set) argument
512 ck_pr_faa_ptr(void *target, uintptr_t delta) argument
[all...]
/freebsd-11-stable/contrib/subversion/subversion/svnbench/
H A Dutil.c74 svn_cl__check_target_is_local_path(const char *target)
76 if (svn_path_is_url(target))
78 _("'%s' is not a local path"), target);
72 svn_cl__check_target_is_local_path(const char *target) argument
/freebsd-11-stable/contrib/bmake/mk/
H A Ddoc.mk3 .if !target(__${.PARSEFILE}__)
19 .if !target(all)
24 .if !target(paper.ps)
29 .if !target(print)
34 .if !target(manpages)
38 .if !target(obj)
/freebsd-11-stable/crypto/openssl/util/pl/
H A DBC-32.pl99 local($objs,$target,$name,$shlib)=@_;
105 # $target="\$(LIB_D)$o$target";
106 $ret.="$target: $objs\n";
110 -\$(RM) $lfile$target
111 \$(MKLIB) $lfile$target \@&&!
119 local($ex)=($target =~ /O_SSL/)?' $(L_CRYPTO)':'';
121 $ret.="\t\$(LINK_CMD) \$(MLFLAGS) $efile$target /def:ms/${Name}.def @<<\n \$(SHLIB_EX_OBJ) $objs $ex\n<<\n";
129 local($target,$files,$dep_libs,$libs)=@_;
133 $n=&bname($target);
[all...]
/freebsd-11-stable/sys/contrib/ck/include/gcc/aarch64/
H A Dck_pr_llsc.h36 ck_pr_cas_64_2_value(uint64_t target[2], uint64_t compare[2], uint64_t set[2], uint64_t value[2]) argument
54 : "r" (target), "r" (compare[0]), "r" (compare[1]), "r" (set[0]), "r" (set[1])
61 ck_pr_cas_ptr_2_value(void *target, void *compare, void *set, void *value) argument
63 return (ck_pr_cas_64_2_value(CK_CPP_CAST(uint64_t *, target),
70 ck_pr_cas_64_2(uint64_t target[2], uint64_t compare[2], uint64_t set[2]) argument
86 : "r" (target), "r" (compare[0]), "r" (compare[1]), "r" (set[0]), "r" (set[1])
92 ck_pr_cas_ptr_2(void *target, void *compare, void *set) argument
94 return (ck_pr_cas_64_2(CK_CPP_CAST(uint64_t *, target),
102 ck_pr_cas_##N##_value(M *target, T compare, T set, M *value) \
115 : "r" (target), \
284 ck_pr_faa_ptr(void *target, uintptr_t delta) argument
304 ck_pr_faa_64(uint64_t *target, uint64_t delta) argument
[all...]
H A Dck_pr_lse.h37 ck_pr_cas_64_2_value(uint64_t target[2], uint64_t compare[2], uint64_t set[2], uint64_t value[2]) argument
51 : "r" (x2), "r" (x3), "r" (target), "r" (compare[0]), "r" (compare[1])
61 ck_pr_cas_ptr_2_value(void *target, void *compare, void *set, void *value) argument
63 return (ck_pr_cas_64_2_value(CK_CPP_CAST(uint64_t *, target),
70 ck_pr_cas_64_2(uint64_t target[2], uint64_t compare[2], uint64_t set[2]) argument
82 : "r" (x2), "r" (x3), "r" (target), "r" (compare[0]), "r" (compare[1])
88 ck_pr_cas_ptr_2(void *target, void *compare, void *set) argument
90 return (ck_pr_cas_64_2(CK_CPP_CAST(uint64_t *, target),
98 ck_pr_cas_##N##_value(M *target, T compare, T set, M *value) \
104 : "r" (target), \
245 ck_pr_faa_ptr(void *target, uintptr_t delta) argument
260 ck_pr_faa_64(uint64_t *target, uint64_t delta) argument
[all...]
/freebsd-11-stable/contrib/binutils/
H A Dylwrap149 [\\/]* | ?:[\\/]*) target="$2";;
150 *) target="../$2";;
160 realtarget="$target"
161 target="tmp-`echo $target | sed s/.*[\\/]//g`"
181 -e "s,$FROM,$TARGET," "$from" >"$target" || ret=$?
185 if test -f "$realtarget" && cmp -s "$realtarget" "$target"; then
187 rm -f "$target"
190 mv -f "$target" "$realtarget"
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid/
H A Dtst.main.ksh48 pid\$target::main:entry
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ustack/
H A Dtst.depth.ksh44 pid\$target:::entry,
45 pid\$target:::return,
46 pid\$target:a.out::,
49 /pid == \$target/
/freebsd-11-stable/sys/dev/ata/chipsets/
H A Data-ite.c56 static int ata_ite_821x_setmode(device_t dev, int target, int mode);
57 static int ata_ite_8213_setmode(device_t dev, int target, int mode);
126 ata_ite_821x_setmode(device_t dev, int target, int mode) argument
131 int devno = (ch->unit << 1) + target;
154 0x56 + (ch->unit << 2) + target,
172 ata_ite_8213_setmode(device_t dev, int target, int mode) argument
192 !(reg54 & (0x10 << target))) {
198 pci_write_config(parent, 0x48, reg48 | (0x0001 << target), 2);
200 (reg4a & ~(0x3 << (target << 2))) |
201 (utimings[mode & ATA_MODE_MASK] << (target<<
[all...]
/freebsd-11-stable/contrib/openbsm/config/
H A Dylwrap161 [\\/]* | ?:[\\/]*) target="$2";;
162 *) target="../$2";;
172 realtarget="$target"
173 target="tmp-`echo $target | sed s/.*[\\/]//g`"
189 -e "s,$FROM,$TARGET," "$from" >"$target" || ret=$?
193 if test -f "$realtarget" && cmp -s "$realtarget" "$target"; then
195 rm -f "$target"
198 mv -f "$target" "$realtarget"
/freebsd-11-stable/sys/contrib/ck/include/gcc/ppc/
H A Dck_pr.h98 ck_pr_md_load_##S(const M *target) \
103 : "m" (*(const C *)target) \
125 ck_pr_md_store_##S(M *target, T v) \
128 : "=m" (*(C *)target) \
151 ck_pr_cas_##N##_value(M *target, T compare, T set, M *value) \
162 : "r" (target), \
170 ck_pr_cas_##N(M *target, T compare, T set) \
181 : "r" (target), \
199 ck_pr_fas_##N(M *target, T v) \
207 : "r" (target), \
292 ck_pr_faa_ptr(void *target, uintptr_t delta) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Windows/
H A DHost.inc26 // Override the default target with an environment variable named by LLVM_TARGET_TRIPLE_ENV.
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Instruction/MIPS64/
H A DEmulateInstructionMIPS64.cpp66 const llvm::Target *target = local
70 * If we fail to get the target then we haven't registered it. The
78 if (!target) {
84 target = llvm::TargetRegistry::lookupTarget(triple.getTriple(), Status);
88 assert(target);
151 m_reg_info.reset(target->createMCRegInfo(triple.getTriple()));
154 m_insn_info.reset(target->createMCInstrInfo());
159 target->createMCAsmInfo(*m_reg_info, triple.getTriple(), MCOptions));
161 target->createMCSubtargetInfo(triple.getTriple(), cpu, features));
168 m_disasm.reset(target
1345 int64_t offset, pc, rs_val, rt_val, target = 0; local
1396 int64_t offset, pc, target = 0; local
1440 int64_t offset, pc, target; local
1471 int64_t offset, pc, target; local
1507 int64_t offset, pc, rs_val, target = 0; local
1575 int64_t offset, pc, rs_val, target = 0; local
1626 int64_t offset, pc, target; local
1660 int64_t offset, pc, rs_val, rt_val, target = 0; local
1739 int64_t offset, pc, target = 0; local
1822 uint64_t offset, target, pc; local
1889 int64_t target, offset, pc, rt_val; local
1927 int64_t target, offset, rt_val; local
1980 int64_t pc, offset, target = 0; local
2027 int64_t target, pc, offset; local
2063 int64_t target, pc, offset; local
2105 int64_t pc, offset, target = 0; local
2191 int64_t target = 0; local
2258 int64_t target = 0; local
[all...]
/freebsd-11-stable/
H A DMakefile43 # native-xtools - Create host binaries that produce target objects
80 # [steps 3. & 4. can be combined by using the "kernel" target]
92 # cross build world for other machine types using the buildworld target,
94 # buildkernel target.
290 # The historic default "all" target creates files which may cause stale
292 # when no target is given. The users can explicitly specify "all"
298 @echo "Explicit target required. Likely \"${SUBDIR_OVERRIDE:Dall:Ubuildworld}\" is wanted. See build(7)."
312 # Attempt to rebuild and reinstall everything. This target is not to be
314 # not included. One can argue that this target doesn't build everything
321 .if target(pr
[all...]

Completed in 244 milliseconds

1234567891011>>