Home
last modified time | relevance | path

Searched refs:psx (Results 1 – 25 of 25) sorted by relevance

/external/libcap/go/
DMakefile18 all: PSXGOPACKAGE CAPGOPACKAGE web setid gowns compare-cap try-launching psx-signals
33 vendor/$(IMPORTDIR)/psx: vendor/modules.txt
34 ln -sf $(topdir)/psx vendor/$(IMPORTDIR)
35 touch ../psx
48 PSXGOPACKAGE: vendor/$(IMPORTDIR)/psx ../psx/*.go $(DEPS)
82 psx-signals: psx-signals.go PSXGOPACKAGE
86 psx-signals-cgo: psx-signals.go PSXGOPACKAGE
94 …="$(CC)" CGO_ENABLED="$(CGO_REQUIRED)" $(CGO_LDFLAGS_ALLOW) $(GO) test -mod=vendor $(IMPORTDIR)/psx
97 ./psx-signals
99 $(MAKE) psx-signals-cgo
[all …]
D.gitignore5 psx-signals
6 psx-signals-cgo
Dgo.mod7 kernel.org/pub/linux/libs/security/libcap/psx v1.2.53
Dpsx-signals.go29 _, _, err := psx.Syscall3(syscall.SYS_PRCTL, prSetKeepCaps, uintptr(i&1), 0)
/external/libcap/psx/
DREADME1 Package "psx" provides an API for invoking system calls in a way that
12 APIs. When compiled this way, the "psx" package functions
13 psx.Syscall3() and psx.Syscall6() are aliased to
18 code, [lib]psx, which is distributed with libcap.
24 Like libcap/libpsx itself, the "psx" package is distributed with a
Ddoc.go60 package psx // import "kernel.org/pub/linux/libs/security/libcap/psx" package
Dgo.mod1 module kernel.org/pub/linux/libs/security/libcap/psx
Dpsx.go4 package psx // import "kernel.org/pub/linux/libs/security/libcap/psx" package
Dpsx_cgo_test.go3 package psx package
Dpsx_cgo.go3 package psx // import "kernel.org/pub/linux/libs/security/libcap/psx" package
Dpsx_test.go1 package psx package
DLicense2 licensed conditions under which the contents of this libcap/psx release
14 Redistribution and use in source and binary forms of libcap/psx, with
/external/libchrome-gestures/src/
Dstationary_wiggle_filter_interpreter.cc48 float psx = 0.0; in PushFingerState() local
52 psx += fe.mixed_x; in PushFingerState()
55 psx /= size_; in PushFingerState()
58 history_[head_].energy_x = psx * psx; in PushFingerState()
/external/libcap/goapps/setid/
Dsetid.go60 if _, _, err := psx.Syscall3(syscall.SYS_SETGID, uintptr(setGID), 0, 0); err != 0 {
68 …if _, _, err := psx.Syscall3(syscall.SYS_SETGROUPS, uintptr(unsafe.Pointer(&gids32[0])), 0, 0); er…
72 if _, _, err := psx.Syscall3(syscall.SYS_SETUID, uintptr(setUID), 0, 0); err != 0 {
Dgo.mod7 kernel.org/pub/linux/libs/security/libcap/psx v1.2.53
/external/libcap/cap/
Dsyscalls.go16 w3: psx.Syscall3,
17 w6: psx.Syscall6,
Dgo.mod5 require kernel.org/pub/linux/libs/security/libcap/psx v1.2.53
/external/libcap/libcap/
DMakefile18 PSXFILES=../psx/psx
/external/libcap/contrib/seccomp/
Dgo.mod5 require kernel.org/pub/linux/libs/security/libcap/psx v1.2.53
Dexplore.go168 _, _, e = psx.Syscall6(syscall.SYS_PRCTL, option, arg1, arg2, arg3, arg4, arg5)
/external/libcap/
DMakefile94 …git tag -u D41A6DF2 -s psx/v$(GOMAJOR).$(VERSION).$(MINOR) -m "This is the (stable) version tag fo…
/external/mesa3d/src/intel/blorp/
Dblorp_genX_exec.h899 blorp_emit(batch, GENX(3DSTATE_PS_EXTRA), psx) { in blorp_emit_ps_config()
901 psx.PixelShaderValid = true; in blorp_emit_ps_config()
902 psx.AttributeEnable = prog_data->num_varying_inputs > 0; in blorp_emit_ps_config()
903 psx.PixelShaderIsPerSample = prog_data->persample_dispatch; in blorp_emit_ps_config()
904 psx.PixelShaderComputedDepthMode = prog_data->computed_depth_mode; in blorp_emit_ps_config()
906 psx.PixelShaderComputesStencil = prog_data->computed_stencil; in blorp_emit_ps_config()
911 psx.PixelShaderKillsPixel = true; in blorp_emit_ps_config()
/external/mesa3d/src/mesa/drivers/dri/i965/
DgenX_state_upload.c4669 brw_batch_emit(brw, GENX(3DSTATE_PS_EXTRA), psx) {
4670 psx.PixelShaderValid = true;
4671 psx.PixelShaderComputedDepthMode = prog_data->computed_depth_mode;
4672 psx.PixelShaderKillsPixel = prog_data->uses_kill;
4673 psx.AttributeEnable = prog_data->num_varying_inputs != 0;
4674 psx.PixelShaderUsesSourceDepth = prog_data->uses_src_depth;
4675 psx.PixelShaderUsesSourceW = prog_data->uses_src_w;
4676 psx.PixelShaderIsPerSample = prog_data->persample_dispatch;
4682 psx.InputCoverageMaskState = ICMS_DEPTH_COVERAGE;
4684 psx.InputCoverageMaskState = ICMS_INNER_CONSERVATIVE;
[all …]
/external/mesa3d/src/gallium/drivers/iris/
Diris_state.c4481 iris_pack_command(GENX(3DSTATE_PS_EXTRA), psx_state, psx) { in iris_store_fs_state()
4482 psx.PixelShaderValid = true; in iris_store_fs_state()
4483 psx.PixelShaderComputedDepthMode = wm_prog_data->computed_depth_mode; in iris_store_fs_state()
4484 psx.PixelShaderKillsPixel = wm_prog_data->uses_kill; in iris_store_fs_state()
4485 psx.AttributeEnable = wm_prog_data->num_varying_inputs != 0; in iris_store_fs_state()
4486 psx.PixelShaderUsesSourceDepth = wm_prog_data->uses_src_depth; in iris_store_fs_state()
4487 psx.PixelShaderUsesSourceW = wm_prog_data->uses_src_w; in iris_store_fs_state()
4488 psx.PixelShaderIsPerSample = wm_prog_data->persample_dispatch; in iris_store_fs_state()
4489 psx.oMaskPresenttoRenderTarget = wm_prog_data->uses_omask; in iris_store_fs_state()
4492 psx.PixelShaderPullsBary = wm_prog_data->pulls_bary; in iris_store_fs_state()
[all …]
/external/swiftshader/third_party/llvm-10.0/configs/common/lib/Target/X86/
DX86GenAsmMatcher.inc7796 "2psx\013vcvtuqq2psy\nvcvtusi2sd\013vcvtusi2sdl\013vcvtusi2sdq\nvcvtusi2"