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

1 2

  /frameworks/compile/mclinker/include/mcld/Script/
ExprToken.h 20 enum Kind { OPERATOR, OPERAND };
Operand.h 1 //===- Operand.h ----------------------------------------------------------===//
25 /** \class Operand
26 * \brief This class defines the interfaces to an operand token.
29 class Operand : public ExprToken {
34 explicit Operand(Type pType);
35 virtual ~Operand();
45 return pToken->kind() == ExprToken::OPERAND;
53 * \brief This class defines the interfaces to a symbol operand.
56 class SymOperand : public Operand {
73 static bool classof(const Operand* pOperand)
    [all...]
  /toolchain/binutils/binutils-2.25/opcodes/
ip2k-opc.c 128 #define OPERAND(op) IP2K_OPERAND_##op
130 #define OP(field) CGEN_SYNTAX_MAKE_FIELD (OPERAND (field))
659 #undef OPERAND
695 #define OPERAND(op) IP2K_OPERAND_##op
697 #define OP(field) CGEN_SYNTAX_MAKE_FIELD (OPERAND (field))
778 #undef OPERAND
859 /* Function to call before using the operand instance table.
lm32-opc.c 139 #define OPERAND(op) LM32_OPERAND_##op
141 #define OP(field) CGEN_SYNTAX_MAKE_FIELD (OPERAND (field))
700 #undef OPERAND
712 #define OPERAND(op) LM32_OPERAND_##op
714 #define OP(field) CGEN_SYNTAX_MAKE_FIELD (OPERAND (field))
729 #undef OPERAND
810 /* Function to call before using the operand instance table.
fr30-opc.c 167 #define OPERAND(op) FR30_OPERAND_##op
169 #define OP(field) CGEN_SYNTAX_MAKE_FIELD (OPERAND (field))
1172 #undef OPERAND
1196 #define OPERAND(op) FR30_OPERAND_##op
1198 #define OP(field) CGEN_SYNTAX_MAKE_FIELD (OPERAND (field))
1246 #undef OPERAND
1327 /* Function to call before using the operand instance table.
or1k-opc.c 173 #define OPERAND(op) OR1K_OPERAND_##op
175 #define OP(field) CGEN_SYNTAX_MAKE_FIELD (OPERAND (field))
926 #undef OPERAND
938 #define OPERAND(op) OR1K_OPERAND_##op
940 #define OP(field) CGEN_SYNTAX_MAKE_FIELD (OPERAND (field))
955 #undef OPERAND
1036 /* Function to call before using the operand instance table.
xstormy16-opc.c 163 #define OPERAND(op) XSTORMY16_OPERAND_##op
165 #define OP(field) CGEN_SYNTAX_MAKE_FIELD (OPERAND (field))
946 #undef OPERAND
978 #define OPERAND(op) XSTORMY16_OPERAND_##op
980 #define OP(field) CGEN_SYNTAX_MAKE_FIELD (OPERAND (field))
1050 #undef OPERAND
1131 /* Function to call before using the operand instance table.
m32r-opc.c 210 #define OPERAND(op) M32R_OPERAND_##op
212 #define OP(field) CGEN_SYNTAX_MAKE_FIELD (OPERAND (field))
1113 #undef OPERAND
    [all...]
mt-opc.c 259 #define OPERAND(op) MT_OPERAND_##op
261 #define OP(field) CGEN_SYNTAX_MAKE_FIELD (OPERAND (field))
772 #undef OPERAND
784 #define OPERAND(op) MT_OPERAND_##op
786 #define OP(field) CGEN_SYNTAX_MAKE_FIELD (OPERAND (field))
801 #undef OPERAND
    [all...]
ip2k-desc.c 326 /* The operand table. */
329 #define OPERAND(op) IP2K_OPERAND_##op
396 #define OP(field) CGEN_SYNTAX_MAKE_FIELD (OPERAND (field))
933 operand elements to be in the table [which they mightn't be]. */
    [all...]
lm32-desc.c 268 /* The operand table. */
271 #define OPERAND(op) LM32_OPERAND_##op
358 #define OP(field) CGEN_SYNTAX_MAKE_FIELD (OPERAND (field))
920 operand elements to be in the table [which they mightn't be]. */
    [all...]
xc16x-opc.c 302 #define OPERAND(op) XC16X_OPERAND_##op
304 #define OP(field) CGEN_SYNTAX_MAKE_FIELD (OPERAND (field))
    [all...]
fr30-desc.c 358 /* The operand table. */
361 #define OPERAND(op) FR30_OPERAND_##op
572 #define OP(field) CGEN_SYNTAX_MAKE_FIELD (OPERAND (field))
    [all...]
m32r-desc.c 306 /* The operand table. */
309 #define OPERAND(op) M32R_OPERAND_##op
436 #define OP(field) CGEN_SYNTAX_MAKE_FIELD (OPERAND (field))
    [all...]
mt-desc.c 304 /* The operand table. */
307 #define OPERAND(op) MT_OPERAND_##op
542 #define OP(field) CGEN_SYNTAX_MAKE_FIELD (OPERAND (field))
    [all...]
xstormy16-desc.c 314 /* The operand table. */
317 #define OPERAND(op) XSTORMY16_OPERAND_##op
488 #define OP(field) CGEN_SYNTAX_MAKE_FIELD (OPERAND (field))
    [all...]
epiphany-opc.c 209 #define OPERAND(op) EPIPHANY_OPERAND_##op
211 #define OP(field) CGEN_SYNTAX_MAKE_FIELD (OPERAND (field))
    [all...]
iq2000-opc.c 227 #define OPERAND(op) IQ2000_OPERAND_##op
229 #define OP(field) CGEN_SYNTAX_MAKE_FIELD (OPERAND (field))
    [all...]
  /frameworks/compile/mclinker/lib/Script/
Assignment.cpp 15 #include "mcld/Script/Operand.h"
113 if ((*it)->kind() == ExprToken::OPERAND &&
114 llvm::cast<Operand>(*it)->isDot()) {
150 if ((*it)->kind() == ExprToken::OPERAND &&
151 llvm::cast<Operand>(*it)->isDot()) {
RpnExpr.cpp 12 #include "mcld/Script/Operand.h"
36 if ((*it)->kind() == ExprToken::OPERAND &&
37 llvm::cast<Operand>(*it)->isDot())
RpnEvaluator.cpp 13 #include "mcld/Script/Operand.h"
34 std::stack<Operand*> operandStack;
46 Operand* opd = operandStack.top();
53 Operand* opd2 = operandStack.top();
55 Operand* opd1 = operandStack.top();
63 Operand* opd3 = operandStack.top();
65 Operand* opd2 = operandStack.top();
67 Operand* opd1 = operandStack.top();
79 case ExprToken::OPERAND: {
80 Operand* opd = llvm::cast<Operand>(*it)
    [all...]
Operand.cpp 1 //===- Operand.cpp --------------------------------------------------------===//
9 #include "mcld/Script/Operand.h"
22 // Operand
24 Operand::Operand(Type pType) : ExprToken(ExprToken::OPERAND), m_Type(pType) {
27 Operand::~Operand() {
36 SymOperand::SymOperand() : Operand(Operand::SYMBOL), m_Value(0)
    [all...]
  /frameworks/compile/mclinker/lib/Object/
SectionMap.cpp 15 #include "mcld/Script/Operand.h"
351 if ((*tok)->kind() == ExprToken::OPERAND &&
352 llvm::cast<Operand>(*tok)->isDot())
372 if ((*tok)->kind() == ExprToken::OPERAND &&
373 llvm::cast<Operand>(*tok)->isDot())
  /external/vulkan-validation-layers/libs/glm/detail/
_swizzle.hpp 212 #define _GLM_SWIZZLE_VECTOR_BINARY_OPERATOR_IMPLEMENTATION(OPERAND) \
214 GLM_FUNC_QUALIFIER V operator OPERAND ( const _GLM_SWIZZLE_TYPE1& a, const _GLM_SWIZZLE_TYPE2& b) \
216 return a() OPERAND b(); \
219 GLM_FUNC_QUALIFIER V operator OPERAND ( const _GLM_SWIZZLE_TYPE1& a, const V& b) \
221 return a() OPERAND b; \
224 GLM_FUNC_QUALIFIER V operator OPERAND ( const V& a, const _GLM_SWIZZLE_TYPE1& b) \
226 return a OPERAND b(); \
230 // Wrapper for a operand between a swizzle and a binary (e.g. 1.0f - u.xyz)
232 #define _GLM_SWIZZLE_SCALAR_BINARY_OPERATOR_IMPLEMENTATION(OPERAND) \
234 GLM_FUNC_QUALIFIER V operator OPERAND ( const _GLM_SWIZZLE_TYPE1& a, const T& b)
    [all...]
  /external/libnl/lib/route/cls/
ematch_syntax.y 62 %token <i> ERROR LOGIC NOT OPERAND NUMBER ALIGN LAYER
131 %type <i> align operand shift meta_int_id meta_var_id
246 | EMATCH_META "(" meta_value operand meta_value ")"
300 pktloc operand NUMBER
494 operand: label

Completed in 716 milliseconds

1 2