/external/v8/src/runtime/ |
runtime-strings.cc | 652 ComparisonResultToBool(Operation::kLessThan, result)); 663 ComparisonResultToBool(Operation::kLessThanOrEqual, result)); 674 ComparisonResultToBool(Operation::kGreaterThan, result)); 685 ComparisonResultToBool(Operation::kGreaterThanOrEqual, result));
|
/frameworks/av/media/libmedia/include/media/ |
mediaplayer.h | 266 const sp<media::VolumeShaper::Operation>& operation);
|
/frameworks/av/media/libmediaplayerservice/include/ |
MediaPlayerInterface.h | 135 * buffer, unless an error occurs or the copy operation is 154 const sp<media::VolumeShaper::Operation>& operation) = 0;
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/AsmParser/ |
AMDGPUAsmParser.cpp | [all...] |
/external/tensorflow/tensorflow/python/tpu/ |
tpu.py | 360 logging.error("Operation of type %s (%s) is not supported on the TPU. " 556 3) Operation-only outputs: a NoOp would be returned which [all...] |
/external/tensorflow/tensorflow/python/framework/ |
ops.py | 234 """Represents one of the outputs of an `Operation`. 237 `Operation`. It does not hold the values of that operation's output, 243 1. A `Tensor` can be passed as an input to another `Operation`. 314 op: An `Operation`. `Operation` that computes this tensor. 315 value_index: An `int`. Index of the operation's endpoint that produces 320 TypeError: If the op is not an `Operation`. 322 if not isinstance(op, Operation): 323 raise TypeError("op needs to be an Operation: %s" % op [all...] |
/external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/ |
vktSpvAsmFloatControlsTests.cpp | 69 // Codes for all float values used in tests as arguments and operation results 74 V_UNUSED = 0, // used to mark arguments that are not used in operation 109 // non comon results of some operation - corner cases 308 // All values used for arguments and operation results are stored in single map. 613 // need to do that in fragment stage; we also cant pass operation result 864 //operation den op one den op den den op inf den op nan 896 //operation op den 936 //operation den op one den op den den op inf den op nan 960 //operation op den 1714 OperationId operation = binaryCase.operationId; local 1725 OperationId operation = unaryCase.operationId; local 1733 OperationId operation = binaryCase.operationId; local 1744 OperationId operation = unaryCase.operationId; local 2165 const Operation& operation; member in struct:vkt::SpirVAssembly::__anon19194::TestGroupBuilderBase::TestCaseInfo 2230 const Operation& operation = testCaseInfo.operation; local [all...] |
/external/swiftshader/third_party/LLVM/lib/AsmParser/ |
LLParser.cpp | [all...] |
/device/linaro/bootloader/edk2/OvmfPkg/XenPvBlkDxe/ |
BlockFront.c | 465 Request->operation = IsWrite ? BLKIF_OP_WRITE : BLKIF_OP_READ;
525 IN UINT8 Operation,
536 Request->operation = Operation;
605 switch (Response->operation) {
615 Response->operation == BLKIF_OP_READ ? "read" : "write",
641 "XenPvBlk: unrecognized block operation %d response (status %d)\n",
642 Response->operation, Status));
|
/external/apache-xml/src/main/java/org/apache/xpath/compiler/ |
Compiler.java | 55 import org.apache.xpath.operations.Operation; 69 * of operation codes (op map) and then builds from that into an Expression 200 * Bottle-neck compilation of an operation with left and right operands. 202 * @param operation non-null reference to parent operation. 203 * @param opPos The op map position of the parent operation. 205 * @return reference to {@link org.apache.xpath.operations.Operation} instance. 209 private Expression compileOperation(Operation operation, int opPos) 216 operation.setLeftRight(compile(leftPos), compile(rightPos)) [all...] |
/external/deqp/external/vulkancts/modules/vulkan/synchronization/ |
vktSynchronizationOperationSingleQueueTests.cpp | 67 const de::UniquePtr<Operation> m_writeOp; 68 const de::UniquePtr<Operation> m_readOp; 430 return createTestGroup(testCtx, "single_queue", "Synchronization of a memory-modifying operation", createTests, &pipelineCacheData);
|
/external/mesa3d/docs/specs/OLD/ |
MESA_packed_depth_stencil.spec | 72 Additions to Chapter 2 of the 1.1 Specification (OpenGL Operation)
|
/external/pdfium/xfa/fxfa/ |
fxfa_basic.h | 409 Operation, 678 Operation,
|
/external/protobuf/src/google/protobuf/ |
wire_format_lite.h | 319 enum Operation { 326 Operation op,
|
/external/tensorflow/tensorflow/core/profiler/g3doc/ |
command_line.md | 11 * [Define Customized Operation Type](#define-customized-operation-type) 45 tensorflow.tfprof.OpLogProto (optional). A proto used to provide extra operation 46 information. 1) float operations. 2) code traces. 3) define customized operation 87 # --op_log_path contains float operation and code traces. 95 # and profile execution info of each operation. 234 Where does `_trainable_variables` come from? It is customized operation type 236 Users can [Define Customized Operation Type](#define-customized-operation-type) 238 <b>Following example shows importance of defining customized operation type.</b [all...] |
/external/tensorflow/tensorflow/go/genop/internal/ |
genop.go | 21 // - One function for each TensorFlow operation 22 // - The arguments to the function are the inputs and required attributes of the operation 24 // - A function is also generated for each optional attribute of the operation. 54 // containing functions for each TensorFlow operation registered in the address 133 if strings.HasPrefix(op.Name, "_") { // Internal operation 155 // Undocumented operation, perhaps a sign of not being ready to 190 func makeOutputList(op *tf.Operation, start int, output string) ([]tf.Output, int, error) { 263 // Returns the created operation. 298 {{- /* Construct outputs: len(.OutArgs) or a *tf.Operation */ -}} 303 (o *tf.Operation) [all...] |
/external/tensorflow/tensorflow/python/ops/ |
functional_ops.py | 511 name: A name for the operation (optional). 547 name: A name for the operation (optional). 567 # Nullary functions return an Operation. Normal functions can't do this 569 if isinstance(result, ops.Operation): 598 name: A name for the operation (optional). 699 # Nullary functions return an Operation. Normal functions can't do this 701 if isinstance(for_result, ops.Operation): 741 name: A name for the operation (optional). 804 the `Operation` if not. [all...] |
/external/tensorflow/tensorflow/python/saved_model/ |
builder_impl.py | 465 TypeError: if main op is provided but is not of type `Operation`. 471 if not isinstance(main_op, ops.Operation): 472 raise TypeError("main_op needs to be an Operation: %r" % main_op) 495 TypeError if Train op is not of type `Operation`. 499 not isinstance(train_op, ops.Operation)): [all...] |
/device/linaro/bootloader/edk2/ArmPlatformPkg/ArmJunoPkg/Drivers/PciHostBridgeDxe/ |
PciHostBridge.h | 255 IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_OPERATION Operation,
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Efi/Protocol/PxeBaseCode/ |
PxeBaseCode.h | 266 IN EFI_PXE_BASE_CODE_TFTP_OPCODE Operation,
|
/device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Bus/Isa/IsaFloppyDxe/ |
IsaFloppy.h | 559 exhaustive verification operation of the device during
597 the read operation
630 the write operation
733 @retval EFI_DEVICE_ERROR: Fail to do the recalibrate or seek operation
743 Do the Specify command, this command sets DMA operation
762 @retval EFI_SUCCESS: Execute the Recalibrate operation successfully
763 @retval EFI_DEVICE_ERROR: Fail to execute the Recalibrate operation
777 @retval EFI_SUCCESS: Execute the Seek operation successfully
778 @retval EFI_DEVICE_ERROR: Fail to execute the Seek operation
828 @retval EFI_SUCCESS: Do the operation successfully [all...] |
/device/linaro/bootloader/edk2/MdeModulePkg/Library/PiDxeS3BootScriptLib/ |
BootScriptExecute.c | 19 Executes an SMBus operation to an SMBus controller. Returns when either the command has been
20 executed or an error is encountered in doing the operation.
22 The SmbusExecute() function provides a standard way to execute an operation as defined in the System
28 @param Operation Signifies which particular SMBus hardware protocol instance that
32 @param Length Signifies the number of bytes that this operation will do. The
33 maximum number of bytes can be revision specific and operation
35 are executed for this operation. Not all operations require this
44 @retval EFI_TIMEOUT Timeout expired before the operation was completed. Timeout is
51 @retval EFI_INVALID_PARAMETER Operation is not defined in EFI_SMBUS_OPERATION.
55 @retval EFI_UNSUPPORTED The SMBus operation or PEC is not supported. [all...] |
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Mtftp4Dxe/ |
Mtftp4Wrq.c | 496 @param Operation Redundant parameter, which is always
506 IN UINT16 Operation
|
/device/linaro/bootloader/edk2/MdePkg/Include/IndustryStandard/ |
Pal.h | 49 @param Operation Formatted bit vector indicating the
50 operation of this call.
53 operation.
67 starting position of the flush operation.
[all...] |
/device/linaro/bootloader/edk2/MdePkg/Include/Protocol/ |
PxeBaseCode.h | 396 @retval EFI_DEVICE_ERROR The network device encountered an error during this operation.
430 @retval EFI_DEVICE_ERROR The network device encountered an error during this operation.
475 type of discovery operation that is to be performed.
480 @retval EFI_DEVICE_ERROR The network device encountered an error during this operation.
504 read a directory, and read a file. The type of operation is specified by Operation.
505 If the callback function that is invoked during the TFTP/MTFTP operation does
513 read operation, then BufferSize will be set to the size of the downloaded file,
517 (greater than 64 MB) files--instead of making two calls to the read-file operation.
523 BufferSize specifies the number of bytes to send. If the write operation completes [all...] |