Home
last modified time | relevance | path

Searched refs:vB (Results 1 – 14 of 14) sorted by relevance

/external/llvm/lib/Target/PowerPC/
DPPCInstrAltivec.td170 : VAForm_1a<xo, (outs VRRC:$vD), (ins VRRC:$vA, VRRC:$vB, VRRC:$vC),
171 !strconcat(opc, " $vD, $vA, $vB, $vC"), VecFP,
172 [(set VRRC:$vD, (IntID VRRC:$vA, VRRC:$vB, VRRC:$vC))]>;
176 : VXForm_1<xo, (outs VRRC:$vD), (ins VRRC:$vA, VRRC:$vB),
177 !strconcat(opc, " $vD, $vA, $vB"), VecFP,
178 [(set VRRC:$vD, (IntID VRRC:$vA, VRRC:$vB))]>;
182 : VXForm_2<xo, (outs VRRC:$vD), (ins VRRC:$vB),
183 !strconcat(opc, " $vD, $vB"), VecFP,
184 [(set VRRC:$vD, (IntID VRRC:$vB))]>;
224 def MTVSCR : VXForm_5<1604, (outs), (ins VRRC:$vB),
[all …]
/external/dexmaker/src/dx/java/com/android/dx/ssa/
DSCCP.java306 int vB = ((CstInteger) cB).getValue(); in simulateBranch() local
309 constantSuccessor = (vA == vB); in simulateBranch()
312 constantSuccessor = (vA != vB); in simulateBranch()
315 constantSuccessor = (vA < vB); in simulateBranch()
318 constantSuccessor = (vA >= vB); in simulateBranch()
321 constantSuccessor = (vA <= vB); in simulateBranch()
324 constantSuccessor = (vA > vB); in simulateBranch()
403 int vB = ((CstInteger) cB).getValue(); in simulateMath() local
407 vR = vA + vB; in simulateMath()
412 vR = vB - vA; in simulateMath()
[all …]
/external/valgrind/main/VEX/priv/
Dguest_ppc_toIR.c8448 IRTemp vB = newTemp(Ity_V128); in dis_av_procctl() local
8454 assign( vB, getVReg(vB_addr)); in dis_av_procctl()
8455 putGST( PPC_GST_VSCR, unop(Iop_V128to32, mkexpr(vB)) ); in dis_av_procctl()
10439 do_vvec_fp_cmp ( IRTemp vA, IRTemp vB, UChar XT, UChar flag_rC, in do_vvec_fp_cmp() argument
10457 assign(frB_hi, unop(Iop_ReinterpI64asF64, unop(Iop_V128HIto64, mkexpr( vB )))); in do_vvec_fp_cmp()
10459 assign(frB_lo, unop(Iop_ReinterpI64asF64, unop(Iop_V128to64, mkexpr( vB )))); in do_vvec_fp_cmp()
10536 IRTemp vB = newTemp( Ity_V128 ); in dis_vvec_cmp() local
10544 assign( vB, getVSReg( XB ) ); in dis_vvec_cmp()
10551 do_vvec_fp_cmp(vA, vB, XT, flag_rC, PPC_CMP_EQ); in dis_vvec_cmp()
10559 do_vvec_fp_cmp(vA, vB, XT, flag_rC, PPC_CMP_GE); in dis_vvec_cmp()
[all …]
Dhost_ppc_defs.c3821 UInt vB = 29; // XXX: Using v29 for temp do not change in emit_PPCInstr() local
3828 p = mkFormVX( p, 4, vB, konst, 0, 908 ); in emit_PPCInstr()
3831 p = mkFormVX( p, 4, vB, vB, vB, 388 ); in emit_PPCInstr()
3834 p = mkFormVA( p, 4, v_dst, v_srcL, vB, v_srcR, 46 ); in emit_PPCInstr()
/external/clang/lib/Analysis/
DUninitializedValues.cpp628 BVPair vB = vals.getValueVectors(*itr, false); in runOnBlock() local
635 vals.mergeIntoScratch(*(vB.second ? vB.second : vB.first), false); in runOnBlock()
642 vals.mergeIntoScratch(*vB.first, false); in runOnBlock()
/external/qemu/distrib/sdl-1.2.12/src/video/
DSDL_blit_N.c354 vector unsigned short vR, vG, vB; in Blit_RGB565_32Altivec() local
361 vB = vec_sl((vector unsigned short)vsrc, v3); in Blit_RGB565_32Altivec()
362 vG = vec_sl(vB, v2); in Blit_RGB565_32Altivec()
365 vdst1 = vec_perm(vdst1, (vector unsigned char)vB, vblue1); in Blit_RGB565_32Altivec()
371 vdst2 = vec_perm(vdst2, (vector unsigned char)vB, vblue2); in Blit_RGB565_32Altivec()
499 vector unsigned short vR, vG, vB; in Blit_RGB555_32Altivec() local
506 vB = vec_sl((vector unsigned short)vsrc, v3); in Blit_RGB555_32Altivec()
507 vG = vec_sl(vB, v3); in Blit_RGB555_32Altivec()
510 vdst1 = vec_perm(vdst1, (vector unsigned char)vB, vblue1); in Blit_RGB555_32Altivec()
516 vdst2 = vec_perm(vdst2, (vector unsigned char)vB, vblue2); in Blit_RGB555_32Altivec()
DSDL_blit_A.c882 vector unsigned short vR, vG, vB; in Blit32to565PixelAlphaAltivec() local
898 vB = vec_sl((vector unsigned short)voverflow, v3_16); in Blit32to565PixelAlphaAltivec()
899 vG = vec_sl(vB, v2_16); in Blit32to565PixelAlphaAltivec()
901 vdst1 = vec_perm(vdst1, (vector unsigned char)vB, vblue1); in Blit32to565PixelAlphaAltivec()
904 vdst2 = vec_perm(vdst2, (vector unsigned char)vB, vblue2); in Blit32to565PixelAlphaAltivec()
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/fr-FR/
Dfr-FR_nk0_kdt_mgc5.pkb33 �d8ވM�G�vB���,)|�#GQ�v?������Ä;�
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/en-GB/
Den-GB_kdt_posd.pkb80 …>�N�>�C�ĭ�����,��% >��_�X���h���aa�c@ ���=,(����xXft������=�vB '�-,Q���|��c�[��…
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/en-US/
Den-US_lh0_kdt_dur.pkb856 �,x���D6�lD�� vB���on#2���8�#9��b�+���0��� ��N�L;fh���Jڊ��h\�]w$�w��iA�N�NTL����µ�[��IGe…
/external/mksh/src/
Dedit.c3300 #define vB 0x20 /* bad command (^@) */ macro
3304 #define is_bad(c) (classify[(c)&0x7f]&vB)
3316 vB, 0, 0, 0, 0, vC|vU, vC|vZ, 0,
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/de-DE/
Dde-DE_kdt_g2p.pkb337 ]��MX4�vB���-lS �#���Lh? �_,$S7�����fк�0����O�����������������u��"�� �
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/it-IT/
Dit-IT_cm0_kpdf_mgc.pkb3348 ��FRS(CO&-P+,EG<2/8@ 2+:8(<[:NSS]poSpB:8>8F@QQR\o}@vB&$827CE=FIONXJ`+,5*58?��.�'M!�\S-��SD��K…
3952 �����.��qAy5SBM>^ejKq920PfhN5L<83n�`dBPIO_g`).6BDebI=TQSTG�^KIINCTXcc__or�vB?;9HH?�#�U�<�Z…
/external/webkit/PerformanceTests/Parser/resources/
Dfinal-url-en19647 http://www.911jobforums.com/vB/showthread.php3?goto=lastpost&t=38943