HomeSort by relevance Sort by last modified time
    Searched refs:Operation (Results 51 - 75 of 443) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/tensorflow/tensorflow/cc/framework/
scope.h 129 const gtl::ArraySlice<Operation>& control_deps) const;
130 /// Same as above, but convenient to add control dependency on the operation
155 Scope ColocateWith(const Operation& op) const;
232 const std::vector<Operation>& control_deps() const;
  /frameworks/av/media/libaudioclient/
TrackPlayerBase.cpp 110 const VolumeShaper::Operation& operation) {
113 sp<VolumeShaper::Operation> spOperation = new VolumeShaper::Operation(operation);
  /device/linaro/bootloader/OpenPlatformPkg/Platforms/Marvell/Include/Protocol/
Eeprom.h 51 IN UINT8 Operation
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Ppi/BaseMemoryTest/
BaseMemoryTest.h 48 IN PEI_MEMORY_TEST_OP Operation,
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Protocol/PciHotPlugRequest/
PciHotPlugRequest.h 39 IN EFI_PCI_HOTPLUG_OPERATION Operation,
  /device/linaro/bootloader/edk2/EmbeddedPkg/Include/Library/
DmaLib.h 6 DMA Bus Master Read Operation:
10 Wait for DMA Bus Master to complete the read operation.
13 DMA Bus Master Write Operation:
17 Wait for DMA Bus Master to complete the write operation.
20 DMA Bus Master Common Buffer Operation:
45 /// A read operation from system memory by a bus master.
49 /// A write operation from system memory by a bus master.
66 Operation is relative to the DMA bus master.
68 @param Operation Indicates if the bus master is going to read or write to system memory.
86 IN DMA_MAP_OPERATION Operation,
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Include/Pi/
PiI2c.h 113 /// I2C read operation when set
117 /// Define the flags for SMBus operation
119 /// The following flags are also present in only the first I2C operation
124 /// SMBus operation
127 /// SMBus block operation
129 /// the LengthInBytes field of the operation in the request packet with
138 /// SMBus process call operation
250 /// I2C device operation
254 /// Some transactions will consist of a single operation while others will
258 /// only) operation and will return EFI_UNSUPPORTED status when these
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
PciHotPlugRequest.h 22 be called with an add operation, and the PCI bus driver will enumerate and
24 interface will be called with a remove operation, and the PCI bus driver will
86 operations include add operation and remove operation. If it is a add operation,
93 NumberOfChildren. If it is a remove operation, when NumberOfChildren contains
100 @param[in] Operation The operation the PCI bus driver is requested
107 when the Operation is a add operation. If
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/operations/
Div.java 28 * The 'div' operation expression executer.
30 public class Div extends Operation
35 * Apply the operation to two operands, and return the result.
41 * @return non-null reference to the XObject that represents the result of the operation.
52 * Evaluate this operation directly to a double.
56 * @return The result of the operation as a double.
Minus.java 28 * The binary '-' operation expression executer.
30 public class Minus extends Operation
35 * Apply the operation to two operands, and return the result.
42 * result of the operation.
53 * Evaluate this operation directly to a double.
57 * @return The result of the operation as a double.
Mod.java 28 * The 'mod' operation expression executer.
30 public class Mod extends Operation
35 * Apply the operation to two operands, and return the result.
41 * @return non-null reference to the XObject that represents the result of the operation.
52 * Evaluate this operation directly to a double.
56 * @return The result of the operation as a double.
Mult.java 28 * The '*' operation expression executer.
30 public class Mult extends Operation
35 * Apply the operation to two operands, and return the result.
41 * @return non-null reference to the XObject that represents the result of the operation.
52 * Evaluate this operation directly to a double.
56 * @return The result of the operation as a double.
Operation.java 19 * $Id: Operation.java 468655 2006-10-28 07:12:06Z minchau $
30 * The baseclass for a binary operation.
32 public class Operation extends Expression implements ExpressionOwner
80 * Set the left and right operand expressions for this operation.
95 * Execute a binary operation by calling execute on each of the operands,
101 * @return The XObject result of the operation.
119 * Apply the operation to two operands, and return the result.
125 * @return non-null reference to the XObject that represents the result of the operation.
135 /** @return the left operand of binary operation, as an Expression.
141 /** @return the right operand of binary operation, as an Expression
    [all...]
Plus.java 28 * The '+' operation expression executer.
30 public class Plus extends Operation
35 * Apply the operation to two operands, and return the result.
41 * @return non-null reference to the XObject that represents the result of the operation.
52 * Evaluate this operation directly to a double.
56 * @return The result of the operation as a double.
  /frameworks/av/media/libaudioclient/include/media/
TrackPlayerBase.h 37 const media::VolumeShaper::Operation& operation);
  /external/tensorflow/tensorflow/java/src/main/java/org/tensorflow/
Session.java 24 * <p>A {@code Session} instance encapsulates the environment in which {@link Operation}s in a
112 * Run {@link Operation}s and evaluate {@link Tensor}s.
114 * <p>A Runner runs the necessary graph fragments to execute every {@link Operation} required to
121 * Avoid evaluating {@code operation} and substitute {@code t} for the value it produces.
123 * @param operation Is either the string name of the operation, in which case this method is a
124 * shorthand for {@code feed(operation, 0)}, or it is a string of the form
130 public Runner feed(String operation, Tensor<?> t) {
131 return feed(parseOutput(operation), t);
135 * Avoid evaluating the {@code index}-th output of {@code operation} by substituting {@code t
    [all...]
  /external/tensorflow/tensorflow/cc/gradients/
nn_grad.cc 27 Status SoftmaxGrad(const Scope& scope, const Operation& op,
55 // The Operation we were provided is not named something obvious so
77 const Operation& op,
116 Status LogSoftmaxGrad(const Scope& scope, const Operation& op,
128 Status ReluGradHelper(const Scope& scope, const Operation& op,
137 Status Relu6GradHelper(const Scope& scope, const Operation& op,
146 Status LeakyReluGradHelper(const Scope& scope, const Operation& op,
159 Status LeakyReluGradGradHelper(const Scope& scope, const Operation& op,
173 Status EluGradHelper(const Scope& scope, const Operation& op,
182 Status SeluGradHelper(const Scope& scope, const Operation& op
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/
XPathVisitor.java 28 import org.apache.xpath.operations.Operation;
105 * Visit a binary operation.
108 * @param op The operation object.
111 public boolean visitBinaryOperation(ExpressionOwner owner, Operation op)
117 * Visit a unary operation.
120 * @param op The operation object.
  /external/brotli/java/org/brotli/wrapper/enc/
BrotliOutputStream.java 61 while (!encoder.encode(EncoderJNI.Operation.PROCESS)) {
78 if (!encoder.encode(EncoderJNI.Operation.PROCESS)) {
EncoderJNI.java 21 enum Operation {
45 void push(Operation op, int length) {
  /external/cldr/tools/java/org/unicode/cldr/draft/
UnicodeSetBuilder.java 63 private enum Operation {
70 Operation operation; field in class:UnicodeSetBuilder.MyObjectBuilder.Info
72 public Info(UnicodeSet set, boolean negated, Operation operation) {
76 this.operation = operation;
93 private Operation operation; field in class:UnicodeSetBuilder.MyObjectBuilder
198 pushInfo(Operation.union)
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/synchronization/
vktSynchronizationOperation.hpp 23 * \brief Synchronization operation abstraction
108 // Similar to Context, but allows test instance to decide which resources are used by the operation.
109 // E.g. this is needed when we want operation to work on a particular queue instead of the universal queue.
198 // read - the layout image must be in before being passed to the read operation
199 // write - the layout image will be in after the write operation has finished
213 // Abstract operation on a resource
215 // read - data actually read by the operation
216 // write - expected data that operation was supposed to write
218 class Operation
221 Operation (void) {
    [all...]
  /external/llvm/include/llvm/MC/
MCWinEH.h 25 const unsigned Operation;
28 : Label(L), Offset(Off), Register(Reg), Operation(Op) {}
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/MC/
MCWinEH.h 25 const unsigned Operation;
28 : Label(L), Offset(Off), Register(Reg), Operation(Op) {}
  /external/tensorflow/tensorflow/cc/client/
client_session.h 80 const std::vector<Operation>& run_outputs,
87 const std::vector<Operation>& run_outputs,

Completed in 1341 milliseconds

1 23 4 5 6 7 8 91011>>