Searched defs:op (Results 276 - 300 of 1167) sorted by relevance

<<11121314151617181920>>

/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
H A DTensorConversion.h201 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorEvaluator(const XprType& op, const Device& device) argument
202 : m_impl(op.expression(), device)
H A DTensorCustomOp.h100 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorEvaluator(const ArgType& op, const Device& device) argument
101 : m_op(op), m_device(device), m_result(NULL)
103 m_dimensions = op.func().dimensions(op.expression());
256 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorEvaluator(const XprType& op, const Device& device) argument
257 : m_op(op), m_device(device), m_result(NULL)
259 m_dimensions = op.func().dimensions(op.lhsExpression(), op.rhsExpression());
H A DTensorEvalTo.h111 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorEvaluator(const XprType& op, const Device& device) argument
112 : m_impl(op.expression(), device), m_device(device),
113 m_buffer(op.buffer()), m_op(op), m_expression(op.expression())
117 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const XprType& op() const { function in struct:Eigen::TensorEvaluator
H A DTensorEvaluator.h241 TensorEvaluator(const XprType& op, const Device& device) argument
242 : m_functor(op.functor()), m_argImpl(op.nestedExpression(), device), m_wrapper()
305 EIGEN_DEVICE_FUNC TensorEvaluator(const XprType& op, const Device& device) argument
306 : m_functor(op.functor()),
307 m_argImpl(op.nestedExpression(), device)
374 EIGEN_DEVICE_FUNC TensorEvaluator(const XprType& op, const Device& device) argument
375 : m_functor(op.functor()),
376 m_leftImpl(op.lhsExpression(), device),
377 m_rightImpl(op
454 TensorEvaluator(const XprType& op, const Device& device) argument
558 TensorEvaluator(const XprType& op, const Device& device) argument
[all...]
H A DTensorForcedEval.h109 EIGEN_DEVICE_FUNC TensorEvaluator(const XprType& op, const Device& device) argument
111 : m_impl(op.expression(), device), m_op(op.expression()), m_device(device), m_buffer(NULL)
H A DTensorGenerator.h99 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorEvaluator(const XprType& op, const Device& device) argument
100 : m_generator(op.generator())
102 TensorEvaluator<ArgType, Device> impl(op.expression(), device);
H A DTensorInflation.h98 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorEvaluator(const XprType& op, const Device& device) argument
99 : m_impl(op.expression(), device), m_strides(op.strides())
104 m_dimensions[i] = (m_dimensions[i] - 1) * op.strides()[i] + 1;
H A DTensorLayoutSwap.h126 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorEvaluator(const XprType& op, const Device& device) argument
127 : m_impl(op.expression(), device)
187 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorEvaluator(const XprType& op, const Device& device) argument
188 : Base(op, device)
H A DTensorPatch.h101 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorEvaluator(const XprType& op, const Device& device) argument
102 : m_impl(op.expression(), device)
106 const PatchDim& patch_dims = op.patch_dims();
H A DTensorReverse.h120 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorEvaluator(const XprType& op, argument
122 : m_impl(op.expression(), device), m_reverse(op.reverse())
124 // Reversing a scalar isn't supported yet. It would be a no-op anyway.
254 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorEvaluator(const XprType& op, argument
256 : Base(op, device) {}
H A DTensorShuffling.h119 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorEvaluator(const XprType& op, const Device& device) argument
120 : m_impl(op.expression(), device)
123 const Shuffle& shuffle = op.shufflePermutation();
239 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorEvaluator(const XprType& op, const Device& device) argument
240 : Base(op, device)
/external/freetype/src/cff/
H A Dcf2glue.h99 /* need it. The `op' parameter allows one function to handle multiple */
109 CF2_Int op; member in struct:CF2_CallbackParamsRec_
/external/google-breakpad/src/third_party/libdisasm/
H A Dia32_insn.c19 #define IS_SP( op ) (op->type == op_register && \
20 (op->data.reg.id == REG_ESP_INDEX || \
21 op->data.reg.alias == REG_ESP_INDEX) )
22 #define IS_IMM( op ) (op->type == op_immediate )
31 static INLINE int32_t long_from_operand( x86_op_t *op ) {
33 if (! IS_IMM(op) ) {
37 switch ( op->datatype ) {
39 return (int32_t) op
242 reg_32_to_16( x86_op_t *op, x86_insn_t *insn, void *arg ) argument
376 unsigned char *next, op = buf[0]; /* byte value -- 'opcode' */ local
[all...]
H A Dia32_invariant.c75 unsigned int mode_16, x86_invariant_op_t *op) {
92 op->type = op_expression;
93 op->flags |= op_pointer;
132 op->type = op_register;
133 op->flags &= ~op_pointer;
74 ia32_invariant_modrm( unsigned char *in, unsigned char *out, unsigned int mode_16, x86_invariant_op_t *op) argument
H A Dia32_modrm.c144 x86_op_t *op, struct modRM_byte *modrm ) {
147 x86_ea_t * ea = &op->data.expression;
158 op->flags |= op_ss_seg;
163 op->flags |= op_ss_seg;
175 op->flags |= op_ss_seg;
209 x86_op_t *op, x86_insn_t *insn, size_t gen_regs ) {
223 op->type = op_register;
224 ia32_handle_register(&op->data.reg, modrm.rm + gen_regs);
230 ea = &op->data.expression;
231 op
143 modrm_decode16( unsigned char *buf, unsigned int buf_len, x86_op_t *op, struct modRM_byte *modrm ) argument
208 ia32_modrm_decode( unsigned char *buf, unsigned int buf_len, x86_op_t *op, x86_insn_t *insn, size_t gen_regs ) argument
301 ia32_reg_decode( unsigned char byte, x86_op_t *op, size_t gen_regs ) argument
[all...]
H A Dx86_format.c75 static void get_operand_data_str( x86_op_t *op, char *str, int len ){ argument
77 if ( op->flags & op_signed ) {
78 switch ( op->datatype ) {
80 snprintf( str, len, "%" PRId8, op->data.sbyte );
83 snprintf( str, len, "%" PRId16, op->data.sword );
86 snprintf( str, len, "%" PRId64, op->data.sqword );
89 snprintf( str, len, "%" PRId32, op->data.sdword );
95 switch ( op->datatype ) {
97 snprintf( str, len, "0x%02" PRIX8, op->data.byte );
100 snprintf( str, len, "0x%04" PRIX16, op
285 format_seg( x86_op_t *op, char *buf, int len, enum x86_asm_format format ) argument
645 format_operand_att( x86_op_t *op, x86_insn_t *insn, char *buf, int len) argument
719 format_operand_native( x86_op_t *op, x86_insn_t *insn, char *buf, int len) argument
783 format_operand_xml( x86_op_t *op, x86_insn_t *insn, char *buf, int len) argument
884 format_operand_raw( x86_op_t *op, x86_insn_t *insn, char *buf, int len) argument
983 x86_format_operand( x86_op_t *op, char *buf, int len, enum x86_asm_format format ) argument
1089 format_op_raw( x86_op_t *op, x86_insn_t *insn, void *arg ) argument
[all...]
/external/icu/icu4c/source/i18n/
H A Dregexcmp.cpp413 int32_t op = (int32_t)fRXPat->fCompiledPat->elementAti(savePosition); local
414 U_ASSERT(URX_TYPE(op) == URX_NOP); // original contents of reserved location
415 op = buildOp(URX_STATE_SAVE, fRXPat->fCompiledPat->size()+1);
416 fRXPat->fCompiledPat->setElementAt(op, savePosition);
423 // Push the position of the newly added JMP op onto the parentheses stack.
824 int32_t op = buildOp(URX_STO_INP_LOC, frameLoc); local
825 fRXPat->fCompiledPat->setElementAt(op, topLoc);
958 int32_t op = buildOp(URX_STO_INP_LOC, dataLoc); local
959 fRXPat->fCompiledPat->setElementAt(op, saveStateLoc+1);
967 // Put together the save state op an
1063 int32_t op = buildOp(URX_STO_SP, varLoc); local
1161 int32_t op = (fModeFlags & UREGEX_UWORD)? URX_BACKSLASH_BU : URX_BACKSLASH_B; local
1174 int32_t op = (fModeFlags & UREGEX_UWORD)? URX_BACKSLASH_BU : URX_BACKSLASH_B; local
1372 int32_t op = buildOp(URX_STO_SP, stoLoc); local
1403 int32_t op = buildOp(URX_STO_SP, stoLoc); local
1435 int32_t op = buildOp(URX_STO_SP, stoLoc); local
[all...]
H A Drepattrn.cpp692 int32_t op = fCompiledPat->elementAti(index); local
693 int32_t val = URX_VAL(op);
694 int32_t type = URX_TYPE(op);
700 printf("%4d %08x %-15s ", index, op, opNames[pinnedType]);
/external/icu/icu4c/source/test/intltest/
H A Dnormconf.cpp479 * @param op name of normalization form, e.g., "KC"
486 UBool NormalizerConformanceTest::assertEqual(const char *op, argument
512 errln(" %s%d)%s(%s)=%s, exp. %s", msg, field, op, sChars, gotChars, expChars);
/external/iproute2/tc/
H A Dem_ipset.c55 unsigned op; member in struct:ip_set_req_get_set
65 unsigned op; member in struct:ip_set_req_version
83 req_version.op = IP_SET_OP_VERSION;
125 req.op = IP_SET_OP_GET_BYINDEX;
146 req.op = IP_SET_OP_GET_BYNAME;
/external/iptables/iptables/
H A Dnft-ipv4.c33 uint32_t op; local
37 op = nft_invflags2cmp(cs->fw.ip.invflags, IPT_INV_VIA_IN);
38 add_iniface(r, cs->fw.ip.iniface, op);
42 op = nft_invflags2cmp(cs->fw.ip.invflags, IPT_INV_VIA_OUT);
43 add_outiface(r, cs->fw.ip.outiface, op);
47 op = nft_invflags2cmp(cs->fw.ip.invflags, XT_INV_PROTO);
49 cs->fw.ip.proto, op);
53 op = nft_invflags2cmp(cs->fw.ip.invflags, IPT_INV_SRCIP);
56 sizeof(struct in_addr), op);
59 op
124 uint8_t op; local
[all...]
H A Dnft-ipv6.c32 uint32_t op; local
36 op = nft_invflags2cmp(cs->fw6.ipv6.invflags, IPT_INV_VIA_IN);
37 add_iniface(r, cs->fw6.ipv6.iniface, op);
41 op = nft_invflags2cmp(cs->fw6.ipv6.invflags, IPT_INV_VIA_OUT);
42 add_outiface(r, cs->fw6.ipv6.outiface, op);
46 op = nft_invflags2cmp(cs->fw6.ipv6.invflags, XT_INV_PROTO);
48 cs->fw6.ipv6.proto, op);
52 op = nft_invflags2cmp(cs->fw6.ipv6.invflags, IPT_INV_SRCIP);
55 sizeof(struct in6_addr), op);
58 op
[all...]
/external/iptables/utils/
H A Dnfnl_osf.c152 int i, op; local
160 op = 0;
164 op = OSFOPT_NOP;
174 op = OSFOPT_SACKP;
184 op = OSFOPT_TS;
194 op = OSFOPT_WSO;
224 op = OSFOPT_MSS;
240 op = OSFOPT_EOL;
250 op = OSFOPT_EMPTY;
260 if (op !
[all...]
/external/kernel-headers/original/uapi/asm-x86/asm/
H A Dkvm_para.h69 __u32 op; member in struct:kvm_mmu_op_header
/external/kernel-headers/original/uapi/drm/
H A Domap_drm.h78 uint32_t op; /* mask of omap_gem_op (in) */ member in struct:drm_omap_gem_cpu_prep
83 uint32_t op; /* mask of omap_gem_op (in) */ member in struct:drm_omap_gem_cpu_fini

Completed in 487 milliseconds

<<11121314151617181920>>