Searched defs:TValue (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/third_party/skia/third_party/lua/src/
H A Dlobject.h106 typedef struct lua_TValue TValue; typedef in typeref:struct:lua_TValue
117 /* raw type tag of a TValue */
123 /* type tag of a TValue (bits 0-3 for tags + variant bits 4-5) */
126 /* type tag of a TValue with no variants (bits 0-3) */
188 { TValue *io=(obj); num_(io)=(x); settt_(io, LUA_TNUMBER); }
193 { TValue *io=(obj); val_(io).f=(x); settt_(io, LUA_TLCF); }
196 { TValue *io=(obj); val_(io).p=(x); settt_(io, LUA_TLIGHTUSERDATA); }
199 { TValue *io=(obj); val_(io).b=(x); settt_(io, LUA_TBOOLEAN); }
202 { TValue *io=(obj); GCObject *i_g=(x); \
206 { TValue *i
[all...]
/external/llvm/lib/Transforms/Scalar/
H A DSROA.cpp1199 Value *TValue = SI.getTrueValue(); local
1201 bool TDerefable = TValue->isDereferenceablePointer(DL);
1213 !isSafeToLoadUnconditionally(TValue, LI, LI->getAlignment(), DL))
/external/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp6864 ConstantSDNode *TValue = dyn_cast<ConstantSDNode>(Op.getOperand(0)); local
6868 if (!TValue || !FValue)
6872 if (!TValue->isOne()) {
6874 std::swap(TValue, FValue);
6878 return TValue->isOne() && FValue->isNullValue();

Completed in 160 milliseconds