Home
last modified time | relevance | path

Searched refs:bvalue (Results 1 – 16 of 16) sorted by relevance

/external/javassist/src/main/javassist/bytecode/
DEnclosingMethodAttribute.java50 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 …]
DSourceFileAttribute.java46 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()
DConstantAttribute.java46 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()
DSignatureAttribute.java48 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()
/external/deqp/modules/internal/
DditSRGB8ConversionTest.cpp45 const deUint32 bvalue = (bu & ((0x1u << 31u) - 1u)); in calculateDiscreteFloatDistance() local
48 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()
/external/skia/third_party/lua/src/
Dldump.c93 DumpChar(bvalue(o),D); in DumpConstants()
Dlobject.h165 #define bvalue(o) check_exp(ttisboolean(o), val_(o).b) macro
170 #define l_isfalse(o) (ttisnil(o) || (ttisboolean(o) && bvalue(o) == 0))
Dluac.c260 printf(bvalue(o) ? "true" : "false"); in PrintConstant()
Dlvm.c266 case LUA_TBOOLEAN: return bvalue(t1) == bvalue(t2); /* true must be 1 !! */ in luaV_equalobj_()
Dltable.c112 return hashboolean(t, bvalue(key)); in mainposition()
/external/syslinux/com32/lua/src/
Dldump.c93 DumpChar(bvalue(o),D); in DumpConstants()
Dlobject.h165 #define bvalue(o) check_exp(ttisboolean(o), val_(o).b) macro
170 #define l_isfalse(o) (ttisnil(o) || (ttisboolean(o) && bvalue(o) == 0))
Dluac.c260 printf(bvalue(o) ? "true" : "false"); in PrintConstant()
Dlvm.c289 case LUA_TBOOLEAN: return bvalue(t1) == bvalue(t2); /* true must be 1 !! */ in luaV_equalobj_()
Dltable.c113 return hashboolean(t, bvalue(key)); in mainposition()
/external/deqp/external/vulkancts/modules/vulkan/api/
DvktApiImageClearingTests.cpp243 const deUint32 bvalue = (Float32(b).bits() & ((0x1u << 31u) - 1u)); in calcFloatDiff() local
246 return avalue + bvalue + 1u; in calcFloatDiff()
247 else if (avalue < bvalue) in calcFloatDiff()
248 return bvalue - avalue; in calcFloatDiff()
250 return avalue - bvalue; in calcFloatDiff()