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

12 3 4 5 6 7 8 91011>>

  /external/apache-xml/src/main/java/org/apache/xpath/operations/
Gt.java 27 * The '>' operation expression executer.
29 public class Gt extends Operation
34 * Apply the operation to two operands, and return the result.
40 * @return non-null reference to the XObject that represents the result of the operation.
Gte.java 27 * The '>=' operation expression executer.
29 public class Gte extends Operation
34 * Apply the operation to two operands, and return the result.
40 * @return non-null reference to the XObject that represents the result of the operation.
Lt.java 27 * The '<' operation expression executer.
29 public class Lt extends Operation
34 * Apply the operation to two operands, and return the result.
40 * @return non-null reference to the XObject that represents the result of the operation.
Lte.java 27 * The '<=' operation expression executer.
29 public class Lte extends Operation
34 * Apply the operation to two operands, and return the result.
40 * @return non-null reference to the XObject that represents the result of the operation.
NotEquals.java 27 * The '!=' operation expression executer.
29 public class NotEquals extends Operation
34 * Apply the operation to two operands, and return the result.
40 * @return non-null reference to the XObject that represents the result of the operation.
Quo.java 27 * The 'quo' operation expression executer. (no longer supported by XPath).
30 public class Quo extends Operation
37 * Apply the operation to two operands, and return the result.
43 * @return non-null reference to the XObject that represents the result of the operation.
  /external/tensorflow/tensorflow/cc/gradients/
grad_testutil.cc 23 Status CallGradFunction(const Scope& scope, const Operation& op,
math_grad.cc 56 Status AbsGrad(const Scope& scope, const Operation& op,
65 Status NegGrad(const Scope& scope, const Operation& op,
74 Status InvGrad(const Scope& scope, const Operation& op,
85 Status SquareGrad(const Scope& scope, const Operation& op,
98 Status SqrtGrad(const Scope& scope, const Operation& op,
108 Status RsqrtGrad(const Scope& scope, const Operation& op,
118 Status ExpGrad(const Scope& scope, const Operation& op,
130 Status Expm1Grad(const Scope& scope, const Operation& op,
143 Status LogGrad(const Scope& scope, const Operation& op,
156 Status Log1pGrad(const Scope& scope, const Operation& op
    [all...]
  /external/tensorflow/tensorflow/java/src/main/java/org/tensorflow/
Graph.java 67 * Returns the operation (node in the Graph) with the provided name.
69 * <p>Or {@code null} if no such operation exists in the Graph.
71 public Operation operation(String name) { method in class:Graph
73 long oph = operation(nativeHandle, name);
77 return new Operation(this, oph);
82 * Iterator over all the {@link Operation}s in the graph.
87 public Iterator<Operation> operations() {
92 * Returns a builder to add {@link Operation}s to the Graph.
94 * @param type of the Operation (i.e., identifies the computation to be performed
440 private Operation operation; field in class:Graph.OperationIterator
448 private static native long operation(long handle, String name); method in class:Graph
    [all...]
Operation.java 21 * <p>An Operation is a node in a {@link Graph} that takes zero or more {@link Tensor}s (produced by
24 * <p>Operation instances are valid only as long as the Graph they are a part of is valid. Thus, if
25 * {@link Graph#close()} has been invoked, then methods on the Operation instance may fail with an
28 * <p>Operation instances are immutable and thread-safe.
30 public final class Operation {
32 // Create an Operation instance referring to an operation in g, with the given handle to the C
35 Operation(Graph g, long unsafeNativeHandle) {
40 /** Returns the full name of the Operation. */
51 * Returns the type of the operation, i.e., the name of the computation performed by th
    [all...]
  /device/linaro/bootloader/OpenPlatformPkg/Drivers/I2c/Devices/MvEeprom/
MvEeprom.c 126 IN UINT8 Operation
144 /* First operation contains address, the second is buffer */
146 RequestPacket->Operation[0].LengthInBytes = 2;
147 RequestPacket->Operation[0].Buffer = AllocateZeroPool ( RequestPacket->Operation[0].LengthInBytes );
148 if (RequestPacket->Operation[0].Buffer == NULL) {
152 RequestPacket->Operation[1].Flags = (Operation == EEPROM_READ ? I2C_FLAG_READ : I2C_FLAG_NORESTART);
157 RequestPacket->Operation[0].Buffer[0] = (CurrentAddress >> 8) & 0xff;
158 RequestPacket->Operation[0].Buffer[1] = CurrentAddress & 0xff;
    [all...]
  /device/linaro/bootloader/edk2/ArmPkg/Library/ArmDmaLib/
ArmDmaLib.c 32 DMA_MAP_OPERATION Operation;
52 Operation is relative to the DMA bus master.
54 @param Operation Indicates if the bus master is going to read or write to system memory.
72 IN DMA_MAP_OPERATION Operation,
88 if (Operation >= MapOperationMaximum) {
122 if (Operation == MapOperationBusMasterCommonBuffer) {
124 "%a: Operation type 'MapOperationBusMasterCommonBuffer' is only supported\n"
141 if (Operation == MapOperationBusMasterRead) {
156 // The operation type check above only executes if the buffer happens to be
165 ASSERT (Operation != MapOperationBusMasterCommonBuffer ||
    [all...]
  /external/nos/host/android/hals/keymaster/
buffer.cpp 45 class Operation {
47 Operation(Algorithm algorithm) : _algorithm(algorithm), _buffer{} {
122 static map<uint64_t, Operation> buffer_map;
123 typedef map<uint64_t, Operation>::iterator buffer_item;
128 LOG(ERROR) << "Duplicate operation handle " << handle
136 pair<uint64_t, Operation>(handle, Operation(algorithm)));
142 LOG(ERROR) << "Remaining requested on absent operation: " << handle;
146 const Operation &op = buffer_map.find(handle)->second;
155 LOG(ERROR) << "Append requested on absent operation: " << handle
    [all...]
  /external/tensorflow/tensorflow/go/
operation.go 25 // Operation that has been added to the graph.
26 type Operation struct {
29 // being GCed while the Operation is still alive.
33 // Name returns the name of the operation.
34 func (op *Operation) Name() string {
38 // Type returns the name of the operator used by this operation.
39 func (op *Operation) Type() string {
44 func (op *Operation) NumOutputs() int {
48 // Device returns a specification of the device on which this operation
50 func (op *Operation) Device() string
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/PciBusDxe/
PciCommand.c 23 @param Operation Type of Operation.
24 @param PtrCommand Return buffer holding old PCI command, if operation is not EFI_SET_REGISTER.
26 @return Status of PciIo operation.
34 IN UINT8 Operation,
45 if (Operation != EFI_SET_REGISTER) {
54 if (Operation == EFI_GET_REGISTER) {
60 if (Operation == EFI_ENABLE_REGISTER) {
62 } else if (Operation == EFI_DISABLE_REGISTER) {
  /device/linaro/bootloader/edk2/QuarkSocPkg/QuarkNorthCluster/QNCInit/Dxe/
QNCSmbusExec.c 33 @param Operation Signifies which particular SMBus hardware protocol instance that
38 operation.
39 @param Length Signifies the number of bytes that this operation will do. The
40 maximum number of bytes can be revision specific and operation
42 are executed for this operation. Not all operations require this
50 @retval EFI_INVALID_PARAMETER Operation is not defined in EFI_SMBUS_OPERATION.
54 @retval EFI_UNSUPPORTED The SMBus operation or PEC is not supported.
55 @retval EFI_BUFFER_TOO_SMALL Buffer is not sufficient for this operation.
62 IN EFI_SMBUS_OPERATION Operation,
77 switch (Operation) {
    [all...]
  /external/llvm/include/llvm/MC/
MCDwarf.h 346 OpType Operation;
356 : Operation(Op), Label(L), Register(R), Offset(O),
362 : Operation(Op), Label(L), Register(R1), Register2(R2) {
461 OpType getOperation() const { return Operation; }
465 assert(Operation == OpDefCfa || Operation == OpOffset ||
466 Operation == OpRestore || Operation == OpUndefined ||
467 Operation == OpSameValue || Operation == OpDefCfaRegister |
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/MC/
MCDwarf.h 437 OpType Operation;
447 : Operation(Op), Label(L), Register(R), Offset(O),
453 : Operation(Op), Label(L), Register(R1), Register2(R2) {
552 OpType getOperation() const { return Operation; }
556 assert(Operation == OpDefCfa || Operation == OpOffset ||
557 Operation == OpRestore || Operation == OpUndefined ||
558 Operation == OpSameValue || Operation == OpDefCfaRegister |
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/DWARF/
DWARFExpression.cpp 23 typedef std::vector<DWARFExpression::Operation::Description> DescVector;
27 typedef DWARFExpression::Operation Op;
102 static DWARFExpression::Operation::Description getOpDesc(unsigned OpCode) {
105 // Handle possible corrupted or unsupported operation.
115 bool DWARFExpression::Operation::extract(DataExtractor Data, uint16_t Version,
120 if (Desc.Version == Operation::DwarfNA) {
127 unsigned Signed = Size & Operation::SignBit;
129 if (Size == Operation::SizeNA)
132 switch (Size & ~Operation::SignBit) {
133 case Operation::Size1
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-cov/
CoverageFilters.h 82 enum Operation { LessThan, GreaterThan };
85 Operation Op;
88 StatisticThresholdFilter(Operation Op, T Threshold)
109 RegionCoverageFilter(Operation Op, double Threshold)
121 LineCoverageFilter(Operation Op, double Threshold)
  /external/tensorflow/tensorflow/cc/framework/
scope_internal.h 48 const std::vector<Operation>& control_deps() const { return control_deps_; }
74 std::vector<Operation> control_deps, bool clear_control_deps);
79 Impl(const Scope& other, Tags::Colocate, const Operation& colocate_with_op,
85 const Operation& colocate_with_op) const;
107 const std::vector<Operation> control_deps_;
  /external/protobuf/src/google/protobuf/
wire_format.h 233 enum Operation {
241 static void VerifyUTF8String(const char* data, int size, Operation op);
246 Operation op,
313 WireFormat::Operation op) {
316 data, size, static_cast<WireFormatLite::Operation>(op), NULL);
324 const char* data, int size, WireFormat::Operation op,
328 data, size, static_cast<WireFormatLite::Operation>(op), field_name);
  /external/brotli/java/org/brotli/wrapper/enc/
Encoder.java 112 boolean encode(EncoderJNI.Operation op) throws IOException {
113 boolean force = (op != EncoderJNI.Operation.PROCESS);
140 encode(EncoderJNI.Operation.FLUSH);
149 encode(EncoderJNI.Operation.FINISH);
171 encoder.push(EncoderJNI.Operation.FINISH, data.length);
182 encoder.push(EncoderJNI.Operation.FINISH, 0);
  /external/swiftshader/third_party/LLVM/include/llvm/MC/
MCDwarf.h 234 OpType Operation;
241 : Operation(Op), Label(L) {
245 : Operation(Op), Label(L), Destination(Register) {
250 : Operation(Move), Label(L), Destination(D), Source(S) {
254 : Operation(Op), Label(L), Destination(D), Source(S) {
257 OpType getOperation() const { return Operation; }
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-ar/
llvm-ar.cpp 68 USAGE: llvm-ar [options] [-]<operation>[modifiers] [relpos] <archive> [files]
168 // Modifiers to follow operation to vary behavior
218 // Parse the command line options as presented and return the operation
220 // modifier/operation pairs have not been violated.
236 // Keep track of which operation was requested
237 ArchiveOperation Operation;
243 case 'd': ++NumOperations; Operation = Delete; break;
244 case 'm': ++NumOperations; Operation = Move ; break;
245 case 'p': ++NumOperations; Operation = Print; break;
246 case 'q': ++NumOperations; Operation = QuickAppend; break
    [all...]

Completed in 298 milliseconds

12 3 4 5 6 7 8 91011>>