/external/llvm/test/CodeGen/ARM/ |
2011-08-29-SchedCycle.ll | 3 ; When a i64 sub is expanded to subc + sube. 10 ; sube 22 ; sube 24 ; However since subc and sube are "glued" together, this ends up being a 25 ; cycle when the scheduler combine subc and sube as a single scheduling 30 ; fix subc / sube (and addc / adde) to use physical register dependency instead.
|
/frameworks/av/media/libeffects/proxy/ |
EffectProxy.cpp | 60 sub_effect_entry_t** sube; local 80 sube = new sub_effect_entry_t*[SUB_FX_COUNT]; 81 pContext->sube = new sub_effect_entry_t*[SUB_FX_COUNT]; 84 int retValue = EffectGetSubEffects(uuid, sube, SUB_FX_COUNT); 88 delete[] sube; 91 delete[] pContext->sube; 100 desc[0] = *(effect_descriptor_t*)(sube[0])->object; 101 desc[1] = *(effect_descriptor_t*)(sube[1])->object; 102 aeli[0] = sube[0]->lib->desc; 103 aeli[1] = sube[1]->lib->desc [all...] |
EffectProxy.h | 67 sub_effect_entry_t** sube; // Points to the sub effects member in struct:android::EffectContext
|
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/ |
expr.c | 67 yasm_expr *ptr, *sube; local 88 sube = ptr->terms[0].data.expn; 89 ptr->terms[0] = sube->terms[0]; /* structure copy */ 91 yasm_xfree(sube); 111 sube = ptr->terms[1].data.expn; 112 ptr->terms[1] = sube->terms[0]; /* structure copy */ 114 yasm_xfree(sube); 222 yasm_expr *sube; local 231 sube = e->terms[i].data.expn; 232 if (sube->op != YASM_EXPR_MUL || sube->numterms != 2 365 yasm_expr *sube = yasm_xmalloc(sizeof(yasm_expr)); local 629 yasm_expr *sube = e->terms[0].data.expn; local 646 yasm_expr *sube = e->terms[i].data.expn; local 748 yasm_expr *sube = e->terms[i].data.expn; local [all...] |
value.c | 172 yasm_expr *sube; local 181 sube = e->terms[i].data.expn; 183 if (sube->op != YASM_EXPR_MUL || sube->numterms != 2) { 185 if (value_finalize_scan(value, sube, expr_precbc, 191 if (sube->terms[0].type == YASM_EXPR_INT && 192 sube->terms[1].type == YASM_EXPR_SYM) { 193 intn = sube->terms[0].data.intn; 194 sym = sube->terms[1].data.sym; 195 } else if (sube->terms[0].type == YASM_EXPR_SYM & 533 yasm_expr *sube = value->abs->terms[0].data.expn; local [all...] |
/frameworks/av/media/libeffects/factory/ |
EffectsFactory.c | 694 list_sub_elem_t *sube = NULL; local 697 sube = malloc(sizeof(list_sub_elem_t)); 698 sube->object = d; 699 sube->sub_elem = NULL; 700 sube->next = gSubEffectList; 701 gSubEffectList = sube; 707 gSubEffectList = sube->next; 708 free(sube->sub_elem);// Free an already added sub effect 709 sube->sub_elem = NULL; 710 free(sube); [all...] |
/external/llvm/lib/Target/MSP430/ |
MSP430InstrInfo.td | [all...] |
/external/llvm/lib/Target/Mips/ |
Mips16ISelDAGToDAG.cpp | 252 case ISD::SUBE: 257 (Opc == ISD::SUBC || Opc == ISD::SUBE)) &&
|
MipsSEISelDAGToDAG.cpp | 222 (Opc == ISD::SUBC || Opc == ISD::SUBE)) && 330 case ISD::SUBE: {
|
MipsSEISelLowering.cpp | 115 setTargetDAGCombine(ISD::SUBE); 238 // (addc Lo0, multLo), (sube Hi0, multHi), 295 // replace uses of sube and subc here 499 case ISD::SUBE:
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
HTMLEntities.properties | 250 sube=8838
|
/external/chromium_org/third_party/markupsafe/ |
_constants.py | 233 'sube': 8838,
|
/external/libvpx/libvpx/examples/includes/geshi/geshi/ |
d.php | 93 "nsub|sube|supe|oplus|otimes|perp|sdot|lceil|rceil|lfloor|rfloor|".
|
/external/libvpx/libvpx/examples/includes/ASCIIMathPHP-2.0/ |
ASCIIMathPHP-2.0.cfg.php | 81 'sube' => array( 'input'=>'sube','tag'=>'mo', 'output'=>'&#' . hexdec('2286') . ';'),
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
SelectionDAGDumper.cpp | 205 case ISD::SUBE: return "sube";
|
/external/chromium_org/chrome/third_party/chromevox/chromevox/injected/ |
mathjax_external_util.js | 327 sube: '2286',
|
/external/llvm/lib/Target/Hexagon/ |
HexagonISelLowering.cpp | [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/bin/ |
bin-objfmt.c | 927 yasm_expr *sube; local 928 sube = yasm_expr_create(YASM_EXPR_SUB, yasm_expr_precbc(bc), 932 yasm_expr_expr(sube), bc->line); [all...] |
/external/llvm/lib/Target/PowerPC/ |
PPCInstr64Bit.td | 459 [(set i64:$rT, (sube i64:$rB, i64:$rA))]>; 462 [(set i64:$rT, (sube -1, i64:$rA))]>; 465 [(set i64:$rT, (sube 0, i64:$rA))]>; [all...] |
/external/llvm/utils/TableGen/ |
SubtargetEmitter.cpp | 813 RecIter SubI = SubResources.begin(), SubE = SubResources.end(); 814 for( ; SubI != SubE; ++SubI) { 820 if (SubI == SubE) { [all...] |
/external/clang/lib/Sema/ |
SemaExceptionSpec.cpp | 606 SubE = Subset->exception_end(); SubI != SubE; ++SubI) { [all...] |
SemaExprCXX.cpp | [all...] |
/external/llvm/lib/Target/ARM/ |
ARMISelLowering.h | 83 SUBE, // Sub using carry
|
/external/llvm/lib/Target/R600/ |
AMDILISelLowering.cpp | 100 setOperationAction(ISD::SUBE, VT, Expand);
|
/external/llvm/lib/Target/Sparc/ |
SparcInstr64Bit.td | 158 def : Pat<(sube i64:$a, i64:$b), (SUBXrr $a, $b)>;
|