HomeSort by: relevance | last modified time | path
    Searched refs:change (Results 1 - 25 of 158) sorted by relevancy

1 2 3 4 5 6 7

  /src/games/ching/castching/
castching.c 54 * castching - Read a question, cast a change, and output the line
70 static char *change(void);
72 static char string[6+1]; /* where the actual change string is put */
86 printf("%s\n", change());
106 * Get a set of six lines making up a change.
109 change(void) function in typeref:typename:char *
  /src/sys/ufs/chfs/
chfs_vnode.c 335 * "change" parameter is positive if we have to increase the size
340 struct chfs_eraseblock *cheb, int change)
343 KASSERT((int)(chmp->chm_free_size + change) >= 0);
344 KASSERT((int)(cheb->free_size + change) >= 0);
345 KASSERT((int)(cheb->free_size + change) <= chmp->chm_ebh->eb_size);
346 chmp->chm_free_size += change;
347 cheb->free_size += change;
353 * "change" parameter is positive if we have to increase the size
358 struct chfs_eraseblock *cheb, int change)
361 KASSERT((int)(chmp->chm_dirty_size + change) >= 0)
    [all...]
  /src/tests/net/route/
Makefile 8 .for name in change flags flags6 route rtcache
t_change.sh 46 atf_set "descr" "Change a reject route to blackhole"
60 rump.route change 207.46.197.32 127.0.0.1 -blackhole
75 atf_set "descr" "Change the gateway of a route"
93 rump.route change -net 192.168.0.0/24 10.0.0.254
108 atf_set "descr" "Change the ifa (local address) of a route"
143 # Change the local address of the route
145 rump.route change -net 192.168.0.0/24 10.0.0.1 -ifa 10.0.0.11
173 atf_set "descr" "Change a route based on an interface (ifp)"
210 # Change a route based on an interface
212 rump.route change -net 192.168.0.0/24 10.0.0.1 -ifp shmif
    [all...]
  /src/sbin/gpt/
remove.c 69 change(struct gpt_ent *ent, void *v __unused, int backup __unused) function in typeref:typename:void
92 return gpt_change_ent(gpt, &find, change, NULL);
type.c 70 change(struct gpt_ent *ent, void *v, int backup __unused) function in typeref:typename:void
114 return gpt_change_ent(gpt, &find, change, &newtype);
label.c 71 change(struct gpt_ent *ent, void *v, int backup __unused) function in typeref:typename:void
161 return gpt_change_ent(gpt, &find, change, name);
  /src/usr.bin/make/unit-tests/
cond-func-target.mk 22 # Adding a comment to an existing target does not change whether the target
31 # Adding a command to an existing target does not change whether the target
var-readonly.mk 21 # now we can change it
opt-chdir.mk 19 # Trying to change to a nonexistent directory exits immediately.
cond-late.mk 33 # If the order of evaluation were to change to first parse the condition
34 # and then expand the variables, the output would change from the
  /src/games/hack/
hack.tty.c 178 int change = 0; local in function:setftty
184 change++;
191 change++;
193 if (change) {
  /src/sys/external/gpl2/dts/dist/arch/riscv/boot/dts/renesas/
r9a07g043f01-smarc.dts 15 * Please change below macros according to SW1 setting on the SoM
  /src/usr.sbin/screenblank/
screenblank.c 98 int ch, change, fflag = 0, kflag = 0, mflag = 0, state; local in function:main
243 change = 0;
254 change = 1;
258 change = 1;
264 if (!change) {
270 if (change) {
380 /* Don't change the state of non-framebuffers! */
  /src/sys/dev/usb/
uhub.c 78 "int"/*change*/,
89 "int"/*change*/);
539 int change, status, reconnect, rescan; local in function:uhub_explore
573 if (PORTSTAT_ISSET(sc, 0)) { /* hub status change */
583 change = UGETW(hs.wHubChange);
585 dev, /*portno*/0, status, change, /*reattach*/0);
587 status, change, 0);
589 if (change & UHS_LOCAL_POWER)
592 if (change & UHS_OVER_CURRENT)
605 status = change = 0
    [all...]
  /src/sys/ufs/lfs/
ulfs_quota2_subr.c 114 lfsquota_check_limit(uint64_t cur, uint64_t change, uint64_t soft, uint64_t hard,
117 if (cur + change > hard) {
121 } else if (cur + change > soft) {
ulfs_quota1.c 64 lfs_chkdq1(struct inode *ip, int64_t change, kauth_cred_t cred, int flags)
72 if (change == 0)
74 if (change < 0) {
79 ncurblocks = dq->dq_curblocks + change;
98 error = chkdqchg(ip, change, cred, i);
108 dq->dq_curblocks += change;
116 * Check for a valid change to a users allocation.
120 chkdqchg(struct inode *ip, int64_t change, kauth_cred_t cred, int type)
123 long ncurblocks = dq->dq_curblocks + change;
172 lfs_chkiq1(struct inode *ip, int32_t change, kauth_cred_t cred, int flags
    [all...]
  /src/sys/ufs/ufs/
quota2_subr.c 112 quota_check_limit(uint64_t cur, uint64_t change, uint64_t soft, uint64_t hard,
115 if (cur + change > hard) {
119 } else if (cur + change > soft) {
ufs_quota1.c 63 chkdq1(struct inode *ip, int64_t change, kauth_cred_t cred, int flags)
71 if (change == 0)
73 if (change < 0) {
78 ncurblocks = dq->dq_curblocks + change;
97 error = chkdqchg(ip, change, cred, i);
107 dq->dq_curblocks += change;
115 * Check for a valid change to a users allocation.
119 chkdqchg(struct inode *ip, int64_t change, kauth_cred_t cred, int type)
122 long ncurblocks = dq->dq_curblocks + change;
171 chkiq1(struct inode *ip, int32_t change, kauth_cred_t cred, int flags
    [all...]
  /src/sys/compat/linux/common/
linux_cdrom.h 166 u_int8_t change : 1; member in struct:linux_cdrom_slot
168 u_int8_t change : 1;
  /src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/
sunxi-bananapi-m2-plus-v1.2.dtsi 10 * Bananapi M2+ v1.2 uses a GPIO line to change the effective
  /src/sbin/route/
keywords.sh 5 # WARNING! If you change this file, re-run it!
14 change
  /src/sys/arch/sun2/sun2/
locore.s 356 | (so debugger can change the stack pointer)
545 * making a change until it sticks. This is apparently to
  /src/share/mk/
bsd.ioconf.mk 23 # config doesn't change the files if they're unchanged. however,
  /src/libexec/ld.elf_so/arch/i386/
rtld_start.S 87 leal 4(%esp),%esp # Discard reloff, do not change eflags

Completed in 23 milliseconds

1 2 3 4 5 6 7