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

1 2 3 4 5 6 7 8 91011>>

  /external/minijail/
syscall_wrapper.h 6 int sys_seccomp(unsigned int operation, unsigned int flags, void *args);
  /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
30 return operation.hashCode();
38 // Note: we consider that all objects wrapping the same operation are equal, no matter their
43 return operation.equals(((PrimitiveOp) obj).operation);
48 return String.format("<%s '%s'>", operation.type(), operation.name());
52 * Underlying operation. It is deliberately not exposed by a getter method to avoid any nam
55 protected final Operation operation; field in class:PrimitiveOp
    [all...]
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
wait_op.hpp 16 #include "asio/detail/operation.hpp"
24 : public operation
32 : operation(func)
operation.hpp 2 // detail/operation.hpp
22 typedef task_io_service_operation operation; typedef in namespace:asio::detail
  /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...]
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue9370.go 36 _ = e >= c // ERROR "invalid operation.*not defined"
39 _ = c >= e // ERROR "invalid operation.*not defined"
43 _ = i >= c // ERROR "invalid operation.*not defined"
46 _ = c >= i // ERROR "invalid operation.*not defined"
50 _ = e >= n // ERROR "invalid operation.*not defined"
53 _ = n >= e // ERROR "invalid operation.*not defined"
56 _ = i == n // ERROR "invalid operation.*mismatched types"
57 _ = i != n // ERROR "invalid operation.*mismatched types"
58 _ = i >= n // ERROR "invalid operation.*mismatched types"
59 _ = n == i // ERROR "invalid operation.*mismatched types
    [all...]
  /prebuilts/go/linux-x86/test/fixedbugs/
issue9370.go 36 _ = e >= c // ERROR "invalid operation.*not defined"
39 _ = c >= e // ERROR "invalid operation.*not defined"
43 _ = i >= c // ERROR "invalid operation.*not defined"
46 _ = c >= i // ERROR "invalid operation.*not defined"
50 _ = e >= n // ERROR "invalid operation.*not defined"
53 _ = n >= e // ERROR "invalid operation.*not defined"
56 _ = i == n // ERROR "invalid operation.*mismatched types"
57 _ = i != n // ERROR "invalid operation.*mismatched types"
58 _ = i >= n // ERROR "invalid operation.*mismatched types"
59 _ = n == i // ERROR "invalid operation.*mismatched types
    [all...]
  /bionic/libc/kernel/uapi/linux/netfilter/
xt_CHECKSUM.h 24 __u8 operation; member in struct:xt_CHECKSUM_info
  /external/iptables/include/linux/netfilter/
xt_CHECKSUM.h 17 __u8 operation; /* bitset of operations */ member in struct:xt_CHECKSUM_info
  /external/kernel-headers/original/uapi/linux/netfilter/
xt_CHECKSUM.h 18 __u8 operation; /* bitset of operations */ member in struct:xt_CHECKSUM_info
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/netfilter/
xt_CHECKSUM.h 17 __u8 operation; /* bitset of operations */ member in struct:xt_CHECKSUM_info
  /frameworks/support/compat/src/main/java/androidx/core/app/
AlarmManagerCompat.java 43 * @param operation Action to perform when the alarm goes off;
58 @NonNull PendingIntent showIntent, @NonNull PendingIntent operation) {
61 operation);
64 operation);
81 * Under normal system operation, it will not dispatch these
100 * @param operation Action to perform when the alarm goes off;
116 long triggerAtMillis, @NonNull PendingIntent operation) {
118 alarmManager.setAndAllowWhileIdle(type, triggerAtMillis, operation);
120 alarmManager.set(type, triggerAtMillis, operation);
144 * @param operation Action to perform when the alarm goes off
    [all...]
  /libcore/dom/src/test/java/org/w3c/domts/
UserDataNotification.java 22 private final short operation; field in class:UserDataNotification
32 public UserDataNotification(short operation,
37 this.operation = operation;
45 * Get value of operation parameter
47 * @return value of operation parameter
50 return operation;
  /external/mesa3d/src/compiler/glsl/
ir_expression_operation.py 43 type and the result type of the operation is the same as the input type.
54 same type but the result type of the operation is different from the
194 # operation consumes a vector and produces a scalar.
208 # operation consumes a vector and produces a scalar.
325 class operation(object): class in inherits:object
418 operation("bit_not", 1, printable_name="~", source_types=integer_types, c_expression="~ {src0}"),
419 operation("logic_not", 1, printable_name="!", source_types=(bool_type,), c_expression="!{src0}"),
420 operation("neg", 1, source_types=numeric_types, c_expression={'u': "-((int) {src0})", 'default': "-{src0}"}),
421 operation("abs", 1, source_types=signed_numeric_types, c_expression={'i': "{src0} < 0 ? -{src0} : {src0}", 'f': "fabsf({src0})", 'd': "fabs({src0})"}),
422 operation("sign", 1, source_types=signed_numeric_types, c_expression={'i': "({src0} > 0) - ({src0} < 0)", 'f (…)
    [all...]
opt_add_neg_to_sub.h 39 if (ir->operation != ir_binop_add)
45 if (op != NULL && op->operation == ir_unop_neg) {
46 ir->operation = ir_binop_sub;
  /external/proguard/src/proguard/evaluation/value/
CompositeDoubleValue.java 24 * This DoubleValue represents the result of a binary operation on two double
39 private final byte operation; field in class:CompositeDoubleValue
45 * and the given operation.
48 byte operation,
52 this.operation = operation;
64 this.operation == ((CompositeDoubleValue)object).operation &&
79 return "("+doubleValue1+((char)operation)+doubleValue2+")";
CompositeFloatValue.java 24 * This FloatValue represents the result of a binary operation on two float
39 private final byte operation; field in class:CompositeFloatValue
45 * and the given operation.
48 byte operation,
52 this.operation = operation;
64 this.operation == ((CompositeFloatValue)object).operation &&
79 return "("+floatValue1+((char)operation)+floatValue2+")";
CompositeIntegerValue.java 24 * This IntegerValue represents the result of a binary operation on two integer
45 private final byte operation; field in class:CompositeIntegerValue
51 * and the given operation.
54 byte operation,
58 this.operation = operation;
70 this.operation == ((CompositeIntegerValue)object).operation &&
85 return "("+integerValue1+((char)operation)+integerValue2+")";
CompositeLongValue.java 24 * This LongValue represents the result of a binary operation on two long
45 private final byte operation; field in class:CompositeLongValue
51 * and the given operation.
54 byte operation,
58 this.operation = operation;
70 this.operation == ((CompositeLongValue)object).operation &&
85 return "("+longValue1+((char)operation)+longValue2+")";
  /frameworks/base/services/core/java/com/android/server/location/
GnssStatusListenerHelper.java 46 Operation operation; local
48 operation = new Operation() {
55 operation = new Operation() {
62 foreach(operation);
66 Operation operation = new Operation() { local
82 Operation operation = new Operation() { local
98 Operation operation = new Operation() { local
    [all...]
  /external/skia/src/core/
SkMD5.cpp 121 static inline void operation(T operation, uint32_t& a, uint32_t b, uint32_t c, uint32_t d, function
123 a = b + rotate_left(a + operation(b, c, d) + x + t, s);
133 operation(F(), a, b, c, d, X[ 0], 7, 0xd76aa478); // 1
134 operation(F(), d, a, b, c, X[ 1], 12, 0xe8c7b756); // 2
135 operation(F(), c, d, a, b, X[ 2], 17, 0x242070db); // 3
136 operation(F(), b, c, d, a, X[ 3], 22, 0xc1bdceee); // 4
137 operation(F(), a, b, c, d, X[ 4], 7, 0xf57c0faf); // 5
138 operation(F(), d, a, b, c, X[ 5], 12, 0x4787c62a); // 6
139 operation(F(), c, d, a, b, X[ 6], 17, 0xa8304613); //
    [all...]
  /external/skqp/src/core/
SkMD5.cpp 121 static inline void operation(T operation, uint32_t& a, uint32_t b, uint32_t c, uint32_t d, function
123 a = b + rotate_left(a + operation(b, c, d) + x + t, s);
133 operation(F(), a, b, c, d, X[ 0], 7, 0xd76aa478); // 1
134 operation(F(), d, a, b, c, X[ 1], 12, 0xe8c7b756); // 2
135 operation(F(), c, d, a, b, X[ 2], 17, 0x242070db); // 3
136 operation(F(), b, c, d, a, X[ 3], 22, 0xc1bdceee); // 4
137 operation(F(), a, b, c, d, X[ 4], 7, 0xf57c0faf); // 5
138 operation(F(), d, a, b, c, X[ 5], 12, 0x4787c62a); // 6
139 operation(F(), c, d, a, b, X[ 6], 17, 0xa8304613); //
    [all...]
  /cts/tests/sensor/src/android/hardware/cts/helpers/sensoroperations/
SequentialSensorOperation.java 38 for (SensorOperation operation : operations) {
39 if (operation == null) {
42 mOperations.add(operation);
48 * in one operation, it is thrown and all subsequent operations will not run.
54 SensorOperation operation = mOperations.get(i); local
56 operation.execute(currentNode);
58 String msg = String.format("Operation %d failed: \"%s\"", i, e.getMessage());
62 addSensorStats(STATS_TAG, i, operation.getStats());
72 SequentialSensorOperation operation = new SequentialSensorOperation(); local
74 operation.add(subOperation.clone())
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/alerts/
AlarmManagerInterface.java 25 public void set(int type, long triggerAtMillis, PendingIntent operation);
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowAlarmManager.java 24 public void set(int type, long triggerAtTime, PendingIntent operation) {
25 internalSet(type, triggerAtTime, 0L, operation);
29 public void setRepeating (int type, long triggerAtTime, long interval, PendingIntent operation){
30 internalSet(type, triggerAtTime, interval, operation);
33 private void internalSet(int type, long triggerAtTime, long interval, PendingIntent operation) {
34 Intent intent = shadowOf(operation).getSavedIntent();
36 Intent scheduledIntent = shadowOf(scheduledAlarm.operation).getSavedIntent();
42 scheduledAlarms.add(new ScheduledAlarm(type, triggerAtTime, interval, operation));
83 final Intent alarmIntent = shadowOf(scheduledAlarm.operation).getSavedIntent();
98 public PendingIntent operation; field in class:ShadowAlarmManager.ScheduledAlarm
    [all...]

Completed in 392 milliseconds

1 2 3 4 5 6 7 8 91011>>