Lines Matching refs:B

177       dex::u4 B = Trim_S0(bytecode->CastOperand<Const32>(1)->u.u4_value);  in Visit()  local
178 bytecode_.Push<dex::u2>(Pack_4_4_8(B, vA, opcode)); in Visit()
185 dex::u4 B = Trim_S2(bytecode->CastOperand<Const32>(1)->u.u4_value); in Visit() local
187 bytecode_.Push<dex::u2>(Pack_16(B)); in Visit()
201 dex::u4 B = bytecode->CastOperand<Const32>(1)->u.u4_value; in Visit() local
203 bytecode_.Push<dex::u2>(Pack_16(B & 0xffff)); in Visit()
204 bytecode_.Push<dex::u2>(Pack_16(B >> 16)); in Visit()
246 dex::u4 B = 0; in Visit() local
249 B = label->offset - offset_; in Visit()
250 SLICER_CHECK(B != 0); in Visit()
251 SLICER_CHECK((B >> 16) == 0xffff); // TODO: out of range! in Visit()
256 bytecode_.Push<dex::u2>(Pack_16(B & 0xffff)); in Visit()
283 dex::u4 B = 0; in Visit() local
286 B = label->offset - offset_; in Visit()
287 SLICER_CHECK(B != 0); in Visit()
292 bytecode_.Push<dex::u2>(Pack_16(B & 0xffff)); in Visit()
293 bytecode_.Push<dex::u2>(Pack_16(B >> 16)); in Visit()
340 dex::u4 B = bytecode->CastOperand<IndexedOperand>(1)->index; in Visit() local
342 bytecode_.Push<dex::u2>(Pack_16(B)); in Visit()
349 dex::u4 B = bytecode->CastOperand<IndexedOperand>(1)->index; in Visit() local
351 bytecode_.Push<dex::u2>(Pack_16(B & 0xffff)); in Visit()
352 bytecode_.Push<dex::u2>(Pack_16(B >> 16)); in Visit()
359 dex::u4 B = bytecode->CastOperand<IndexedOperand>(1)->index; in Visit() local
367 bytecode_.Push<dex::u2>(Pack_16(B)); in Visit()
381 dex::u4 B = bytecode->CastOperand<IndexedOperand>(1)->index; in Visit() local
384 bytecode_.Push<dex::u2>(Pack_16(B)); in Visit()
397 dex::u8 B = bytecode->CastOperand<Const64>(1)->u.u8_value; in Visit() local
399 bytecode_.Push<dex::u2>(Pack_16((B >> 0) & 0xffff)); in Visit()
400 bytecode_.Push<dex::u2>(Pack_16((B >> 16) & 0xffff)); in Visit()
401 bytecode_.Push<dex::u2>(Pack_16((B >> 32) & 0xffff)); in Visit()
402 bytecode_.Push<dex::u2>(Pack_16((B >> 48) & 0xffff)); in Visit()
410 dex::u4 B = bytecode->CastOperand<Const32>(1)->u.u4_value >> 16; in Visit() local
412 bytecode_.Push<dex::u2>(Pack_16(B)); in Visit()
417 dex::u4 B = bytecode->CastOperand<Const64>(1)->u.u8_value >> 48; in Visit() local
419 bytecode_.Push<dex::u2>(Pack_16(B)); in Visit()