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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/av/media/libaudioclient/aidl/android/media/VolumeShaper/
Operation.aidl 19 parcelable Operation cpp_header "media/VolumeShaper.h";
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
op_queue.hpp 22 template <typename Operation>
28 template <typename Operation>
29 static Operation* next(Operation* o)
31 return static_cast<Operation*>(o->next_);
40 template <typename Operation>
41 static void destroy(Operation* o)
46 template <typename Operation>
47 static Operation*& front(op_queue<Operation>& q
    [all...]
  /external/syzkaller/vendor/google.golang.org/grpc/naming/
naming.go 25 // Operation defines the corresponding operations for a name resolution change.
28 type Operation uint8
32 Add Operation = iota
42 // Op indicates the operation of the update.
43 Op Operation
  /external/tensorflow/tensorflow/java/src/main/java/org/tensorflow/op/
PrimitiveOp.java 18 import org.tensorflow.Operation;
21 * A base class for {@link Op} implementations that are backed by a single {@link Operation}.
23 * <p>Each operation registered in the TensorFlow core is a primitive and is provided as a {@code
28 /** Returns the underlying {@link Operation} */
29 public Operation op() {
30 return operation;
35 return operation.hashCode();
43 // Note: we consider that all objects wrapping the same operation are equal, no matter their
48 return operation.equals(((PrimitiveOp) obj).operation);
56 protected final Operation operation; field in class:PrimitiveOp
    [all...]
  /device/linaro/bootloader/edk2/OvmfPkg/Library/XenHypercallLib/
XenHypercall.c 49 IN UINTN Operation,
54 Operation, (INTN) Arguments);
60 IN INTN Operation,
65 Operation, (INTN) Arguments);
  /external/tensorflow/tensorflow/cc/gradients/
grad_testutil.h 28 Status CallGradFunction(const Scope& scope, const Operation& op,
array_grad.cc 42 Status PackGrad(const Scope& scope, const Operation& op,
59 Status UnpackGrad(const Scope& scope, const Operation& op,
69 Status IdentityGrad(const Scope& scope, const Operation& op,
77 Status RefIdentityGrad(const Scope& scope, const Operation& op,
85 Status QuantizeAndDequantizeGrad(const Scope& scope, const Operation& op,
93 Status QuantizeAndDequantizeV2Grad(const Scope& scope, const Operation& op,
103 Status QuantizeAndDequantizeV3Grad(const Scope& scope, const Operation& op,
114 Status SplitGrad(const Scope& scope, const Operation& op,
123 Status FillGrad(const Scope& scope, const Operation& op,
141 Status DiagGrad(const Scope& scope, const Operation& op
    [all...]
  /frameworks/av/media/libaudioclient/aidl/android/media/
IPlayer.aidl 20 import android.media.VolumeShaper.Operation;
33 in Operation operation);
  /external/v8/src/runtime/
runtime-bigint.cc 20 bool result = ComparisonResultToBool(static_cast<Operation>(mode->value()),
31 bool result = ComparisonResultToBool(static_cast<Operation>(mode->value()),
43 ComparisonResultToBool(static_cast<Operation>(mode->value()),
102 Operation op = static_cast<Operation>(opcode);
112 case Operation::kAdd:
115 case Operation::kSubtract:
118 case Operation::kMultiply:
121 case Operation::kDivide:
124 case Operation::kModulus
    [all...]
  /external/llvm/tools/llvm-cov/
CoverageFilters.h 57 enum Operation { LessThan, GreaterThan };
60 Operation Op;
63 StatisticThresholdFilter(Operation Op, T Threshold)
84 RegionCoverageFilter(Operation Op, double Threshold)
95 LineCoverageFilter(Operation Op, double Threshold)
  /external/python/apitools/samples/servicemanagement_sample/
messages_test.py 33 prop = messages.Operation.ResponseValue.AdditionalProperty
34 messages.Operation(
35 name='operation-12345-67890',
37 response=messages.Operation.ResponseValue(
  /external/tensorflow/tensorflow/java/src/main/java/org/tensorflow/
Output.java 21 * A symbolic handle to a tensor produced by an {@link Operation}.
24 * computed by executing the {@link Operation} in a {@link Session}.
31 /** Handle to the idx-th output of the Operation {@code op}. */
32 public Output(Operation op, int idx) {
33 operation = op;
37 /** Returns the Operation that will produce the tensor referred to by this Output. */
38 public Operation op() {
39 return operation;
42 /** Returns the index into the outputs of the Operation. */
49 return new Shape(operation.shape(index))
86 private final Operation operation; field in class:Output
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/MC/
MCWin64EH.h 31 OpType Operation;
37 : Operation(Op), Label(L), Offset(0), Register(Reg) {
41 : Operation(Size>128 ? Win64EH::UOP_AllocLarge : Win64EH::UOP_AllocSmall),
44 : Operation(Op), Label(L), Offset(Off), Register(Reg) {
52 : Operation(Op), Label(L), Offset(Code ? 1 : 0) {
55 OpType getOperation() const { return Operation; }
  /art/test/149-suspend-all-stress/
suspend_all.cc 27 enum Operation {
38 switch (static_cast<Operation>(iterations % kOPNumber)) {
  /device/linaro/bootloader/edk2/OvmfPkg/Include/Library/
XenHypercallLib.h 67 Hypercall to do different operation on the memory.
69 @param Operation The operation number, e.g. XENMEM_add_to_physmap.
70 @param Arguments The arguments associated to the operation.
78 IN UINTN Operation,
83 Do an operation on the event channels.
85 @param Operation The operation number, e.g. EVTCHNOP_send.
86 @param Arguments The argument associated to the operation.
94 IN INTN Operation,
    [all...]
  /external/tensorflow/tensorflow/cc/framework/
ops.cc 21 Operation::Operation(Node* n) : inputs_(GetInputs(n)), node_(n) {}
23 Output Operation::input(int32 i) const {
28 // Operation was constructed.
40 Output Operation::output(int32 i) const {
47 uint64 Operation::hash(int32 index) const {
52 Operation::Inputs Operation::GetInputs(Node* node) {
53 Operation::Inputs inputs;
  /art/test/004-ThreadStress/src-art/
Main.java 64 private static abstract class Operation {
66 * Perform the action represented by this operation. Returns true if the thread should
72 private final static class OOM extends Operation {
88 private final static class SigQuit extends Operation {
131 private final static class Alloc extends Operation {
148 private final static class LargeAlloc extends Operation {
166 private final static class NonMovingAlloc extends Operation {
185 private final static class StackTrace extends Operation {
196 private final static class Exit extends Operation {
203 private final static class Sleep extends Operation {
771 Operation operation = operations[nextOperation]; local
809 Operation operation = operations[i]; local
    [all...]
  /device/linaro/bootloader/edk2/UefiCpuPkg/PiSmmCpuDxeSmm/
CpuService.c 99 if (gSmmCpuPrivate->Operation[ProcessorNumber] != SmmCpuNone ||
107 gSmmCpuPrivate->Operation[ProcessorNumber] = SmmCpuSwitchBsp;
172 gSmmCpuPrivate->Operation[Index] = SmmCpuAdd;
189 @retval EFI_UNSUPPORTED Hot removal of a processor with pending hot-plug operation is not supported.
218 if (gSmmCpuPrivate->Operation[ProcessorNumber] != SmmCpuNone) {
228 gSmmCpuPrivate->Operation[ProcessorNumber] = SmmCpuRemove;
276 Update the SMM CPU list per the pending operation.
291 if (gSmmCpuPrivate->Operation[Index] == SmmCpuSwitchBsp) {
292 gSmmCpuPrivate->Operation[Index] = SmmCpuNone;
302 if (gSmmCpuPrivate->Operation[Index] == SmmCpuAdd) {
    [all...]
  /external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/operators/
rx-reduce.hpp 539 class Operation = operators::detail::first<SValue>,
540 class Seed = decltype(Operation::seed()),
541 class Accumulator = Operation,
542 class ResultSelector = Operation,
549 return Result(Reduce(o.take(1), Operation{}, Operation{}, Operation::seed()));
565 class Operation = operators::detail::last<SValue>,
566 class Seed = decltype(Operation::seed()),
567 class Accumulator = Operation,
    [all...]
  /external/tensorflow/tensorflow/go/
saved_model_test.go 26 if op := bundle.Graph.Operation("y"); op == nil {
  /external/deqp/framework/common/
tcuThreadUtil.hpp 76 // Used by class Operation only
129 class Operation
132 Operation (const char* name);
133 virtual ~Operation (void);
141 virtual void exec (Thread& thread) = 0; //!< Overwritten by inherited class to perform actual operation
149 Operation (const Operation&);
150 Operation& operator= (const Operation&);
168 virtual void init (void) {} //!< Called first before any Operation
    [all...]
  /external/tensorflow/tensorflow/java/src/test/java/org/tensorflow/
OperationTest.java 31 /** Unit tests for {@link org.tensorflow.Operation}. */
38 Operation op =
56 Operation op1;
59 Operation op2 = TestUtil.constant(g, "op2", 2).op();
60 Operation op3 = new Operation(g, op1.getUnsafeNativeHandle());
61 Operation op4 = g.operation("op1");
73 Operation newOp1 = TestUtil.constant(g, "op1", 1).op();
81 Operation op1 = TestUtil.constant(g, "op1", 1).op()
    [all...]
  /external/llvm/tools/llvm-ar/
llvm-ar.cpp 112 "\nMODIFIERS (operation specific):\n"
138 // Modifiers to follow operation to vary behavior
203 // Parse the command line options as presented and return the operation
205 // modifier/operation pairs have not been violated.
223 // Keep track of which operation was requested
224 ArchiveOperation Operation;
230 case 'd': ++NumOperations; Operation = Delete; break;
231 case 'm': ++NumOperations; Operation = Move ; break;
232 case 'p': ++NumOperations; Operation = Print; break;
233 case 'q': ++NumOperations; Operation = QuickAppend; break
    [all...]
  /external/grpc-grpc/src/python/grpcio/grpc/_cython/_cygrpc/
operation.pxd.pxi 16 cdef class Operation:
25 cdef class SendInitialMetadataOperation(Operation):
36 cdef class SendMessageOperation(Operation):
46 cdef class SendCloseFromClientOperation(Operation):
54 cdef class SendStatusFromServerOperation(Operation):
68 cdef class ReceiveInitialMetadataOperation(Operation):
78 cdef class ReceiveMessageOperation(Operation):
88 cdef class ReceiveStatusOnClientOperation(Operation):
104 cdef class ReceiveCloseOnServerOperation(Operation):
  /device/linaro/bootloader/edk2/QuarkSocPkg/QuarkNorthCluster/QNCInit/Dxe/
QNCSmbus.h 30 Executes an SMBus operation to an SMBus controller. Returns when either the command has been
31 executed or an error is encountered in doing the operation.
33 The internal worker function provides a standard way to execute an operation as defined in the
43 @param Operation Signifies which particular SMBus hardware protocol instance that
48 operation.
49 @param Length Signifies the number of bytes that this operation will do. The
50 maximum number of bytes can be revision specific and operation
52 are executed for this operation. Not all operations require this
61 @retval EFI_TIMEOUT Timeout expired before the operation was completed. Timeout is
68 @retval EFI_INVALID_PARAMETER Operation is not defined in EFI_SMBUS_OPERATION.
    [all...]

Completed in 569 milliseconds

1 2 3 4 5 6 7 8 91011>>