Searched refs:bvalue (Results 1 – 10 of 10) 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 ConstantAttribute()47 bvalue[0] = (byte)(index >>> 8); in ConstantAttribute()48 bvalue[1] = (byte)index; in ConstantAttribute()49 set(bvalue); in ConstantAttribute()
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()
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()
23 create table b(id integer primary key, bvalue varchar);27 insert into b(bvalue) values('btest');33 SELECT cc.id, cc.b_id, cc.myvalue, dd.bvalue 36 INNER JOIN b ON a.b_id = b.id WHERE b.bvalue = 'btest'
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()
266 case LUA_TBOOLEAN: return bvalue(t1) == bvalue(t2); /* true must be 1 !! */ in luaV_equalobj_()
112 return hashboolean(t, bvalue(key)); in mainposition()