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

1 2

  /device/linaro/bootloader/arm-trusted-firmware/include/lib/aarch32/
arch_helpers.h 108 #define _DEFINE_TLBIOP_FUNC(_op, coproc, opc1, CRn, CRm, opc2) \
109 static inline void tlbi##_op(void) \
117 #define _DEFINE_TLBIOP_PARAM_FUNC(_op, coproc, opc1, CRn, CRm, opc2) \
118 static inline void tlbi##_op(u_register_t v) \
125 #define _DEFINE_TLBIOP_FUNC(_op, coproc, opc1, CRn, CRm, opc2) \
126 static inline void tlbi##_op(void) \
132 #define _DEFINE_TLBIOP_PARAM_FUNC(_op, coproc, opc1, CRn, CRm, opc2) \
133 static inline void tlbi##_op(u_register_t v) \
139 #define _DEFINE_BPIOP_FUNC(_op, coproc, opc1, CRn, CRm, opc2) \
140 static inline void bpi##_op(void)
    [all...]
  /external/grpc-grpc/src/objective-c/GRPCClient/private/
GRPCWrappedCall.m 38 grpc_op _op;
65 _op.op = GRPC_OP_SEND_INITIAL_METADATA;
66 _op.data.send_initial_metadata.count = metadata.count;
67 _op.data.send_initial_metadata.metadata = metadata.grpc_metadataArray;
68 _op.data.send_initial_metadata.maybe_compression_level.is_set = false;
69 _op.data.send_initial_metadata.maybe_compression_level.level = 0;
70 _op.flags = flags;
77 for (int i = 0; i < _op.data.send_initial_metadata.count; i++) {
78 grpc_slice_unref(_op.data.send_initial_metadata.metadata[i].key);
79 grpc_slice_unref(_op.data.send_initial_metadata.metadata[i].value)
    [all...]
  /external/openssh/regress/
sftp-perm.sh 55 _op=$1
61 verbose "$tid: explicit $_op"
65 run_client "$_cmd" || fail "plain $_op failed"
66 postcondition "$_op no white/blacklists" "$_expect_success_post"
69 prepare_server -p $_op,$_whitelist_ops
70 run_client "$_cmd" || fail "whitelisted $_op failed"
71 postcondition "$_op whitelisted" "$_expect_success_post"
74 prepare_server -P $_op
75 run_client "$_cmd" && fail "blacklisted $_op succeeded"
76 postcondition "$_op blacklisted" "$_expect_fail_post
    [all...]
  /external/python/dateutil/dateutil/test/
_common.py 213 def _op(self, other): member in class:NotAValueClass
219 __add__ = __radd__ = _op
220 __sub__ = __rsub__ = _op
221 __mul__ = __rmul__ = _op
222 __div__ = __rdiv__ = _op
223 __truediv__ = __rtruediv__ = _op
224 __floordiv__ = __rfloordiv__ = _op
226 __lt__ = __rlt__ = _op
227 __gt__ = __rgt__ = _op
228 __eq__ = __req__ = _op
    [all...]
  /device/linaro/bootloader/arm-trusted-firmware/lib/aarch64/
cache_helpers.S 118 .macro dcsw_loop _op
119 loop2_\_op:
122 loop3_\_op:
124 dc \_op, x11
126 b.hs loop3_\_op
129 b.hs loop2_\_op
  /device/linaro/bootloader/arm-trusted-firmware/include/lib/aarch64/
arch_helpers.h 64 #define DEFINE_SYSOP_FUNC(_op) \
65 static inline void _op(void) \
67 __asm__ (#_op); \
71 #define DEFINE_SYSOP_TYPE_FUNC(_op, _type) \
72 static inline void _op ## _type(void) \
74 __asm__ (#_op " " #_type); \
78 #define DEFINE_SYSOP_TYPE_PARAM_FUNC(_op, _type) \
79 static inline void _op ## _type(uint64_t v) \
81 __asm__ (#_op " " #_type ", %0" : : "r" (v)); \
  /external/eigen/Eigen/src/Core/
Assign_MKL.h 84 struct Assignment<DstXprType, CwiseUnaryOp<scalar_##EIGENOP##_op<EIGENTYPE>, SrcXprNested>, assign_op<EIGENTYPE,EIGENTYPE>, \
86 typedef CwiseUnaryOp<scalar_##EIGENOP##_op<EIGENTYPE>, SrcXprNested> SrcXprType; \
142 struct Assignment<DstXprType, CwiseBinaryOp<scalar_##EIGENOP##_op<EIGENTYPE,EIGENTYPE>, SrcXprNested, \
145 typedef CwiseBinaryOp<scalar_##EIGENOP##_op<EIGENTYPE,EIGENTYPE>, SrcXprNested, \
  /external/tensorflow/tensorflow/python/framework/
errors_impl.py 70 self._op = op
99 return self._op
112 if self._op is not None:
114 self._op.name,)]
116 _compact_stack_trace(self._op))
119 original_op = self._op._original_op
ops.py 324 self._op = op
339 return self._op
349 return self._op.graph
354 if not self._op.name:
355 raise ValueError("Operation was not named: %s" % self._op)
356 return "%s:%d" % (self._op.name, self._value_index)
361 return self._op.device
414 stack = [self._op]
426 c_graph = self._op._graph._c_graph # pylint: disable=protected-access
541 self._op._graph._c_graph, # pylint: disable=protected-acces
    [all...]
  /external/autotest/client/site_tests/cellular_SafetyDance/
cellular_SafetyDance.py 96 def _op(self): member in class:cellular_SafetyDance
123 self._op()
  /external/eigen/Eigen/src/Core/util/
Macros.h 904 EIGEN_CAT(EIGEN_CAT(internal::scalar_,OPNAME),_op)< \
    [all...]
  /external/mesa3d/src/mesa/state_tracker/tests/
test_glsl_to_tgsi_lifetime.cpp 39 MockCodeline(unsigned _op): op(_op) {}
40 MockCodeline(unsigned _op, const vector<int>& _dst, const vector<int>& _src, const vector<int>&_to):
41 op(_op), dst(_dst), src(_src), tex_offsets(_to){}
52 MockCodelineWithSwizzle(unsigned _op): op(_op) {}
53 MockCodelineWithSwizzle(unsigned _op, const vector<pair<int,int>>& _dst,
56 op(_op), dst(_dst), src(_src), tex_offsets(_to){}
    [all...]
  /external/libunwind/doc/
libunwind-dynamic.tex 234 \item[\Type{unw\_dyn\_op\_t} \Var{op}] An array of dynamic unwind
274 the form of a structure of type \Type{unw\_dyn\_op\_t}. This
364 unw\_dyn\_op\_t
366 \_U\_dyn\_op\_save\_reg();
367 \_U\_dyn\_op\_spill\_fp\_rel();
368 \_U\_dyn\_op\_spill\_sp\_rel();
369 \_U\_dyn\_op\_add();
370 \_U\_dyn\_op\_pop\_frames();
371 \_U\_dyn\_op\_label\_state();
372 \_U\_dyn\_op\_copy\_state()
    [all...]
  /external/skia/modules/pathkit/
externs.js 52 _op: function(otherPath, op) {},
chaining.js 113 if (this._op(otherPath, op)) {
  /external/skqp/modules/pathkit/
externs.js 52 _op: function(otherPath, op) {},
chaining.js 113 if (this._op(otherPath, op)) {
  /external/tensorflow/tensorflow/python/ops/
custom_gradient.py 74 target_t._op._graph._c_graph, # pylint: disable=protected-access
resource_variable_ops.py 90 tensor._op._graph._c_graph, # pylint: disable=protected-access
    [all...]
  /external/tensorflow/tensorflow/python/ops/parallel_for/
pfor.py 672 self._op = op
737 op_def = getattr(self._op, "op_def", None)
745 self._op, self.inputs))
752 op_def = getattr(self._op, "op_def", None)
760 self._op, self.inputs))
765 return self._op
769 return self._op.type
772 return self._op.get_attr(attr)
776 return self._op.outputs
779 assert index < len(self._op.outputs
    [all...]
  /external/skqp/experimental/canvaskit/
externs.js 216 _op: function() {},
interface.js 296 if (this._op(otherPath, op)) {
  /external/skia/modules/canvaskit/
externs.js 231 _op: function() {},
interface.js 295 if (this._op(otherPath, op)) {
  /external/tensorflow/tensorflow/contrib/distribute/python/
mirrored_strategy_multigpu_test.py 752 self.assertStartsWith(v1._op.name, "replica_1/")
    [all...]

Completed in 1513 milliseconds

1 2