Searched refs:ivalue (Results 1 – 15 of 15) sorted by relevance
/external/lua/src/ |
D | lvm.c | 75 *n = cast_num(ivalue(obj)); in luaV_tonumber_() 108 *p = ivalue(obj); in luaV_tointeger() 320 lua_Integer li = ivalue(l); in LTnum() 322 return li < ivalue(r); /* both are integers */ in LTnum() 333 return !LEintfloat(ivalue(r), lf); /* not (r <= l) ? */ in LTnum() 343 lua_Integer li = ivalue(l); in LEnum() 345 return li <= ivalue(r); /* both are integers */ in LEnum() 356 return !LTintfloat(ivalue(r), lf); /* not (r < l) ? */ in LEnum() 420 case LUA_TNUMINT: return (ivalue(t1) == ivalue(t2)); in luaV_equalobj() 894 lua_Integer ib = ivalue(rb); lua_Integer ic = ivalue(rc); in luaV_execute() [all …]
|
D | ltable.c | 120 return hashint(t, ivalue(key)); in mainposition() 146 lua_Integer k = ivalue(key); in arrayindex() 523 if (ttisinteger(gkey(n)) && ivalue(gkey(n)) == key) in luaH_getint() 592 case LUA_TNUMINT: return luaH_getint(t, ivalue(key)); in luaH_get()
|
D | lobject.c | 147 setivalue(res, intarith(L, op, ivalue(p1), ivalue(p2))); in luaO_arith() 376 len = lua_integer2str(buff, sizeof(buff), ivalue(obj)); in luaO_tostring()
|
D | lvm.h | 44 (ttisinteger(o) ? (*(i) = ivalue(o), 1) : luaV_tointeger(o,i,LUA_FLOORN2I))
|
D | lobject.h | 163 #define ivalue(o) check_exp(ttisinteger(o), val_(o).i) macro 166 (ttisinteger(o) ? cast_num(ivalue(o)) : fltvalue(o)))
|
D | ldump.c | 115 DumpInteger(ivalue(o), D); in DumpConstants()
|
D | luac.c | 274 printf(LUA_INTEGER_FMT,ivalue(o)); in PrintConstant()
|
D | llex.c | 235 seminfo->i = ivalue(&obj); in read_numeral()
|
D | lcode.c | 434 k = cast_int(ivalue(idx)); in addk() 986 e1->u.ival = ivalue(&res); in constfolding()
|
/external/deqp-deps/SPIRV-Tools/source/val/ |
D | validate_type.cpp | 276 const int64_t ivalue = ConstantLiteralAsInt64(width, length->words()); in ValidateTypeArray() local 277 if (ivalue == 0 || (ivalue < 0 && is_signed)) { in ValidateTypeArray() 280 << "' default value must be at least 1: found " << ivalue; in ValidateTypeArray()
|
/external/swiftshader/third_party/SPIRV-Tools/source/val/ |
D | validate_type.cpp | 276 const int64_t ivalue = ConstantLiteralAsInt64(width, length->words()); in ValidateTypeArray() local 277 if (ivalue == 0 || (ivalue < 0 && is_signed)) { in ValidateTypeArray() 280 << "' default value must be at least 1: found " << ivalue; in ValidateTypeArray()
|
/external/angle/third_party/spirv-tools/src/source/val/ |
D | validate_type.cpp | 276 const int64_t ivalue = ConstantLiteralAsInt64(width, length->words()); in ValidateTypeArray() local 277 if (ivalue == 0 || (ivalue < 0 && is_signed)) { in ValidateTypeArray() 280 << "' default value must be at least 1: found " << ivalue; in ValidateTypeArray()
|
/external/python/cffi/testing/cffi1/ |
D | test_verify1.py | 1998 lib.ivalue = 0 2011 assert lib.ivalue == sign * 99
|
/external/python/cffi/testing/cffi0/ |
D | test_verify.py | 2033 lib.ivalue = 0 2046 assert lib.ivalue == sign * 99
|
/external/v8/src/codegen/ |
D | code-stub-assembler.cc | 5163 TNode<Int32T> ivalue = TruncateFloat32ToInt32(value); in TryFloat32ToSmi() local 5164 TNode<Float32T> fvalue = RoundInt32ToFloat32(ivalue); in TryFloat32ToSmi() 5169 GotoIfNot(Word32Equal(ivalue, Int32Constant(0)), &if_int32); in TryFloat32ToSmi() 5178 *var_result_smi = SmiTag(ChangeInt32ToIntPtr(ivalue)); in TryFloat32ToSmi() 5181 TNode<PairT<Int32T, BoolT>> pair = Int32AddWithOverflow(ivalue, ivalue); in TryFloat32ToSmi()
|