Searched refs:we (Results 101 - 125 of 291) sorted by relevance

1234567891011>>

/freebsd-current/contrib/bmake/mk/
H A Dscripts.mk31 # how we get script name from src
47 # incase we are staging
H A Dautodep.mk57 # we also need to handle makefiles where the .d's from __depsrcs
59 # we avoid using := here, since the modifier applied to OBJS
64 # clean up any .c files we may have generated
72 # we "fix" the .o later
89 # so we can do an explicit make depend, but not otherwise
173 # this ensures we do the right thing if only building a shared or
206 # we do not want to trigger building .d's just use them if they exist
H A Dcompiler.mk42 # just in case we don't recognize compiler
/freebsd-current/contrib/bmake/unit-tests/
H A Dvarmisc.exp69 target1-flags: we have: one two
70 target2-flags: we have: one two three four
H A Dposix1.mk8 # we need to clean for repeatable results
164 # we shouldn't be expanding them here but who cares. At least we get
176 # Hey, this is make, we can make our own test data setup! obj1.c
H A Dexport.mk8 # believe it or not, we expect this one to come out with $UT_FU unexpanded.
H A Dvarname-dot-make-jobs.mk19 # These results will not be static, we need NCPU
/freebsd-current/share/mk/
H A Dsrc.sys.obj.mk38 # but don't enforce TARGET.TARGET_ARCH unless we're at the top-level directory.
65 # this is what we use below
115 # __objdir is the expected .OBJDIR we want to use and that auto.obj.mk will
119 # we are already in obj tree!
128 # Try to enable MK_AUTO_OBJ by default if we can write to the __objdir. Only
137 # Find the last existing directory component and check if we can write to it.
204 # The OBJDIR we wanted does not yet exist, ensure we default to safe .CURDIR
H A Dbsd.files.mk106 # we cannot use file safely as a set name
107 # since we cannot? apply :T
108 # but we can use the ${group}DIR_${file}
110 # we need to expand ${group}DIR_${file} and replace
/freebsd-current/usr.sbin/apmd/
H A Dapmd.c221 * direction =1 means we care about this level when charging,
222 * direction =-1 means we care about it when discharging.
230 struct battery_watch_event *we; local
232 if ((we = malloc(sizeof(struct battery_watch_event))) == NULL)
235 we->next = battery_watch_list; /* starts at NULL */
236 battery_watch_list = we;
237 we->level = abs(level);
238 we->type = (level<0)?BATTERY_MINUTES:BATTERY_PERCENT;
239 we->direction = (direction<0)?BATTERY_DISCHARGING:
241 we
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/Support/Unix/
H A DProgram.inc209 // If we call posix_spawn_file_actions_addopen we have to make sure the
210 // c strings we pass to it stay alive until the call to posix_spawn,
211 // so we copy any StringRefs into this variable.
322 // If the execve() failed, we should exit. Follow Unix protocol and
369 // For WNOHANG, we use waitid (which supports WNOWAIT) until the child process
407 // with EINTR, unlike if we used SIG_IGN.
479 // so we can return -1 for them and set ErrMsg informatively.
580 // Ensure that we do not exceed the MAX_ARG_STRLEN constant on Linux, which
H A DDynamicLibrary.inc78 // SearchForAddressOfSymbol to find them. As such, we special case them here,
85 // FIXME: Currently disabled when using Clang, as we don't always have our
109 // Under glibc we have a weird situation. The stderr/out/in symbols are both
110 // macros and global variables because of standards requirements. So, we
119 // For everything else, we want to check to make sure the symbol isn't defined
H A DMemory.inc80 // On platforms that have it, we can use MAP_ANON to get a memory-mapped
81 // page without file backing, but we need a fallback of opening /dev/zero
184 // Therefore we need to temporarily add PROT_READ for the sake of flushing the
243 // FIXME: Can we safely always call this for __GNUC__ everywhere?
/freebsd-current/stand/lua/
H A Dhook.lua66 -- module load, so if this hasn't happened then we have messed
67 -- up the order in which we've loaded modules and we need to
/freebsd-current/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/privs/
H A Dtst.fds.ksh36 * Note that we are explicitly not looking at fi_mount -- it (by design) does
/freebsd-current/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pragma/
H A Dtst.temporal.ksh55 /* Bump @lines every time we print a line. */
/freebsd-current/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_trampoline_powerpc64_asm.S10 # floating point, and vector parameters, so that we only spill those live ones.
151 # floating point, and vector parameters, so that we only spill those live ones.
/freebsd-current/tools/test/stress2/misc/
H A Dkevent9.sh127 // Sometimes we miss a NOTE_EXIT. If it hasn't arrived by the timeout, bail out since
/freebsd-current/cddl/usr.sbin/dtrace/tests/
H A Ddtrace.test.mk44 # Test programs shouldn't be stripped; else we generally can't use the PID
/freebsd-current/contrib/bmake/
H A Dbsd.after-import.mk6 # capture the generated files we need, and add an after-import
15 # we rely on bmake
68 # These are the simple files we want to capture
112 echo; echo '# make sure we get this'; \
/freebsd-current/contrib/llvm-project/lldb/bindings/interface/
H A DSBThreadExtensions.i6 # operator== is a free function, which swig does not handle, so we inject
50 return_value = property(GetStopReturnValue, None, doc='''A read only property that returns an lldb object that represents the return value from the last stop (lldb.SBValue) if we just stopped due to stepping out of a function.''')
H A DSBAddressExtensions.i6 # operator== is a free function, which swig does not handle, so we inject
/freebsd-current/lib/libclang_rt/
H A Dcompiler-rt-vars.mk6 # armv[67] is a bit special since we allow a soft-floating version via
/freebsd-current/sys/conf/
H A Dkern.mk51 # Catch-all for all the things that are in our tree, but for which we're
152 # For RISC-V we specify the soft-float ABI (lp64) to avoid the use of floating
153 # point registers within the kernel. However, we include the F and D extensions
154 # in -march so we can have limited floating point support in context switching
155 # code. This is different than userland where we use a hard-float ABI (lp64d).
175 # For AMD64, we explicitly prohibit the use of FPU, SSE and other SIMD
196 # For PowerPC we tell gcc to use floating point emulation. This avoids using
227 # use of signed integer wraparound mechanics so we need the compiler
301 # Note: Clang does not like relative paths for ld so we map ld.lld -> lld.
308 # GCC does not support an absolute path for -fuse-ld so we jus
[all...]
/freebsd-current/share/examples/flua/
H A Dlibjail.lua38 -- Make sure we don't have a demo jail to start with; "jid" and "name" are
58 -- Get all the parameters of the jail we created.
67 -- Confirm that we still have it for now.

Completed in 399 milliseconds

1234567891011>>