Home
last modified time | relevance | path

Searched refs:RCX_ValueType (Results 1 – 5 of 5) sorted by relevance

/dports/lang/nqc/nqc-3.1.r6_1/rcxlib/
H A DRCX_Constants.h169 } RCX_ValueType; typedef
171 const RCX_ValueType kRCX_NoType = (RCX_ValueType) -1;
174 const RCX_ValueType kRCX_GlobalVariableType = (RCX_ValueType) 43;
175 const RCX_ValueType kRCX_IndirectGlobalVarType = (RCX_ValueType) 44;
176 const RCX_ValueType kRCX_IndexedArrayType = (RCX_ValueType) 6;
182 #define RCX_VALUE_TYPE(v) ((RCX_ValueType)(((v)>>16) & 0xff))
H A DRCX_Cmd.cpp33 RCX_ValueType GetRcxValueType(int v) in GetRcxValueType()
35 RCX_ValueType result = RCX_VALUE_TYPE(v); in GetRcxValueType()
232 RCX_ValueType vtDst = GetRcxValueType(dst); in MakeSetMath()
391 RCX_ValueType dsrc = GetRcxValueType(value); in MakeVarNewSrc()
/dports/lang/nqc/nqc-3.1.r6_1/compiler/
H A DAtomExpr.h36 AtomExpr(RCX_ValueType type, int value, const LexLocation &loc, bool ptr = false);
54 RCX_ValueType fType;
H A DExpr.cpp34 static bool IsTypeInMask(long mask, RCX_ValueType type);
86 RCX_ValueType type = RCX_VALUE_TYPE(ea); in EmitConstrained()
120 bool IsTypeInMask(long mask, RCX_ValueType type) in IsTypeInMask()
H A DAtomExpr.cpp28 AtomExpr::AtomExpr(RCX_ValueType type, int value, const LexLocation &loc, bool ptr) : in AtomExpr()