Home
last modified time | relevance | path

Searched full:proc (Results 1 – 25 of 1737) sorted by relevance

12345678910>>...70

/third_party/mesa3d/src/gallium/frontends/wgl/
Dstw_nopfuncs.c391 PROC
396 PROC p; in stw_get_nop_function()
398 { "glBindMultiTextureEXT", (PROC) nop_glBindMultiTextureEXT }, in stw_get_nop_function()
399 { "glColor3hNV", (PROC) nop_glColor3hNV }, in stw_get_nop_function()
400 { "glColor3hvNV", (PROC) nop_glColor3hvNV }, in stw_get_nop_function()
401 { "glColor4hNV", (PROC) nop_glColor4hNV }, in stw_get_nop_function()
402 { "glColor4hvNV", (PROC) nop_glColor4hvNV }, in stw_get_nop_function()
403 { "glDisableClientStateIndexedEXT", (PROC) nop_glDisableClientStateIndexedEXT }, in stw_get_nop_function()
404 { "glEnableClientStateIndexedEXT", (PROC) nop_glEnableClientStateIndexedEXT }, in stw_get_nop_function()
405 { "glFogCoordhNV", (PROC) nop_glFogCoordhNV }, in stw_get_nop_function()
[all …]
/third_party/skia/third_party/externals/oboe/src/aaudio/
DAAudioLoader.cpp134 static void AAudioLoader_check(void *proc, const char *functionName) { in AAudioLoader_check() argument
135 if (proc == nullptr) { in AAudioLoader_check()
141 void *proc = dlsym(mLibHandle, functionName); in load_I_PPB() local
142 AAudioLoader_check(proc, functionName); in load_I_PPB()
143 return reinterpret_cast<signature_I_PPB>(proc); in load_I_PPB()
147 void *proc = dlsym(mLibHandle, functionName); in load_CPH_I() local
148 AAudioLoader_check(proc, functionName); in load_CPH_I()
149 return reinterpret_cast<signature_CPH_I>(proc); in load_CPH_I()
153 void *proc = dlsym(mLibHandle, functionName); in load_V_PBI() local
154 AAudioLoader_check(proc, functionName); in load_V_PBI()
[all …]
/third_party/ltp/testcases/kernel/fs/proc/
Dproc01.c2 * proc01.c - Tests Linux /proc file reading.
63 static char *procpath = "/proc";
64 static const char selfpath[] = "/proc/self";
82 {"open", "/proc/acpi/event", EBUSY},
83 {"open", "/proc/sal/cpe/data", EBUSY},
84 {"open", "/proc/sal/cmc/data", EBUSY},
85 {"open", "/proc/sal/init/data", EBUSY},
86 {"open", "/proc/sal/mca/data", EBUSY},
87 {"open", "/proc/fs/nfsd/pool_stats", ENODEV},
88 {"read", "/proc/fs/nfsd/clients/*/ctl", EINVAL},
[all …]
/third_party/python/Lib/test/test_asyncio/
Dtest_subprocess.py115 proc = await asyncio.create_subprocess_exec(
122 proc.stdin.write(data)
123 await proc.stdin.drain()
124 proc.stdin.close()
127 data = await proc.stdout.read()
128 exitcode = await proc.wait()
141 proc = await asyncio.create_subprocess_exec(
146 stdout, stderr = await proc.communicate(data)
147 return proc.returncode, stdout
156 proc = self.loop.run_until_complete(
[all …]
/third_party/rust/crates/rustix/src/io/
Dprocfs.rs1 //! Utilities for working with `/proc`, where Linux's `procfs` is typically
2 //! mounted. `/proc` serves as an adjunct to Linux's main syscall surface area,
5 //! This module does a considerable amount of work to determine whether `/proc`
36 // Identify an entry within "/proc", to determine which anomalies to check for.
39 Proc, enumerator
45 /// Check a subdirectory of "/proc" for anomalies.
55 /// Check a subdirectory of "/proc" for anomalies, using the provided `Stat`.
66 Kind::Proc => check_proc_root(entry, &entry_stat)?, in check_proc_entry_with_stat()
71 // "/proc" directories are typically mounted r-xr-xr-x. in check_proc_entry_with_stat()
72 // "/proc/self/fd" is r-x------. Allow them to have fewer permissions, but in check_proc_entry_with_stat()
[all …]
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/metal/shaders/
Dcopy_buffer.metal1303 #define SUPPORTED_FORMATS(PROC) \
1304 PROC(R5G6B5_UNORM) \
1305 PROC(R8G8B8A8_UNORM) \
1306 PROC(R8G8B8A8_UNORM_SRGB) \
1307 PROC(R8G8B8A8_SNORM) \
1308 PROC(B8G8R8A8_UNORM) \
1309 PROC(B8G8R8A8_UNORM_SRGB) \
1310 PROC(R8G8B8_UNORM) \
1311 PROC(R8G8B8_UNORM_SRGB) \
1312 PROC(R8G8B8_SNORM) \
[all …]
/third_party/toybox/tests/
Dpgrep.test15 proc=$!
16 #echo "# Process created with id: $proc"
19 proc_parent=`cat /proc/${proc}/stat | cut -d' ' -f4`
20 #echo "# Parent Process id of $proc is $proc_parent"
23 testing "pattern" "pgrep yes" "$proc\n" "" ""
24 testing "wildCardPattern" "pgrep ^y.*s$" "$proc\n" "" ""
25 testing "-l pattern" "pgrep -l yes" "$proc yes\n" "" ""
26 testing "-f pattern" "pgrep -f yes" "$proc\n" "" ""
27 testing "-n pattern" "pgrep -n yes" "$proc\n" "" ""
28 testing "-o pattern" "pgrep -o yes" "$proc\n" "" ""
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Sparc/
DSparc.td87 class Proc<string Name, list<SubtargetFeature> Features>
90 def : Proc<"generic", []>;
91 def : Proc<"v7", [FeatureSoftMulDiv, FeatureNoFSMULD]>;
92 def : Proc<"v8", []>;
93 def : Proc<"supersparc", []>;
94 def : Proc<"sparclite", []>;
95 def : Proc<"f934", []>;
96 def : Proc<"hypersparc", []>;
97 def : Proc<"sparclite86x", []>;
98 def : Proc<"sparclet", []>;
[all …]
/third_party/ltp/lib/newlib_tests/
Dtest_zero_hugepage.sh14 orig_value=`cat /proc/sys/vm/nr_hugepages`
16 if grep -q -E '^proc /proc(/sys)? proc ro' /proc/mounts; then
17 tconf "/proc or /proc/sys mounted as read-only"
20 if [ ! -f /proc/sys/vm/nr_hugepages ]; then
21 tconf "/proc/sys/vm/nr_hugepages does not exist"
24 if [ ! -w /proc/sys/vm/nr_hugepages ]; then
25 tconf "no write permission to /proc/sys/vm/nr_hugepages (run as root)"
28 echo 4 > /proc/sys/vm/nr_hugepages
32 echo $orig_value > /proc/sys/vm/nr_hugepages
/third_party/ltp/testcases/kdump/lib/
Dsysinfo.sh8 echo "------------- /PROC/VERSION --------------"
10 cat /proc/version
12 echo "------------- /PROC/CPUINFO --------------"
14 cat /proc/cpuinfo
16 echo "------------- /PROC/MEMINFO --------------"
18 cat /proc/meminfo
20 echo "------------- /PROC/DEVICES --------------"
22 cat /proc/devices
24 echo "------------- /PROC/INTERRUPTS -----------"
26 cat /proc/interrupts
[all …]
Dtest.sh14 --append="$(cat /proc/cmdline)"
39 echo c >/proc/sysrq-trigger
45 echo 0 >/proc/crasher
51 echo 1 >/proc/crasher
57 echo 1 >/proc/sys/kernel/panic_on_oops
58 echo 2 >/proc/crasher
65 echo 3 >/proc/crasher
81 echo 1 >/proc/sys/kernel/panic_on_oops
97 echo 1 >/proc/sys/kernel/panic_on_oops
113 echo 1 >/proc/sys/kernel/panic_on_oops
[all …]
/third_party/node/test/parallel/
Dtest-inspector-port-zero.js11 const proc = spawn(process.execPath, args);
12 proc.stdout.setEncoding('utf8');
13 proc.stderr.setEncoding('utf8');
16 proc.stdout.on('data', (data) => stdout += data);
17 proc.stderr.on('data', (data) => stderr += data);
18 proc.stdout.on('close', (hadErr) => assert(!hadErr));
19 proc.stderr.on('close', (hadErr) => assert(!hadErr));
20 proc.stderr.on('data', () => {
27 proc.stderr.on('data', () => {
28 if (stderr.includes('\n') && !proc.killed) proc.kill();
[all …]
/third_party/skia/third_party/externals/angle2/src/libANGLE/
DOverlay_autogen.h41 #define ANGLE_WIDGET_ID_X(PROC) \ argument
42 PROC(FPS) \
43 PROC(VulkanLastValidationMessage) \
44 PROC(VulkanValidationMessageCount) \
45 PROC(VulkanRenderPassCount) \
46 PROC(VulkanRenderPassBufferCount) \
47 PROC(VulkanSecondaryCommandBufferPoolWaste) \
48 PROC(VulkanWriteDescriptorSetCount) \
49 PROC(VulkanDescriptorSetAllocations) \
50 PROC(VulkanShaderBufferDSHitRate) \
[all …]
/third_party/rust/crates/proc-macro2/
DREADME.md1 # proc-macro2
3 …ge/github-dtolnay/proc--macro2-8da0cb?style=for-the-badge&labelColor=555555&logo=github" height="2…
4 …/img.shields.io/crates/v/proc-macro2.svg?style=for-the-badge&color=fc8d62&logo=rust" height="20">]…
5 …ields.io/badge/docs.rs-proc--macro2-66c2a5?style=for-the-badge&labelColor=555555&logo=docs.rs" hei…
6 …ns/workflow/status/dtolnay/proc-macro2/ci.yml?branch=master&style=for-the-badge" height="20">](htt…
11 - **Bring proc-macro-like functionality to other contexts like build.rs and
32 proc-macro2 = "1.0"
59 The default feature set of proc-macro2 tracks the most recent stable compiler
61 proc-macro2 by default.
66 that track the nightly compiler, minor versions of proc-macro2 may make breaking
[all …]
DCargo.toml.orig2 name = "proc-macro2"
8 documentation = "https://docs.rs/proc-macro2"
12 repository = "https://github.com/dtolnay/proc-macro2"
31 proc-macro = []
32 default = ["proc-macro"]
48 # Our doc tests depend on quote which depends on proc-macro2. Without this line,
49 # the proc-macro2 dependency of quote would be the released version of
50 # proc-macro2. Quote would implement its traits for types from that proc-macro2,
52 # proc-macro2.
55 # spuriously fail. This is because they'll be building a local proc-macro2 which
[all …]
/third_party/mesa3d/src/gallium/frontends/clover/core/
Dbinary.cpp38 _serializer<T>::proc(os, x); in _proc()
45 _serializer<T>::proc(is, x); in _proc()
52 _serializer<T>::proc(is, x); in _proc()
60 _serializer<T>::proc(sz, x); in _proc()
68 proc(std::ostream &os, const T &x) { in proc() function
73 proc(std::istream &is, T &x) { in proc() function
78 proc(binary::size_t &sz, const T &x) { in proc() function
89 proc(std::ostream &os, const std::vector<T> &v) { in proc() function
97 proc(std::istream &is, std::vector<T> &v) { in proc() function
105 proc(binary::size_t &sz, const std::vector<T> &v) { in proc() function
[all …]
/third_party/skia/third_party/externals/dawn/generator/templates/opengl/
DOpenGLFunctionsBase.cpp23 return DAWN_INTERNAL_ERROR(std::string("Couldn't load GL proc: ") + name); in LoadProc()
32 {% for proc in block.procs %} in LoadOpenGLESProcs()
33 DAWN_TRY(LoadProc(getProc, &{{proc.ProcName()}}, "{{proc.glProcName()}}")); in LoadOpenGLESProcs()
41 {% for proc in block.procs %} in LoadOpenGLESProcs()
42 DAWN_TRY(LoadProc(getProc, &{{proc.ProcName()}}, "{{proc.glProcName()}}")); in LoadOpenGLESProcs()
53 {% for proc in block.procs %}
54 DAWN_TRY(LoadProc(getProc, &{{proc.ProcName()}}, "{{proc.glProcName()}}"));
62 {% for proc in block.procs %}
63 DAWN_TRY(LoadProc(getProc, &{{proc.ProcName()}}, "{{proc.glProcName()}}"));
/third_party/skia/src/codec/
DSkSwizzler.cpp742 template <SkSwizzler::RowProc proc>
758 proc(dst32, (const uint8_t*)src16, width, bpp, deltaSrc, 0, ctable); in SkipLeadingGrayAlphaZerosThen()
761 template <SkSwizzler::RowProc proc>
777 proc(dst32, (const uint8_t*)src32, dstWidth, bpp, deltaSrc, 0, ctable); in SkipLeading8888ZerosThen()
782 RowProc proc = nullptr; in MakeSimple() local
785 proc = &sample1; in MakeSimple()
788 proc = &sample2; in MakeSimple()
792 proc = &sample4; in MakeSimple()
795 proc = &sample6; in MakeSimple()
798 proc = &sample8; in MakeSimple()
[all …]
/third_party/python/Lib/test/
D_test_eintr.py29 def kill_on_error(proc): argument
31 with proc:
33 yield proc
35 proc.kill()
93 for proc in processes:
94 proc.wait()
104 proc = self.new_sleep_process()
105 wait_func(proc.pid)
107 proc.wait()
138 proc = self.subprocess(code, str(wr), pass_fds=[wr])
[all …]
/third_party/rust/crates/proc-macro-error/
DCargo.toml2 name = "proc-macro-error"
5 description = "Almost drop-in replacement to panics in proc-macros"
7 repository = "https://gitlab.com/CreepySkeleton/proc-macro-error"
9 keywords = ["proc-macro", "error", "errors"]
24 proc-macro2 = "1"
25 proc-macro-error-attr = { path = "./proc-macro-error-attr", version = "=1.0.4"}
34 proc-macro-hack-test = { path = "./test-crate/proc-macro-hack-test" }
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/NVPTX/
DNVPTX.td85 class Proc<string Name, list<SubtargetFeature> Features>
88 def : Proc<"sm_20", [SM20]>;
89 def : Proc<"sm_21", [SM21]>;
90 def : Proc<"sm_30", [SM30]>;
91 def : Proc<"sm_32", [SM32, PTX40]>;
92 def : Proc<"sm_35", [SM35]>;
93 def : Proc<"sm_37", [SM37, PTX41]>;
94 def : Proc<"sm_50", [SM50, PTX40]>;
95 def : Proc<"sm_52", [SM52, PTX41]>;
96 def : Proc<"sm_53", [SM53, PTX42]>;
[all …]
/third_party/ltp/testcases/kernel/containers/userns/
Duserns03.c10 * Verify that /proc/PID/uid_map and /proc/PID/gid_map contains three values
24 * The string "deny" would be written to /proc/self/setgroups before GID
67 SAFE_FILE_SCANF("/proc/self/uid_map", "%d %d %d", &idinsidens, &idoutsidens, &length); in child_fn2()
74 tst_res(TINFO, "child2 checks /proc/cpid2/uid_map"); in child_fn2()
81 sprintf(cpid1uidpath, "/proc/%d/uid_map", cpid1); in child_fn2()
88 tst_res(TINFO, "child2 checks /proc/cpid1/uid_map"); in child_fn2()
95 sprintf(cpid1gidpath, "/proc/%d/gid_map", cpid1); in child_fn2()
96 SAFE_FILE_SCANF("/proc/self/gid_map", "%d %d %d", &idinsidens, &idoutsidens, &length); in child_fn2()
98 tst_res(TINFO, "child2 checks /proc/cpid2/gid_map"); in child_fn2()
107 tst_res(TINFO, "child1 checks /proc/cpid1/gid_map"); in child_fn2()
[all …]
/third_party/ffmpeg/libavfilter/
Daf_aexciter.c146 double proc = in, med; in distortion_process() local
148 proc = bprocess(proc, p->hp, &p->hw[0][0], &p->hw[0][1]); in distortion_process()
149 proc = bprocess(proc, p->hp, &p->hw[1][0], &p->hw[1][1]); in distortion_process()
151 if (proc >= 0.0) { in distortion_process()
152 med = (D(p->ap + proc * (p->kpa - proc)) + p->kpb) * p->pwrq; in distortion_process()
154 med = (D(p->an - proc * (p->kna + proc)) + p->knb) * p->pwrq * -1.0; in distortion_process()
157 proc = p->srct * (med - p->prev_med + p->prev_out); in distortion_process()
159 p->prev_out = M(proc); in distortion_process()
161 proc = bprocess(proc, p->hp, &p->hw[2][0], &p->hw[2][1]); in distortion_process()
162 proc = bprocess(proc, p->hp, &p->hw[3][0], &p->hw[3][1]); in distortion_process()
[all …]
/third_party/node/test/tick-processor/
Dtick-processor-base.js14 const proc = cp.spawn(process.execPath, [
24 proc.stdout.on('data', (chunk) => ticks += chunk);
28 match(test.pattern, proc, () => ticks, test.profProcessFlags);
36 const proc = cp.spawn(process.execPath, [
47 proc.stdout.on('data', (chunk) => out += chunk);
48 proc.stdout.once('end', () => {
49 proc.once('exit', () => {
60 proc.stdout.removeAllListeners();
61 proc.kill();
/third_party/rust/crates/cxx/third-party/
DBUCK200 name = "proc-macro2",
201 actual = ":proc-macro2-1.0.59",
206 name = "proc-macro2-1.0.59.crate",
208 strip_prefix = "proc-macro2-1.0.59",
209 urls = ["https://crates.io/api/v1/crates/proc-macro2/1.0.59/download"],
214 name = "proc-macro2-1.0.59",
215 srcs = [":proc-macro2-1.0.59.crate"],
217 crate_root = "proc-macro2-1.0.59.crate/src/lib.rs",
221 "proc-macro",
224 rustc_flags = ["@$(location :proc-macro2-1.0.59-build-script-run[rustc_flags])"],
[all …]

12345678910>>...70