/device/linaro/bootloader/edk2/NetworkPkg/Ip6Dxe/ |
Ip6Input.h | 150 @param[in] Direction The directionality in an SPD entry,
171 IN EFI_IPSEC_TRAFFIC_DIR Direction,
|
/external/autotest/client/common_lib/cros/cfm/metrics/ |
media_info_metrics_extractor.py | 7 # Direction and type numbers map to constants in the DataPoint group in 9 class Direction(enum.Enum): 75 direction=None, 87 @param direction: Only include metrics with this direction in the media 88 stream. See the Direction constants in this module. If None, all 109 and _media_matches(media, direction, media_type) 120 def _media_matches(media, direction, media_type): 121 direction_match = (True if direction is None 122 else media['direction'] == direction.value [all...] |
/external/eigen/Eigen/src/Geometry/ |
OrthoMethods.h | 106 template<typename ExpressionType, int Direction> 109 const typename VectorwiseOp<ExpressionType,Direction>::CrossReturnType 110 VectorwiseOp<ExpressionType,Direction>::cross(const MatrixBase<OtherDerived>& other) const 120 if(Direction==Vertical)
|
/cts/tests/tests/graphics/src/android/graphics/cts/ |
OutlineTest.java | 188 path.addCircle(50, 50, 50, Path.Direction.CW); 197 path.addRect(0, 0, 100, 10, Path.Direction.CW); 198 path.addRect(0, 0, 10, 100, Path.Direction.CW);
|
/device/linaro/bootloader/edk2/MdeModulePkg/Bus/Usb/UsbBusPei/ |
UsbIoPeim.c | 26 @param Direction Specifies the data direction for the data stage.
46 IN EFI_USB_DATA_DIRECTION Direction,
95 Direction,
110 Direction,
138 @param DeviceEndpoint Endpoint number and its direction in bit 7.
|
UsbPeim.h | 119 @param Direction Specifies the data direction for the data stage.
139 IN EFI_USB_DATA_DIRECTION Direction,
150 @param DeviceEndpoint Endpoint number and its direction in bit 7.
|
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/SnpDxe/ |
Snp.h | 338 @param Direction - direction of data flow for this memory's usage:
349 IN UINT32 Direction,
362 @param Direction direction of data flow for this memory's usage:
373 IN UINT32 Direction,
382 > 4GB). Depending on the direction for which the buffer is mapped, undi will
393 @param Direction direction of data flow for this memory's usage:
404 IN UINT32 Direction,
[all...] |
/external/llvm/lib/Transforms/Scalar/ |
LoopInterchange.cpp | 124 // the Dependence Matrix with the direction reversed. 131 char Direction; 139 Direction = '<'; 141 Direction = '='; 143 Direction = '>'; 144 Dep.push_back(Direction); 146 Direction = 'S'; 147 Dep.push_back(Direction); 152 Direction = '<'; 155 Direction = '>' [all...] |
/external/llvm/lib/Analysis/ |
DependenceAnalysis.cpp | 248 // getDirection - Returns the direction associated with a particular level. 251 return DV[Level - 1].Direction; 598 unsigned Direction = getDirection(II); 599 if (Direction == DVEntry::ALL) 602 if (Direction & DVEntry::LT) 604 if (Direction & DVEntry::EQ) 606 if (Direction & DVEntry::GT) 697 // have 2 loops in common, so CommonLevels will equal 2 and the direction [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/ |
DependenceAnalysis.cpp | 248 // getDirection - Returns the direction associated with a particular level. 251 return DV[Level - 1].Direction; 599 unsigned Direction = getDirection(II); 600 if (Direction == DVEntry::ALL) 603 if (Direction & DVEntry::LT) 605 if (Direction & DVEntry::EQ) 607 if (Direction & DVEntry::GT) 712 // have 2 loops in common, so CommonLevels will equal 2 and the direction [all...] |
/external/v8/benchmarks/ |
deltablue.js | 332 var Direction = new Object(); 333 Direction.NONE = 0; 334 Direction.FORWARD = 1; 335 Direction.BACKWARD = -1; 345 this.direction = Direction.NONE; 358 this.direction = (this.v2.mark != mark && Strength.stronger(this.strength, this.v2.walkStrength)) 359 ? Direction.FORWARD 360 : Direction.NONE; 363 this.direction = (this.v1.mark != mark && Strength.stronger(this.strength, this.v1.walkStrength) [all...] |
/external/cldr/tools/java/org/unicode/cldr/util/ |
CLDRTransforms.java | 371 if (directionInfo.getDirection() == Direction.both || directionInfo.getDirection() == Direction.forward) { 380 if (directionInfo.getDirection() == Direction.both || directionInfo.getDirection() == Direction.backward) { 392 * Return Icu rules, and the direction info 407 private void internalRegister(String id, String ruleString, int direction) { 408 if (direction == Transliterator.REVERSE) { 411 internalRegisterNoReverseId(id, ruleString, direction); 414 private void internalRegisterNoReverseId(String id, String ruleString, int direction) { 416 Transliterator t = Transliterator.createFromRules(id, ruleString, direction); 558 final int direction = source.equals("FORWARD") ? Transliterator.FORWARD local 619 int direction; field in class:CLDRTransforms.RuleDirection 741 protected Direction direction = null; field in class:CLDRTransforms.ParsedTransformID [all...] |
/device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/XhciPei/ |
XhciSched.c | 165 Ep->Direction = ((EpAddr & 0x80) != 0) ? EfiUsbDataIn : EfiUsbDataOut;
242 Dci = XhcPeiEndpointToDci (Urb->Ep.EpAddr, (UINT8)(Urb->Ep.Direction));
275 if (Urb->Ep.Direction == EfiUsbDataIn) {
277 } else if (Urb->Ep.Direction == EfiUsbDataOut) {
304 if (Urb->Ep.Direction == EfiUsbDataIn) {
306 } else if (Urb->Ep.Direction == EfiUsbDataOut) {
327 if (Urb->Ep.Direction == EfiUsbDataIn) {
329 } else if (Urb->Ep.Direction == EfiUsbDataOut) {
455 Dci = XhcPeiEndpointToDci (Urb->Ep.EpAddr, (UINT8) (Urb->Ep.Direction));
514 Dci = XhcPeiEndpointToDci (Urb->Ep.EpAddr, (UINT8) (Urb->Ep.Direction));
[all...] |
/device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/XhciDxe/ |
XhciSched.c | 166 Ep->Direction = ((EpAddr & 0x80) != 0) ? EfiUsbDataIn : EfiUsbDataOut;
252 Dci = XhcEndpointToDci (Urb->Ep.EpAddr, (UINT8)(Urb->Ep.Direction));
264 if (((UINT8) (Urb->Ep.Direction)) == EfiUsbDataIn) {
303 if (Urb->Ep.Direction == EfiUsbDataIn) {
305 } else if (Urb->Ep.Direction == EfiUsbDataOut) {
332 if (Urb->Ep.Direction == EfiUsbDataIn) {
334 } else if (Urb->Ep.Direction == EfiUsbDataOut) {
355 if (Urb->Ep.Direction == EfiUsbDataIn) {
357 } else if (Urb->Ep.Direction == EfiUsbDataOut) {
656 Dci = XhcEndpointToDci (Urb->Ep.EpAddr, (UINT8)(Urb->Ep.Direction));
[all...] |
/device/linaro/bootloader/edk2/EmbeddedPkg/Ebl/ |
Main.c | 100 Retreave data from the Command History buffer. Direction maps into up arrow
103 @param Direction Command forward or back
105 @return The Command history based on the Direction
110 IN UINT16 Direction
121 if (Direction == SCAN_UP) {
132 } else if (Direction == SCAN_DOWN) {
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/ |
LoopInterchange.cpp | 134 char Direction; 142 Direction = '<'; 144 Direction = '='; 146 Direction = '>'; 147 Dep.push_back(Direction); 149 Direction = 'S'; 150 Dep.push_back(Direction); 155 Direction = '<'; 158 Direction = '>'; 160 Direction = '=' [all...] |
/bionic/libc/kernel/uapi/linux/ |
cciss_defs.h | 95 BYTE Direction : 2;
|
/device/linaro/bootloader/edk2/MdeModulePkg/Bus/Usb/UsbBotPei/ |
UsbBotPeim.h | 326 @param Direction The direction of the data.
342 IN EFI_USB_DATA_DIRECTION Direction,
|
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Ip4Dxe/ |
Ip4Input.h | 228 @param[in] Direction The directionality in an SPD entry,
248 IN EFI_IPSEC_TRAFFIC_DIR Direction,
|
/device/linaro/bootloader/edk2/MdePkg/Include/Protocol/ |
Supplicant.h | 195 // Indicates that the keys are being installed for the receive direction.
199 // Indicates that the keys are being installed for the transmit direction.
265 // Indicates the direction for which the keys are to be installed.
267 EFI_SUPPLICANT_KEY_DIRECTION Direction;
|
/device/linaro/bootloader/edk2/Omap35xxPkg/Gpio/ |
Gpio.c | 112 IN EMBEDDED_GPIO_PULL Direction
|
/device/linaro/bootloader/edk2/QuarkSocPkg/QuarkSouthCluster/Usb/Ohci/Dxe/ |
Descriptor.h | 105 UINT32 Direction:2;
|
/device/linaro/bootloader/edk2/QuarkSocPkg/QuarkSouthCluster/Usb/Ohci/Pei/ |
Descriptor.h | 104 UINT32 Direction:2;
|
/external/eigen/Eigen/src/Core/util/ |
ForwardDeclarations.h | 244 template<typename MatrixType, typename BinaryOp, int Direction> class PartialReduxExpr; 245 template<typename ExpressionType, int Direction> class VectorwiseOp; 247 template<typename MatrixType, int Direction = BothDirections> class Reverse; 278 template<typename MatrixType,int Direction> class Homogeneous;
|
/external/kernel-headers/original/uapi/linux/ |
cciss_defs.h | 26 /* transfer direction */ 101 BYTE Direction:2;
|