HomeSort by relevance Sort by last modified time
    Searched refs:JUMP (Results 1 - 20 of 20) sorted by null

  /external/linux-tools-perf/perf-3.12.0/arch/blackfin/lib/
memset.S 31 IF CC JUMP .Ltoo_small;
36 IF !CC JUMP .Lforce_align ; /* Jump if addr not aligned. */
50 IF !CC JUMP .Lbytes_left;
61 IF CC JUMP .Lfinished; /* Unusual */
77 IF !CC JUMP .Lskip1;
82 IF !CC JUMP .Laligned;
85 JUMP .Laligned;
memcpy.S 33 IF CC JUMP .L_P1L2147483647; /* Nothing to do */
41 IF !CC JUMP .Lno_overlap;
44 IF CC JUMP .Lhas_overlap;
53 IF CC JUMP .Lnot_aligned;
59 IF !CC JUMP .Lmore_than_seven;
92 IF !CC JUMP .Lbytes_left;
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
R600InstrInfo.cpp 195 if (static_cast<MachineInstr *>(I)->getOpcode() != AMDGPU::JUMP) {
205 static_cast<MachineInstr *>(--I)->getOpcode() != AMDGPU::JUMP) {
206 if (LastOpc == AMDGPU::JUMP) {
230 if (SecondLastOpc == AMDGPU::JUMP &&
232 LastOpc == AMDGPU::JUMP &&
271 BuildMI(&MBB, DL, get(AMDGPU::JUMP)).addMBB(TBB).addReg(0);
279 BuildMI(&MBB, DL, get(AMDGPU::JUMP))
289 BuildMI(&MBB, DL, get(AMDGPU::JUMP))
292 BuildMI(&MBB, DL, get(AMDGPU::JUMP)).addMBB(FBB).addReg(0);
313 case AMDGPU::JUMP
    [all...]
R600ISelLowering.cpp 200 BuildMI(*BB, I, BB->findDebugLoc(I), TII->get(AMDGPU::JUMP))
213 BuildMI(*BB, I, BB->findDebugLoc(I), TII->get(AMDGPU::JUMP))
227 BuildMI(*BB, I, BB->findDebugLoc(I), TII->get(AMDGPU::JUMP))
AMDILCFGStructurizer.cpp     [all...]
  /external/mesa3d/src/gallium/drivers/radeon/
R600InstrInfo.cpp 195 if (static_cast<MachineInstr *>(I)->getOpcode() != AMDGPU::JUMP) {
205 static_cast<MachineInstr *>(--I)->getOpcode() != AMDGPU::JUMP) {
206 if (LastOpc == AMDGPU::JUMP) {
230 if (SecondLastOpc == AMDGPU::JUMP &&
232 LastOpc == AMDGPU::JUMP &&
271 BuildMI(&MBB, DL, get(AMDGPU::JUMP)).addMBB(TBB).addReg(0);
279 BuildMI(&MBB, DL, get(AMDGPU::JUMP))
289 BuildMI(&MBB, DL, get(AMDGPU::JUMP))
292 BuildMI(&MBB, DL, get(AMDGPU::JUMP)).addMBB(FBB).addReg(0);
313 case AMDGPU::JUMP
    [all...]
R600ISelLowering.cpp 200 BuildMI(*BB, I, BB->findDebugLoc(I), TII->get(AMDGPU::JUMP))
213 BuildMI(*BB, I, BB->findDebugLoc(I), TII->get(AMDGPU::JUMP))
227 BuildMI(*BB, I, BB->findDebugLoc(I), TII->get(AMDGPU::JUMP))
AMDILCFGStructurizer.cpp     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
sre_constants.py 47 JUMP = "jump"
113 JUMP,
sre_compile.py 144 emit(OPCODES[JUMP])
169 emit(OPCODES[JUMP])
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
sre_constants.py 47 JUMP = "jump"
113 JUMP,
sre_compile.py 144 emit(OPCODES[JUMP])
169 emit(OPCODES[JUMP])
  /external/pcre/dist/
pcre_jit_compile.c 131 ')' backtrack path (If we arrived from "C" jump to the backtrack of "C")
134 jump to D matching path
141 whether there is a next alternative. If so, it needs to jump back to
191 struct sljit_jump *jump; member in struct:jump_list
335 /* Current position where a THEN must jump. */
396 /* Labels and jump lists. */
529 #define JUMP(type) \
533 #define JUMPHERE(jump) \
534 sljit_set_label((jump), sljit_emit_label(compiler))
535 #define SET_LABEL(jump, label)
2254 struct sljit_jump *jump; local
2297 struct sljit_jump *jump; local
2440 struct sljit_jump *jump = NULL; local
2470 struct sljit_jump *jump; local
2499 struct sljit_jump *jump; local
2531 struct sljit_jump *jump; local
2593 struct sljit_jump *jump; local
2620 struct sljit_jump *jump; local
2751 struct sljit_jump *jump; local
2850 struct sljit_jump *jump; local
2886 struct sljit_jump *jump; local
2934 struct sljit_jump *jump; local
2970 struct sljit_jump *jump; local
3926 struct sljit_jump *jump; local
4061 struct sljit_jump *jump; local
4099 struct sljit_jump *jump; local
4451 struct sljit_jump *jump; local
4480 struct sljit_jump *jump; local
4738 struct sljit_jump *jump = NULL; local
5239 struct sljit_jump *jump[4]; local
5940 struct sljit_jump *jump = NULL; local
6040 struct sljit_jump *jump = NULL; local
6429 struct sljit_jump *jump; local
6947 struct sljit_jump *jump; local
7853 struct sljit_jump *jump = NULL; local
8548 struct sljit_jump *jump = NULL; local
9265 struct sljit_jump *jump; local
9329 struct sljit_jump *jump; local
9390 struct sljit_jump *jump; local
9616 struct sljit_jump *jump; local
9753 struct sljit_jump *jump; local
    [all...]
  /external/llvm/lib/Target/R600/
R600InstrInfo.cpp 688 return Opcode == AMDGPU::JUMP || Opcode == AMDGPU::JUMP_COND;
722 // Remove successive JUMP
723 while (I != MBB.begin() && std::prev(I)->getOpcode() == AMDGPU::JUMP) {
735 if (LastOpc == AMDGPU::JUMP) {
757 if (SecondLastOpc == AMDGPU::JUMP_COND && LastOpc == AMDGPU::JUMP) {
795 BuildMI(&MBB, DL, get(AMDGPU::JUMP)).addMBB(TBB);
821 BuildMI(&MBB, DL, get(AMDGPU::JUMP)).addMBB(FBB);
857 case AMDGPU::JUMP:
882 case AMDGPU::JUMP:
    [all...]
AMDILCFGStructurizer.cpp 158 /// This step will remove every unconditionnal/dead jump instructions and make
538 case AMDGPU::JUMP: return AMDGPU::IF_PREDICATE_SET;
549 case AMDGPU::JUMP: return AMDGPU::IF_PREDICATE_SET;
560 case AMDGPU::JUMP: return AMDGPU::CONTINUE_LOGICALNZ_i32;
569 case AMDGPU::JUMP: return AMDGPU::CONTINUE_LOGICALZ_i32;
608 case AMDGPU::JUMP:
717 && "found a jump table");
736 // TODO to fix up jump table so later phase won't be confused. if
737 // (jumpTableInfo->isEmpty() == false) { need to clean the jump table, but
739 // blocks in the jump table with the entryBlk //
    [all...]
R600ISelLowering.cpp 482 BuildMI(*BB, I, BB->findDebugLoc(I), TII->get(AMDGPU::JUMP))
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/
user_event_detail.js 77 this.category = cvox.UserEventDetail.Category.JUMP;
122 JUMP: 'ATJumpEvent',
event_watcher.js 381 cvox.UserEventDetail.Category.JUMP,
    [all...]
  /external/chromium_org/chrome/renderer/resources/
offline.js 180 JUMP: {'38': 1, '32': 1}, // Up, spacebar
473 // First jump triggers the intro.
581 if (!this.crashed && (Runner.keycodes.JUMP[String(e.keyCode)] ||
599 // Speed drop, activated only when jump key is not pressed.
613 var isjumpKey = Runner.keycodes.JUMP[keyCode] ||
622 // Check that enough time has elapsed before allowing jump key to restart.
628 Runner.keycodes.JUMP[keyCode])) {
    [all...]
  /external/chromium_org/chrome/third_party/chromevox/
chromeVoxChromePageScript.js 52 cvox.ChromeVox.entireDocumentIsHidden=!1;cvox.ChromeVox.storeOn=function(a){a.isStickyPrefOn=cvox.ChromeVox.isStickyPrefOn;cvox.ChromeVox.navigationManager.storeOn(a)};cvox.ChromeVox.readFrom=function(a){cvox.ChromeVox.isStickyPrefOn=a.isStickyPrefOn;cvox.ChromeVox.navigationManager.readFrom(a)};cvox.ChromeVox.isStickyModeOn=function(){return null!==cvox.ChromeVox.stickyOverride?cvox.ChromeVox.stickyOverride:cvox.ChromeVox.isStickyPrefOn};cvox.UserEventDetail=function(a){this.command=this.category="";-1!=cvox.UserEventDetail.JUMP_COMMANDS.indexOf(a.command)&&(this.command=a.command,this.category=cvox.UserEventDetail.Category.JUMP);this.customCommand="";a.customCommand&&(this.customCommand=a.customCommand,this.category=cvox.UserEventDetail.Category.CUSTOM);this.status=cvox.UserEventDetail.Status.PENDING;switch(a.status){case cvox.UserEventDetail.Status.SUCCESS:this.status=cvox.UserEventDetail.Status.SUCCESS;break;case cvox.UserEventDetail.Status.FAILURE:this.status=
53 cvox.UserEventDetail.Status.FAILURE}this.resultNode=null;a.resultNode&&cvox.DomUtil.isAttachedToDocument(a.resultNode)&&(this.resultNode=a.resultNode)};cvox.UserEventDetail.Category={JUMP:"ATJumpEvent",CUSTOM:"ATCustomEvent"};cvox.UserEventDetail.Status={PENDING:"PENDING",SUCCESS:"SUCCESS",FAILURE:"FAILURE"};cvox.UserEventDetail.JUMP_COMMANDS="nextCheckbox previousCheckbox nextRadio previousRadio nextSlider previousSlider nextGraphic previousGraphic nextButton previousButton nextComboBox previousComboBox nextEditText previousEditText nextHeading previousHeading nextHeading1 previousHeading1 nextHeading2 previousHeading2 nextHeading3 previousHeading3 nextHeading4 previousHeading4 nextHeading5 previousHeading5 nextHeading6 previousHeading6 nextLink previousLink nextMath previousMath nextTable previousTable nextList previousList nextListItem previousListItem nextFormField previousFormField nextLandmark previousLandmark nextSection previousSection nextControl previousControl".split(" ");
    [all...]

Completed in 2086 milliseconds