Home
last modified time | relevance | path

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

123456789

/device/google/atv/sepolicy/
Dservice.te1 # system_server_services needed on atv
/device/linaro/bootloader/edk2/MdeModulePkg/Core/DxeIplPeim/
DDxeIpl.uni6 // needed to run the DXE Foundation.
23 … PPI to discover and dispatch the DXE Foundation and components that are needed to run the DXE Fou…
/device/google/contexthub/util/nanoapp_postprocess/
DAndroid.bp31 // libelf needed for ELF parsing support, libz required by libelf
37 // still work (needed by dependencies)
/device/linaro/bootloader/edk2/OvmfPkg/Include/IndustryStandard/Xen/io/
Dprotocols.h37 # error arch fixup needed here
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Dbytearrayobject.c478 Py_ssize_t avail, needed; in bytearray_setslice() local
497 needed = 0; in bytearray_setslice()
506 needed = vbytes.len; in bytearray_setslice()
521 if (avail != needed) { in bytearray_setslice()
522 if (avail > needed) { in bytearray_setslice()
533 memmove(self->ob_bytes + lo + needed, self->ob_bytes + hi, in bytearray_setslice()
538 Py_SIZE(self) + needed - avail) < 0) { in bytearray_setslice()
542 if (avail < needed) { in bytearray_setslice()
549 memmove(self->ob_bytes + lo + needed, self->ob_bytes + hi, in bytearray_setslice()
550 Py_SIZE(self) - lo - needed); in bytearray_setslice()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dbytearrayobject.c478 Py_ssize_t avail, needed; in bytearray_setslice() local
497 needed = 0; in bytearray_setslice()
506 needed = vbytes.len; in bytearray_setslice()
521 if (avail != needed) { in bytearray_setslice()
522 if (avail > needed) { in bytearray_setslice()
533 memmove(self->ob_bytes + lo + needed, self->ob_bytes + hi, in bytearray_setslice()
538 Py_SIZE(self) + needed - avail) < 0) { in bytearray_setslice()
542 if (avail < needed) { in bytearray_setslice()
549 memmove(self->ob_bytes + lo + needed, self->ob_bytes + hi, in bytearray_setslice()
550 Py_SIZE(self) - lo - needed); in bytearray_setslice()
[all …]
/device/google/sunfish-sepolicy/vendor/google/
Dhal_power_default.te5 # The following folder is incidentally accessed by hal_power_default and is not needed.
Dhal_power_stats_default.te8 # The following folders are incidentally accessed by hal_power_stats_default and are not needed.
/device/linaro/bootloader/edk2/EmbeddedPkg/Library/PrePiLib/
DPrePiLib.inf42 IntelFrameworkPkg/IntelFrameworkPkg.dec # needed to support StatusCodes
43 IntelFrameworkModulePkg/IntelFrameworkModulePkg.dec # needed to support StatusCodes
/device/generic/goldfish/audio/
Dandroid.hardware.audio.service.ranchu.rc4 # media gid needed for /dev/fm (radio) and for /data/misc/media (tee)
/device/linaro/bootloader/edk2/SecurityPkg/
DSecurityPkg.uni120 …"If 0, no initialization needed - most likely used for chipset SRTM solution, in which TPM is alre…
121 … "If 1, initialization needed.<BR>"
126 …"If 0, no initialization needed - most likely used for chipset SRTM solution, in which TPM is alre…
127 … "If 1, initialization needed.<BR>"
132 … "if 0, no SelfTest needed - most likely used for fTPM, because it might already be tested.<BR>\n"
133 … "if 1, SelfTest needed.<BR>"
138 … "if 0, no SCRTM measurement needed - In this case, it is already done.<BR>\n"
144 … "if 0, no SCRTM measurement needed - In this case, it is already done.<BR>\n"
158 … "If this bit is set, that means this algorithm is needed to extend to PCR.<BR>\n"
159 … "If this bit is clear, that means this algorithm is NOT needed to extend to PCR.<BR>\n"
/device/google/trout/agl_services_build/yocto-layer/meta-google/
DREADME.md8 Acquire a Yocto BSP as needed for your use cases.
/device/google/coral-sepolicy/vendor/google/
Dhal_power_stats_default.te9 # The following folders are incidentally accessed by hal_power_stats_default and are not needed.
/device/linaro/bootloader/edk2/OvmfPkg/Include/IndustryStandard/Xen/
DREADME4 The modifications that needed to be done are:
6 - If a struct is using a 64bit field, then a #pragma(4) might be needed
/device/google/sunfish-sepolicy/vendor/qcom/common/
Dhal_sensors_default.te8 # sysfs needed for HW version info
/device/google/bonito-sepolicy/vendor/qcom/common/
Dhal_wifi_default.te18 # debugfs entries are only needed in user-debug or eng builds
Dhal_wifi_ext.te24 # debugfs entries are only needed in user-debug or eng builds
/device/generic/goldfish/sepolicy/common/
Dhostapd_nohidl.te19 # hostapd will attempt to search sysfs but it's not needed and will spam the log
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
Darraymodule.c1721 Py_ssize_t start, stop, step, slicelength, needed; in array_ass_subscr() local
1761 needed = 0; in array_ass_subscr()
1765 needed = Py_SIZE(other); in array_ass_subscr()
1769 value = array_slice(other, 0, needed); in array_ass_subscr()
1793 if (slicelength > needed) { in array_ass_subscr()
1794 memmove(self->ob_item + (start + needed) * itemsize, in array_ass_subscr()
1798 needed - slicelength) < 0) in array_ass_subscr()
1801 else if (slicelength < needed) { in array_ass_subscr()
1803 needed - slicelength) < 0) in array_ass_subscr()
1805 memmove(self->ob_item + (start + needed) * itemsize, in array_ass_subscr()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Darraymodule.c1706 Py_ssize_t start, stop, step, slicelength, needed; in array_ass_subscr() local
1746 needed = 0; in array_ass_subscr()
1750 needed = Py_SIZE(other); in array_ass_subscr()
1754 value = array_slice(other, 0, needed); in array_ass_subscr()
1778 if (slicelength > needed) { in array_ass_subscr()
1779 memmove(self->ob_item + (start + needed) * itemsize, in array_ass_subscr()
1783 needed - slicelength) < 0) in array_ass_subscr()
1786 else if (slicelength < needed) { in array_ass_subscr()
1788 needed - slicelength) < 0) in array_ass_subscr()
1790 memmove(self->ob_item + (start + needed) * itemsize, in array_ass_subscr()
[all …]
/device/google/crosshatch-sepolicy/vendor/qcom/common/
Dhal_wifi_default.te21 # debugfs entries are only needed in user-debug or eng builds
Dhal_sensors_default.te22 # needed by elmyra_raw.cpp
/device/google/coral-sepolicy/vendor/qcom/common/
Dhal_wifi_default.te22 # debugfs entries are only needed in user-debug or eng builds
Dhal_wifi_ext.te22 # debugfs entries are only needed in user-debug or eng builds
/device/google/crosshatch-sepolicy/vendor/google/
Dsmall_hals.te19 # easier to see what rules are needed for what HAL.

123456789