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

1 2 3 4 5 6 7 8 91011>>

  /src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/
axm5516-cpus.dtsi 77 cpu-release-addr = <0>; // Fixed by the boot loader
85 cpu-release-addr = <0>; // Fixed by the boot loader
93 cpu-release-addr = <0>; // Fixed by the boot loader
101 cpu-release-addr = <0>; // Fixed by the boot loader
109 cpu-release-addr = <0>; // Fixed by the boot loader
117 cpu-release-addr = <0>; // Fixed by the boot loader
125 cpu-release-addr = <0>; // Fixed by the boot loader
133 cpu-release-addr = <0>; // Fixed by the boot loader
141 cpu-release-addr = <0>; // Fixed by the boot loader
149 cpu-release-addr = <0>; // Fixed by the boot loade
    [all...]
exynos5420-cpus.dtsi 15 * booting cluster (big or LITTLE) is chosen by IROM code by reading
16 * the gpg2-1 GPIO. By default all Exynos5422 based boards choose booting
65 #cooling-cells = <2>; /* min followed by max */
77 #cooling-cells = <2>; /* min followed by max */
89 #cooling-cells = <2>; /* min followed by max */
101 #cooling-cells = <2>; /* min followed by max */
113 #cooling-cells = <2>; /* min followed by max */
125 #cooling-cells = <2>; /* min followed by max */
137 #cooling-cells = <2>; /* min followed by max *
    [all...]
exynos5422-cpus.dtsi 14 * booting cluster (big or LITTLE) is chosen by IROM code by reading
15 * the gpg2-1 GPIO. By default all Exynos5422 based boards choose booting
64 #cooling-cells = <2>; /* min followed by max */
77 #cooling-cells = <2>; /* min followed by max */
90 #cooling-cells = <2>; /* min followed by max */
103 #cooling-cells = <2>; /* min followed by max */
116 #cooling-cells = <2>; /* min followed by max */
129 #cooling-cells = <2>; /* min followed by max */
142 #cooling-cells = <2>; /* min followed by max *
    [all...]
  /src/usr.bin/make/unit-tests/
job-flags.mk 3 # Tests for Job.flags, which are controlled by special source dependencies
24 # to ignore mode by prefixing them with a '-'.
26 # This also works if the '-' is indented by a space or a tab.
27 # Leading whitespace is stripped off by ParseLine_ShellCommand.
posix-execution.exp 10 echo 'do-prefix-plus: prefixed by plus'
11 do-prefix-plus: prefixed by plus
15 echo 'do-prefix-plus: prefixed by plus'
16 do-prefix-plus: prefixed by plus
cond-token-number.mk 11 # Even though -0 is a number and would be accepted by strtod, it is not
12 # accepted by the condition parser.
22 # Even though +0 is a number and would be accepted by strtod, it is not
23 # accepted by the condition parser.
33 # Even though -1 is a number and would be accepted by strtod, it is not
34 # accepted by the condition parser.
44 # Even though +1 is a number and would be accepted by strtod, it is not
45 # accepted by the condition parser.
79 # evaluated by either FuncDefined or FuncMake.
dep-percent.mk 4 # by GNU make but not this make.
opt-silent.mk 7 # No matter whether a command is prefixed by '@' or not, it is not echoed.
varparse-mod.mk 18 # As of 2020-10-02, some modifiers ensure that they are followed by either a
33 # On the other hand, these modifiers ensure that they are followed by a
38 # :gmtime (if not followed by '=')
39 # :hash (if not followed by '=')
40 # :localtime (if not followed by '=')
48 # :range (if not followed by '=')
depsrc-wait.mk 9 @${MAKE} -r -f ${MAKEFILE} three-by-three
34 .if make(three-by-three)
38 three-by-three: .WAIT 3a1 3a2 3a3 .WAIT 3b1 3b2 3b3 .WAIT 3c1 3c2 3c3 .WAIT
varmod-to-abs.mk 9 # into resolving completely unrelated absolute paths by defining a global
14 # This unintended behavior was caused by cached_realpath using a GNode for
23 # The output of the following line is modified by the global _SED_CMDS in
dep-colon.mk 8 # sources. It is separated by a semicolon. This "feature" is required by
  /src/sys/external/gpl2/dts/dist/arch/arm64/boot/dts/apple/
t8103-j274.dts 31 reg = <0 0 0 0>; /* To be filled by loader */
32 /* Format properties will be added by loader */
39 reg = <0x8 0 0x2 0>; /* To be filled by loader */
t8103.dtsi 28 cpu-release-addr = <0 0>; /* To be filled by loader */
36 cpu-release-addr = <0 0>; /* To be filled by loader */
44 cpu-release-addr = <0 0>; /* To be filled by loader */
52 cpu-release-addr = <0 0>; /* To be filled by loader */
60 cpu-release-addr = <0 0>; /* To be filled by loader */
68 cpu-release-addr = <0 0>; /* To be filled by loader */
76 cpu-release-addr = <0 0>; /* To be filled by loader */
84 cpu-release-addr = <0 0>; /* To be filled by loader */
  /src/lib/libcurses/
mvwin.c 19 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
100 mvwin(WINDOW *win, int by, int bx)
108 if (by < 0 || by + win->maxy > win->screen->LINES ||
111 dy = by - win->begy;
123 if (by < orig->begy || win->maxy + dy > orig->maxy)
127 win->begy = by;
newwin.c 19 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
47 static WINDOW *__makenew(SCREEN *screen, int nlines, int ncols, int by,
49 static WINDOW *__subwin(WINDOW *orig, int nlines, int ncols, int by, int bx,
54 * Create a new window in the same manner as subwin but (by, bx)
58 derwin(WINDOW *orig, int nlines, int ncols, int by, int bx)
61 return __subwin(orig, nlines, ncols, orig->begy + by, orig->begx + bx,
67 * Create a new pad in the same manner as subwin but (by, bx)
71 subpad(WINDOW *orig, int nlines, int ncols, int by, int bx)
74 return __subwin(orig, nlines, ncols, orig->begy + by, orig->begx + bx,
104 newwin(int nlines, int ncols, int by, int bx
    [all...]
  /src/sys/rump/fs/lib/liblayervfs/
Makefile 7 COMMENT=Layer file system support (used by other drivers)
  /src/usr.bin/rump_server/
Makefile 10 NOMAN= installed by ../rump_allserver
  /src/share/mk/
bsd.buildinstall.mk 5 # Used by src/lib/Makefile and src/tools/Makefile.
7 # Compute a list of subdirectories delimited by .WAIT.
  /src/tests/net/bpf/
Makefile 9 TESTS_C+= t_div-by-zero
  /src/usr.bin/indent/
README.md 5 by James Gosling @ CMU. At some point in the 1970s or even 1980s, it was
7 additions to provide "Kernel Normal Form" were contributed by the folks at Sun
15 many inconsistencies and bugs. Several of these bugs had been introduced by
  /src/sys/sys/
exec_coff.h 17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
119 #define COFF_ROUND(val, by) (((val) + by - 1) & ~(by - 1))
  /src/sys/arch/sun68k/stand/
README 8 The 1st-level program is loaded into memory by the PROM. It loads the second
10 into it by the `installboot' program. The prototype code for the 1st-level
  /src/sys/arch/x68k/stand/libdos/
dos_cerror.S 4 | written by ITOH Yasufumi
  /src/sys/rump/dev/lib/libdisk/
Makefile 8 COMMENT=Disk-like device support (used e.g. by file systems)

Completed in 85 milliseconds

1 2 3 4 5 6 7 8 91011>>