Searched refs:bvalue (Results 1 – 11 of 11) sorted by relevance
50 byte[] bvalue = new byte[4]; in EnclosingMethodAttribute()51 bvalue[0] = (byte)(ci >>> 8); in EnclosingMethodAttribute()52 bvalue[1] = (byte)ci; in EnclosingMethodAttribute()53 bvalue[2] = (byte)(ni >>> 8); in EnclosingMethodAttribute()54 bvalue[3] = (byte)ni; in EnclosingMethodAttribute()55 set(bvalue); in EnclosingMethodAttribute()69 byte[] bvalue = new byte[4]; in EnclosingMethodAttribute()70 bvalue[0] = (byte)(ci >>> 8); in EnclosingMethodAttribute()71 bvalue[1] = (byte)ci; in EnclosingMethodAttribute()72 bvalue[2] = (byte)(ni >>> 8); in EnclosingMethodAttribute()[all …]
46 byte[] bvalue = new byte[2]; in SourceFileAttribute()47 bvalue[0] = (byte)(index >>> 8); in SourceFileAttribute()48 bvalue[1] = (byte)index; in SourceFileAttribute()49 set(bvalue); in SourceFileAttribute()
46 byte[] bvalue = new byte[2]; in ConstantAttribute()47 bvalue[0] = (byte)(index >>> 8); in ConstantAttribute()48 bvalue[1] = (byte)index; in ConstantAttribute()49 set(bvalue); in ConstantAttribute()
48 byte[] bvalue = new byte[2]; in SignatureAttribute()49 bvalue[0] = (byte)(index >>> 8); in SignatureAttribute()50 bvalue[1] = (byte)index; in SignatureAttribute()51 set(bvalue); in SignatureAttribute()
45 const deUint32 bvalue = (bu & ((0x1u << 31u) - 1u)); in calculateDiscreteFloatDistance() local48 return avalue + bvalue + 1u; in calculateDiscreteFloatDistance()49 else if (avalue < bvalue) in calculateDiscreteFloatDistance()50 return bvalue - avalue; in calculateDiscreteFloatDistance()52 return avalue - bvalue; in calculateDiscreteFloatDistance()
245 const deUint32 bvalue = (Float32(b).bits() & ((0x1u << 31u) - 1u)); in calcFloatDiff() local248 return avalue + bvalue + 1u; in calcFloatDiff()249 else if (avalue < bvalue) in calcFloatDiff()250 return bvalue - avalue; in calcFloatDiff()252 return avalue - bvalue; in calcFloatDiff()
93 DumpChar(bvalue(o),D); in DumpConstants()
165 #define bvalue(o) check_exp(ttisboolean(o), val_(o).b) macro170 #define l_isfalse(o) (ttisnil(o) || (ttisboolean(o) && bvalue(o) == 0))
260 printf(bvalue(o) ? "true" : "false"); in PrintConstant()
289 case LUA_TBOOLEAN: return bvalue(t1) == bvalue(t2); /* true must be 1 !! */ in luaV_equalobj_()
113 return hashboolean(t, bvalue(key)); in mainposition()