Searched refs:operation (Results 1 - 25 of 498) sorted by relevance

1234567891011>>

/external/minijail/
H A Dsyscall_wrapper.h6 int sys_seccomp(unsigned int operation, unsigned int flags, void *args);
H A Dsyscall_wrapper.c31 int sys_seccomp(unsigned int operation, unsigned int flags, void *args) argument
33 return syscall(SYS_seccomp, operation, flags, args);
/external/tensorflow/tensorflow/java/src/main/java/org/tensorflow/op/
H A DPrimitiveOp.java23 * <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 name
55 protected final Operation operation; field in class:PrimitiveOp
60 * @param operation th
62 PrimitiveOp(Operation operation) argument
[all...]
/external/parameter-framework/asio/include/asio/detail/
H A Dwait_op.hpp16 #include "asio/detail/operation.hpp"
24 : public operation
32 : operation(func)
H A Doperation.hpp2 // detail/operation.hpp
22 typedef task_io_service_operation operation; typedef in namespace:asio::detail
H A Dreactor_op.hpp16 #include "asio/detail/operation.hpp"
24 : public operation
33 // Perform the operation. Returns true if it is finished.
43 : operation(complete_func),
H A Dtimer_queue_base.hpp18 #include "asio/detail/operation.hpp"
45 virtual void get_ready_timers(op_queue<operation>& ops) = 0;
48 virtual void get_all_timers(op_queue<operation>& ops) = 0;
/external/parameter-framework/asio-1.10.6/include/asio/detail/
H A Dwait_op.hpp16 #include "asio/detail/operation.hpp"
24 : public operation
32 : operation(func)
H A Doperation.hpp2 // detail/operation.hpp
22 typedef task_io_service_operation operation; typedef in namespace:asio::detail
H A Dreactor_op.hpp16 #include "asio/detail/operation.hpp"
24 : public operation
33 // Perform the operation. Returns true if it is finished.
43 : operation(complete_func),
H A Dtimer_queue_base.hpp18 #include "asio/detail/operation.hpp"
45 virtual void get_ready_timers(op_queue<operation>& ops) = 0;
48 virtual void get_all_timers(op_queue<operation>& ops) = 0;
/external/tensorflow/tensorflow/java/src/main/java/org/tensorflow/
H A DOutput.java33 operation = op;
39 return operation;
49 return new Shape(operation.shape(index));
54 return operation.dtype(index);
64 return Objects.hash(operation, index);
74 return index == that.index && operation.equals(that.operation);
83 operation.type(), operation.name(), index, shape().toString(), dataType());
86 private final Operation operation; field in class:Output
[all...]
/external/iptables/include/linux/netfilter/
H A Dxt_CHECKSUM.h17 __u8 operation; /* bitset of operations */ member in struct:xt_CHECKSUM_info
/external/kernel-headers/original/uapi/linux/netfilter/
H A Dxt_CHECKSUM.h18 __u8 operation; /* bitset of operations */ member in struct:xt_CHECKSUM_info
/external/mesa3d/src/compiler/glsl/
H A Dir_expression_operation.py43 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("sig
[all...]
/external/proguard/src/proguard/evaluation/value/
H A DCompositeDoubleValue.java24 * 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+")";
47 CompositeDoubleValue(DoubleValue doubleValue1, byte operation, DoubleValue doubleValue2) argument
H A DCompositeFloatValue.java24 * 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+")";
47 CompositeFloatValue(FloatValue floatValue1, byte operation, FloatValue floatValue2) argument
H A DCompositeIntegerValue.java24 * 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+")";
53 CompositeIntegerValue(IntegerValue integerValue1, byte operation, IntegerValue integerValue2) argument
H A DCompositeLongValue.java24 * 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+")";
53 CompositeLongValue(LongValue longValue1, byte operation, Value longValue2) argument
/external/skia/src/core/
H A DSkMD5.cpp121 static inline void operation(T operation, uint32_t& a, uint32_t b, uint32_t c, uint32_t d, argument
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(
[all...]
/external/skqp/src/core/
H A DSkMD5.cpp121 static inline void operation(T operation, uint32_t& a, uint32_t b, uint32_t c, uint32_t d, argument
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(
[all...]
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowAlarmManager.java24 public void set(int type, long triggerAtTime, PendingIntent operation) { argument
25 internalSet(type, triggerAtTime, 0L, operation);
29 public void setRepeating (int type, long triggerAtTime, long interval, PendingIntent operation){ argument
30 internalSet(type, triggerAtTime, interval, operation);
33 private void internalSet(int type, long triggerAtTime, long interval, PendingIntent operation) { argument
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
100 ScheduledAlarm(int type, long triggerAtTime, PendingIntent operation) argument
104 ScheduledAlarm(int type, long triggerAtTime, long interval, PendingIntent operation) argument
[all...]
/external/deqp/modules/gles2/scripts/
H A Dgen-invalid-implicit-conversions.py74 def __init__(self, operation, type0, type1):
75 self.name = arithOperations[operation] + '_' + type0 + '_' + type1
76 self.operation = operation
81 params0 = { "NAME": self.name + '_' + self.type0, "TYPE0": self.type0, "TYPE1": self.type1, "OPERATION": self.operation }
82 params1 = { "NAME": self.name + '_' + self.type1, "TYPE0": self.type0, "TYPE1": self.type1, "OPERATION": self.operation }
85 def createCase(operation, type0, type1):
89 case = InvalidImplicitConversionCase(operation, t0, t1)
/external/deqp/modules/gles3/scripts/
H A Dgen-invalid-implicit-conversions.py78 def __init__(self, operation, type0, type1):
79 self.name = arithOperations[operation] + '_' + type0 + '_' + type1
80 self.operation = operation
86 params0 = { "NAME": self.name + '_' + self.type0, "TYPE0": self.type0, "TYPE1": self.type1, "OPERATION": self.operation }
87 params1 = { "NAME": self.name + '_' + self.type1, "TYPE0": self.type0, "TYPE1": self.type1, "OPERATION": self.operation }
90 def createCase(operation, type0, type1):
94 case = InvalidImplicitConversionCase(operation, t0, t1)
/external/python/cpython2/Lib/idlelib/
H A DWidgetRedirector.py9 binding to the widget's 'insert' operation is activated, and the Tk library
13 to do is to hook the Tk 'insert' operation itself. For one thing, we want
20 operation. We will also intercept method calls on the Tkinter class
26 original Tk widget operation.
31 _operations: dict mapping operation name to new function.
47 # whose action is to dispatch on the operation passed to the widget:
56 for operation in list(self._operations):
57 self.unregister(operation)
67 def register(self, operation, function):
68 '''Return OriginalCommand(operation) afte
[all...]

Completed in 2158 milliseconds

1234567891011>>