Home
last modified time | relevance | path

Searched full:general (Results 1 – 25 of 8714) sorted by relevance

12345678910>>...349

/third_party/rust/crates/rustix/src/backend/linux_raw/termios/
Dtypes.rs10 Now = linux_raw_sys::general::TCSANOW,
13 Drain = linux_raw_sys::general::TCSADRAIN,
17 Flush = linux_raw_sys::general::TCSAFLUSH,
27 IFlush = linux_raw_sys::general::TCIFLUSH,
30 OFlush = linux_raw_sys::general::TCOFLUSH,
33 IOFlush = linux_raw_sys::general::TCIOFLUSH,
43 OOff = linux_raw_sys::general::TCOOFF,
46 OOn = linux_raw_sys::general::TCOON,
49 IOff = linux_raw_sys::general::TCIOFF,
52 IOn = linux_raw_sys::general::TCION,
[all …]
/third_party/rust/crates/rustix/src/backend/linux_raw/fs/
Dtypes.rs10 const READ_OK = linux_raw_sys::general::R_OK;
13 const WRITE_OK = linux_raw_sys::general::W_OK;
16 const EXEC_OK = linux_raw_sys::general::X_OK;
19 const EXISTS = linux_raw_sys::general::F_OK;
31 const REMOVEDIR = linux_raw_sys::general::AT_REMOVEDIR;
34 const SYMLINK_FOLLOW = linux_raw_sys::general::AT_SYMLINK_FOLLOW;
37 const SYMLINK_NOFOLLOW = linux_raw_sys::general::AT_SYMLINK_NOFOLLOW;
40 const EMPTY_PATH = linux_raw_sys::general::AT_EMPTY_PATH;
43 const EACCESS = linux_raw_sys::general::AT_EACCESS;
46 const STATX_SYNC_AS_STAT = linux_raw_sys::general::AT_STATX_SYNC_AS_STAT;
[all …]
/third_party/rust/crates/rustix/src/backend/linux_raw/process/
Dtypes.rs2 use linux_raw_sys::general::membarrier_cmd;
48 Cpu = linux_raw_sys::general::RLIMIT_CPU,
50 Fsize = linux_raw_sys::general::RLIMIT_FSIZE,
52 Data = linux_raw_sys::general::RLIMIT_DATA,
54 Stack = linux_raw_sys::general::RLIMIT_STACK,
56 Core = linux_raw_sys::general::RLIMIT_CORE,
58 Rss = linux_raw_sys::general::RLIMIT_RSS,
60 Nproc = linux_raw_sys::general::RLIMIT_NPROC,
62 Nofile = linux_raw_sys::general::RLIMIT_NOFILE,
64 Memlock = linux_raw_sys::general::RLIMIT_MEMLOCK,
[all …]
/third_party/rust/crates/rustix/src/backend/linux_raw/mm/
Dtypes.rs12 const READ = linux_raw_sys::general::PROT_READ;
14 const WRITE = linux_raw_sys::general::PROT_WRITE;
16 const EXEC = linux_raw_sys::general::PROT_EXEC;
28 const READ = linux_raw_sys::general::PROT_READ;
30 const WRITE = linux_raw_sys::general::PROT_WRITE;
32 const EXEC = linux_raw_sys::general::PROT_EXEC;
34 const GROWSUP = linux_raw_sys::general::PROT_GROWSUP;
36 const GROWSDOWN = linux_raw_sys::general::PROT_GROWSDOWN;
49 const SHARED = linux_raw_sys::general::MAP_SHARED;
51 const SHARED_VALIDATE = linux_raw_sys::general::MAP_SHARED_VALIDATE;
[all …]
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/
Dcharconv_parse_test.cc129 ExpectNumber<10>("1.23456789e5$", chars_format::general, 123456789, -3); in TEST()
130 ExpectNumber<10>("1.23456789e+5$", chars_format::general, 123456789, -3); in TEST()
131 ExpectNumber<10>("1.23456789E5$", chars_format::general, 123456789, -3); in TEST()
132 ExpectNumber<10>("1.23456789e05$", chars_format::general, 123456789, -3); in TEST()
133 ExpectNumber<10>("123.456789e3$", chars_format::general, 123456789, -3); in TEST()
134 ExpectNumber<10>("0.000123456789e9$", chars_format::general, 123456789, -3); in TEST()
135 ExpectNumber<10>("123456.789$", chars_format::general, 123456789, -3); in TEST()
136 ExpectNumber<10>("123456789e-3$", chars_format::general, 123456789, -3); in TEST()
138 ExpectNumber<16>("1.234abcdefp28$", chars_format::general, 0x1234abcdef, -8); in TEST()
139 ExpectNumber<16>("1.234abcdefp+28$", chars_format::general, 0x1234abcdef, -8); in TEST()
[all …]
/third_party/rust/crates/linux-raw-sys/src/
Dlib.rs66 #[cfg(feature = "general")]
67 impl PartialEq for general::__kernel_timespec {
78 #[cfg(feature = "general")]
79 impl Eq for general::__kernel_timespec {}
81 #[cfg(feature = "general")]
84 use crate::general::{cmsghdr, msghdr};
139 #[cfg(feature = "general")]
141 #[path = "arm/general.rs"]
142 pub mod general; module
155 #[cfg(feature = "general")]
[all …]
/third_party/rust/crates/rustix/src/backend/linux_raw/io/
Dtypes.rs12 const CLOEXEC = linux_raw_sys::general::FD_CLOEXEC;
23 const DSYNC = linux_raw_sys::general::RWF_DSYNC;
25 const HIPRI = linux_raw_sys::general::RWF_HIPRI;
27 const SYNC = linux_raw_sys::general::RWF_SYNC;
29 const NOWAIT = linux_raw_sys::general::RWF_NOWAIT;
31 const APPEND = linux_raw_sys::general::RWF_APPEND;
40 const MOVE = linux_raw_sys::general::SPLICE_F_MOVE;
42 const NONBLOCK = linux_raw_sys::general::SPLICE_F_NONBLOCK;
44 const MORE = linux_raw_sys::general::SPLICE_F_MORE;
46 const GIFT = linux_raw_sys::general::SPLICE_F_GIFT;
[all …]
Dpoll_fd.rs10 const IN = linux_raw_sys::general::POLLIN as u16;
12 const PRI = linux_raw_sys::general::POLLPRI as u16;
14 const OUT = linux_raw_sys::general::POLLOUT as u16;
16 const RDNORM = linux_raw_sys::general::POLLRDNORM as u16;
18 const WRNORM = linux_raw_sys::general::POLLWRNORM as u16;
20 const RDBAND = linux_raw_sys::general::POLLRDBAND as u16;
22 const WRBAND = linux_raw_sys::general::POLLWRBAND as u16;
24 const ERR = linux_raw_sys::general::POLLERR as u16;
26 const HUP = linux_raw_sys::general::POLLHUP as u16;
28 const NVAL = linux_raw_sys::general::POLLNVAL as u16;
[all …]
/third_party/rust/crates/rustix/src/backend/linux_raw/thread/
Dfutex.rs7 const PRIVATE = linux_raw_sys::general::FUTEX_PRIVATE_FLAG;
9 const CLOCK_REALTIME = linux_raw_sys::general::FUTEX_CLOCK_REALTIME;
20 Wait = linux_raw_sys::general::FUTEX_WAIT,
22 Wake = linux_raw_sys::general::FUTEX_WAKE,
24 Fd = linux_raw_sys::general::FUTEX_FD,
26 Requeue = linux_raw_sys::general::FUTEX_REQUEUE,
28 CmpRequeue = linux_raw_sys::general::FUTEX_CMP_REQUEUE,
30 WakeOp = linux_raw_sys::general::FUTEX_WAKE_OP,
32 LockPi = linux_raw_sys::general::FUTEX_LOCK_PI,
34 UnlockPi = linux_raw_sys::general::FUTEX_UNLOCK_PI,
[all …]
/third_party/rust/crates/rustix/src/backend/linux_raw/time/
Dtypes.rs6 pub type Timespec = linux_raw_sys::general::__kernel_timespec;
9 pub type Secs = linux_raw_sys::general::__kernel_time64_t;
19 pub type Itimerspec = linux_raw_sys::general::__kernel_itimerspec;
34 Realtime = linux_raw_sys::general::CLOCK_REALTIME,
37 Monotonic = linux_raw_sys::general::CLOCK_MONOTONIC,
40 ProcessCPUTime = linux_raw_sys::general::CLOCK_PROCESS_CPUTIME_ID,
43 ThreadCPUTime = linux_raw_sys::general::CLOCK_THREAD_CPUTIME_ID,
46 RealtimeCoarse = linux_raw_sys::general::CLOCK_REALTIME_COARSE,
49 MonotonicCoarse = linux_raw_sys::general::CLOCK_MONOTONIC_COARSE,
52 MonotonicRaw = linux_raw_sys::general::CLOCK_MONOTONIC_RAW,
[all …]
/third_party/ffmpeg/doc/dev_community/
Dcommunity.md10 ## General Assembly
12 The ensemble of active members is called the General Assembly (GA).
14 The General Assembly is sovereign and legitimate for all its decisions
17 The General Assembly is made up of active contributors.
23 Additional members are added to the General Assembly through a vote after
24 proposal by a member of the General Assembly.
46 of the General Assembly, requested by one of the member of the GA.
48 The TC is elected by the General Assembly for a duration of 1 year, and
50 Members can be re-elected if they wish. A majority vote in the General Assembly
68 of the General Assembly. Indefinite bans from the community must be confirmed
[all …]
/third_party/ltp/testcases/kernel/controllers/cpuset/cpuset_memory_test/
Dcpuset_memory_testset.sh8 # it under the terms of the GNU General Public License as published by #
14 # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License #
17 # You should have received a copy of the GNU General Public License #
69 tst_resm TFAIL "set general group parameter failed."
86 tst_resm TFAIL "set general group parameter failed."
103 tst_resm TFAIL "set general group parameter failed."
120 tst_resm TFAIL "set general group parameter failed."
137 tst_resm TFAIL "set general group parameter failed."
168 tst_resm TFAIL "set general group parameter failed."
207 tst_resm TFAIL "set general group parameter failed."
[all …]
/third_party/rust/crates/rustix/src/backend/linux_raw/arch/
Dmod.rs61 linux_raw_sys::general::$nr,
67 $crate::backend::reg::nr(linux_raw_sys::general::$nr),
74 $crate::backend::reg::nr(linux_raw_sys::general::$nr),
82 $crate::backend::reg::nr(linux_raw_sys::general::$nr),
91 $crate::backend::reg::nr(linux_raw_sys::general::$nr),
101 $crate::backend::reg::nr(linux_raw_sys::general::$nr),
112 $crate::backend::reg::nr(linux_raw_sys::general::$nr),
124 $crate::backend::reg::nr(linux_raw_sys::general::$nr),
139 linux_raw_sys::general::$nr,
145 $crate::backend::reg::nr(linux_raw_sys::general::$nr),
[all …]
/third_party/openGLES/extensions/NV/
DNV_register_combiners2.txt49 for each general combiner stage.
52 constants. These two constants are available in every general
55 When many general combiner stages are supported, more than two
62 In practice however, it is the total set of general combiner stages
64 general combiner stage. Each individual general combiner stage
68 contain two unique color constant values for each general combiner
71 more general combiner stages are added.
78 RESOLUTION: Initially, per general combiner stage constants are
160 COLOR_CONSTANT1_NV registers. Each general combiner stage # maps
178 to the general combiner stages."
[all …]
/third_party/skia/third_party/externals/opengl-registry/extensions/NV/
DNV_register_combiners2.txt49 for each general combiner stage.
52 constants. These two constants are available in every general
55 When many general combiner stages are supported, more than two
62 In practice however, it is the total set of general combiner stages
64 general combiner stage. Each individual general combiner stage
68 contain two unique color constant values for each general combiner
71 more general combiner stages are added.
78 RESOLUTION: Initially, per general combiner stage constants are
160 COLOR_CONSTANT1_NV registers. Each general combiner stage # maps
178 to the general combiner stages."
[all …]
/third_party/libbpf/
DLICENSE.LGPL-2.18 For 'GNU Lesser General Public License (LGPL) version 2.1 only' use:
10 For 'GNU Lesser General Public License (LGPL) version 2.1 or any later
15 GNU LESSER GENERAL PUBLIC LICENSE
31 share and change it. By contrast, the GNU General Public Licenses are
35 This license, the Lesser General Public License, applies to some specially
39 ordinary General Public License is the better strategy to use in any
43 price. Our General Public Licenses are designed to make sure that you have
80 General Public License. This license, the GNU Lesser General Public
82 from the ordinary General Public License. We use this license for certain
88 work, a derivative of the original library. The ordinary General Public
[all …]
/third_party/openssl/external/perl/Text-Template-1.56/
DLICENSE8 a) the GNU General Public License as published by the Free
13 --- The GNU General Public License, Version 1, February 1989 ---
19 The GNU General Public License, Version 1, February 1989
21 GNU GENERAL PUBLIC LICENSE
33 at the mercy of those companies. By contrast, our General Public
36 General Public License applies to the Free Software Foundation's
41 price. Specifically, the General Public License is designed to make
71 GNU GENERAL PUBLIC LICENSE
76 distributed under the terms of this General Public License. The
86 General Public License and to the absence of any warranty; and give any
[all …]
/third_party/gstreamer/gstplugins_bad/
DCOPYING1 GNU LESSER GENERAL PUBLIC LICENSE
16 freedom to share and change it. By contrast, the GNU General Public
20 This license, the Lesser General Public License, applies to some
24 this license or the ordinary General Public License is the better
28 not price. Our General Public Licenses are designed to make sure that
67 ordinary GNU General Public License. This license, the GNU Lesser
68 General Public License, applies to certain designated libraries, and
69 is quite different from the ordinary General Public License. We use
76 General Public License therefore permits such linking only if the
77 entire combination fits its criteria of freedom. The Lesser General
[all …]
/third_party/ffmpeg/
DCOPYING.LGPLv2.11 GNU LESSER GENERAL PUBLIC LICENSE
16 freedom to share and change it. By contrast, the GNU General Public
20 This license, the Lesser General Public License, applies to some
24 this license or the ordinary General Public License is the better
28 not price. Our General Public Licenses are designed to make sure that
67 ordinary GNU General Public License. This license, the GNU Lesser
68 General Public License, applies to certain designated libraries, and
69 is quite different from the ordinary General Public License. We use
76 General Public License therefore permits such linking only if the
77 entire combination fits its criteria of freedom. The Lesser General
[all …]
/third_party/selinux/libsepol/
DCOPYING1 GNU LESSER GENERAL PUBLIC LICENSE
16 freedom to share and change it. By contrast, the GNU General Public
20 This license, the Lesser General Public License, applies to some
24 this license or the ordinary General Public License is the better
28 not price. Our General Public Licenses are designed to make sure that
67 ordinary GNU General Public License. This license, the GNU Lesser
68 General Public License, applies to certain designated libraries, and
69 is quite different from the ordinary General Public License. We use
76 General Public License therefore permits such linking only if the
77 entire combination fits its criteria of freedom. The Lesser General
[all …]
/third_party/libusb/
DCOPYING1 GNU LESSER GENERAL PUBLIC LICENSE
16 freedom to share and change it. By contrast, the GNU General Public
20 This license, the Lesser General Public License, applies to some
24 this license or the ordinary General Public License is the better
28 not price. Our General Public Licenses are designed to make sure that
67 ordinary GNU General Public License. This license, the GNU Lesser
68 General Public License, applies to certain designated libraries, and
69 is quite different from the ordinary General Public License. We use
76 General Public License therefore permits such linking only if the
77 entire combination fits its criteria of freedom. The Lesser General
[all …]
/third_party/skia/third_party/externals/microhttpd/
DCOPYING7 GNU LESSER GENERAL PUBLIC LICENSE
22 freedom to share and change it. By contrast, the GNU General Public
26 This license, the Lesser General Public License, applies to some
30 this license or the ordinary General Public License is the better
34 not price. Our General Public Licenses are designed to make sure that
73 ordinary GNU General Public License. This license, the GNU Lesser
74 General Public License, applies to certain designated libraries, and
75 is quite different from the ordinary General Public License. We use
82 General Public License therefore permits such linking only if the
83 entire combination fits its criteria of freedom. The Lesser General
[all …]
/third_party/gstreamer/gstreamer/
DCOPYING1 GNU LESSER GENERAL PUBLIC LICENSE
16 freedom to share and change it. By contrast, the GNU General Public
20 This license, the Lesser General Public License, applies to some
24 this license or the ordinary General Public License is the better
28 not price. Our General Public Licenses are designed to make sure that
67 ordinary GNU General Public License. This license, the GNU Lesser
68 General Public License, applies to certain designated libraries, and
69 is quite different from the ordinary General Public License. We use
76 General Public License therefore permits such linking only if the
77 entire combination fits its criteria of freedom. The Lesser General
[all …]
/third_party/gstreamer/gstplugins_good/
DCOPYING1 GNU LESSER GENERAL PUBLIC LICENSE
16 freedom to share and change it. By contrast, the GNU General Public
20 This license, the Lesser General Public License, applies to some
24 this license or the ordinary General Public License is the better
28 not price. Our General Public Licenses are designed to make sure that
67 ordinary GNU General Public License. This license, the GNU Lesser
68 General Public License, applies to certain designated libraries, and
69 is quite different from the ordinary General Public License. We use
76 General Public License therefore permits such linking only if the
77 entire combination fits its criteria of freedom. The Lesser General
[all …]
/third_party/flutter/engine/flutter/tools/licenses/data/
Dlesser-gpl-2.11 GNU LESSER GENERAL PUBLIC LICENSE
16 freedom to share and change it. By contrast, the GNU General Public
20 This license, the Lesser General Public License, applies to some
24 this license or the ordinary General Public License is the better
28 not price. Our General Public Licenses are designed to make sure that
67 ordinary GNU General Public License. This license, the GNU Lesser
68 General Public License, applies to certain designated libraries, and
69 is quite different from the ordinary General Public License. We use
76 General Public License therefore permits such linking only if the
77 entire combination fits its criteria of freedom. The Lesser General
[all …]

12345678910>>...349