/src/usr.bin/make/unit-tests/ |
deptgt-main.exp | 1 This target real-main is the one that is made.
|
varmod-path.exp | 2 varmod-path.subdir/varmod-path.real
|
varmod-path.mk | 10 # In this test, the real target is located in a subdirectory, and its full 22 _!= > varmod-path.subdir/varmod-path.real 29 varmod-path.real: 31 all: varmod-path.phony varmod-path.real 33 @echo ${varmod-path.real:P}
|
varname-dot-alltargets.mk | 18 # Only first and second are "real" targets.
|
/src/sys/arch/powerpc/powerpc/ |
ofwmagic.S | 56 # real mode (-1) or virtual mode (0) 59 # real-base 61 # real-size
|
/src/sys/external/bsd/compiler_rt/dist/lib/interception/ |
interception_linux.cc | 28 uptr real, uptr wrapper) { 39 // want the address of the real definition, though, so look it up using 43 return real == wrapper;
|
interception_linux.h | 28 uptr real, uptr wrapper);
|
/src/sys/external/bsd/compiler_rt/dist/lib/builtins/ppc/ |
divtc3.c | 40 DD real = { .ld = __gcc_qdiv(realNumerator, denom) }; local in function:__divtc3 43 real.s.hi = crt_scalbn(real.s.hi, -ilogbw); 44 real.s.lo = crt_scalbn(real.s.lo, -ilogbw); 48 if (crt_isnan(real.s.hi) && crt_isnan(imag.s.hi)) 57 real.s.hi = crt_copysign(CRT_INFINITY,cDD.s.hi) * aDD.s.hi; 58 real.s.lo = 0.0; 68 real.s.hi = CRT_INFINITY * (aDD.s.hi*cDD.s.hi + bDD.s.hi*dDD.s.hi); 69 real.s.lo = 0.0 [all...] |
multc3.c | 28 DD real = { .ld = __gcc_qsub(ac,bd) }; local in function:__multc3 31 if (crt_isnan(real.s.hi) && crt_isnan(imag.s.hi)) 78 real.s.hi = CRT_INFINITY * (aDD.s.hi*cDD.s.hi - bDD.s.hi*dDD.s.hi); 79 real.s.lo = 0.0; 86 __real__ z = real.ld;
|
/src/sys/arch/i386/stand/lib/ |
biosgetsystime.S | 39 call _C_LABEL(prot_to_real) # enter real mode
|
conio.S | 17 call _C_LABEL(prot_to_real) # enter real mode 45 call _C_LABEL(prot_to_real) # enter real mode 66 call _C_LABEL(prot_to_real) # enter real mode 88 call _C_LABEL(prot_to_real) # enter real mode 112 call _C_LABEL(prot_to_real) # enter real mode
|
biosgetrtc.S | 37 call _C_LABEL(prot_to_real) # enter real mode
|
comio.S | 24 call _C_LABEL(prot_to_real) # enter real mode 61 call _C_LABEL(prot_to_real) # enter real mode 97 call _C_LABEL(prot_to_real) # enter real mode 130 call _C_LABEL(prot_to_real) # enter real mode
|
bios_disk.S | 70 call _C_LABEL(prot_to_real) # enter real mode 118 call _C_LABEL(prot_to_real) # enter real mode 154 call _C_LABEL(prot_to_real) # enter real mode 208 call _C_LABEL(prot_to_real) # enter real mode 234 * must be a real mode physical address). 245 call _C_LABEL(prot_to_real) # enter real mode 277 call _C_LABEL(prot_to_real) # enter real mode
|
/src/sys/arch/i386/stand/pxeboot/ |
pxe_call.S | 58 call _C_LABEL(prot_to_real) # enter real mode 68 calll _C_LABEL(real_to_prot) # leave real mode 90 call _C_LABEL(prot_to_real) # enter real mode 103 calll _C_LABEL(real_to_prot) # leave real mode
|
/src/sys/external/bsd/compiler_rt/dist/lib/builtins/ |
int_types.h | 157 typedef struct { float real, imaginary; } Fcomplex; member in struct:__anon692d56bb0d08 159 typedef struct { double real, imaginary; } Dcomplex; member in struct:__anon692d56bb0e08 161 typedef struct { long double real, imaginary; } Lcomplex; member in struct:__anon692d56bb0f08 163 #define COMPLEX_REAL(x) (x).real
|
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
sanitizer_win_weak_interception.cc | 32 uptr real = __interception::InternalGetProcAddress( local in function:__sanitizer::interceptWhenPossible 34 if (real && !__interception::OverrideFunction((uptr)dll_function, real, 0))
|
sanitizer_netbsd.cc | 79 void *real = dlsym(RTLD_NEXT, symbol); local in function:__sanitizer::GetRealLibcAddress 80 if (!real) 81 real = dlsym(RTLD_DEFAULT, symbol); 82 if (!real) { 86 return real; 89 #define _REAL(func, ...) real##_##func(__VA_ARGS__)
|
/src/sys/arch/ofppc/stand/ofwboot/ |
ofwstart.S | 56 # real mode (-1) or virtual mode (0) 58 # real-base 60 # real-size
|
/src/lib/libc/compat/arch/hppa/sys/ |
compat___sigtramp1.S | 75 ldw 0(%arg3), %arg3 ; load real catcher address
|
/src/sys/arch/hppa/hppa/ |
sigcode.S | 80 ldw 0(%arg3), %arg3 ; load real catcher address
|
/src/sys/arch/shark/shark/ |
profile.c | 195 int real, backup; local in function:profread 216 real = 0; 223 real = 1; 238 phashTables[backup]->hdr.tableSize = phashTables[real]->hdr.tableSize; 240 = phashTables[real]->hdr.entries; 244 phashTables[backup]->hdr.pid = phashTables[real]->hdr.pid; 245 phashTables[backup]->hdr.mode = phashTables[real]->hdr.mode; 257 if ( (error = uiomove(phashTables[real], 265 if ( (error = uiomove(phashTables[real]->entries, 266 phashTables[real]->hdr.tableSize * [all...] |
/src/lib/libc/locale/ |
nb_lc_template.h | 111 _PREFIX(load_sub)(const char * __restrict name, const char * __restrict real, 158 if (real != NULL) { 162 strlcpy(&p->name[0], real, sizeof(p->name));
|
/src/sys/external/bsd/compiler_rt/dist/lib/asan/scripts/ |
asan_device_setup | 200 adb_shell mv /system/bin/app_process.real /system/bin/app_process 202 elif ! adb_shell ls -l /system/bin/app_process64.real | grep -o 'No such file or directory' >&/dev/null; then 204 adb_shell mv /system/bin/app_process32.real /system/bin/app_process32 205 adb_shell mv /system/bin/app_process64.real /system/bin/app_process64 271 if adb_pull /system/bin/app_process.real /dev/null >&/dev/null; then 273 adb_shell mv /system/bin/app_process.real /system/bin/app_process 286 adb_pull /system/bin/app_process32.real "$TMPDIROLD" || true 288 adb_pull /system/bin/app_process64.real "$TMPDIROLD" || true 299 if [[ -f "$TMPDIR/app_process.wrap" || -f "$TMPDIR/app_process64.real" ]]; then 353 if [[ ! -f "$TMPDIR/app_process64.real" ]]; the [all...] |
/src/sys/external/gpl2/dts/dist/arch/arm64/boot/dts/freescale/ |
imx8qxp-colibri-eval-v3.dtsi | 32 /* M41T0M6 real time clock on carrier board */
|