HomeSort by relevance Sort by last modified time
    Searched defs:jumps (Results 1 - 7 of 7) sorted by null

  /external/clang/test/SemaCXX/
exceptions.cpp 35 void jumps() { function
  /external/mesa3d/src/glsl/
lower_jumps.cpp 27 * This pass lowers jumps (break, continue, and return) to if/else structures.
30 * 1. Pull jumps out of ifs where possible
81 * Note that identical jumps are usually unified though.
305 ir_jump* jumps[2]; local
313 jumps[i] = 0;
315 jumps[i] = (ir_jump*)list.get_tail();
322 if(jumps[i]) {
324 assert(jump_strengths[i] == get_jump_strength(jumps[i]));
329 /* move both jumps out if possible */
343 jumps[0]->remove()
    [all...]
  /external/webkit/Source/JavaScriptCore/assembler/
AbstractMacroAssembler.h 400 // All jumps in the set will be linked to the same destination.
443 const JumpVector& jumps() { return m_jumps; } function in class:JSC::AbstractMacroAssembler::JumpList
  /external/chromium/net/base/
dnsrr_resolver.cc 479 unsigned jumps = 0; local
497 if (jumps > 100)
507 if (jumps == 0) {
511 jumps++;
529 if (jumps == 0) {
  /external/javassist/src/main/javassist/bytecode/
CodeIterator.java 1049 ArrayList jumps = makeJumpList(code, code.length); local
1157 ArrayList jumps = new ArrayList(); local
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/sed/
compile.c 114 /* Information about labels and jumps-to-labels. This is used to do variable in typeref:struct:sed_label
116 static struct sed_label *jumps = NULL;
1211 jumps = setup_label(jumps, vector->v_length, read_label(), NULL);
    [all...]
  /external/webkit/Source/JavaScriptCore/yarr/
YarrJIT.cpp 230 // Jumps if input not available; will have (incorrectly) incremented already!
367 void addIndirectJumpEntry(int32_t stackOffset, JumpList jumps)
369 JumpList::JumpVector jumpVector = jumps.jumps();
374 jumps.empty();
449 void addJumpsToNextInteration(JumpList jumps)
451 m_jumpsToNextInteration.append(jumps);
723 void jumpToBacktrack(YarrGenerator* generator, JumpList& jumps)
727 jumps.linkTo(*m_backtrackSourceLabel, generator);
729 m_backtrackSourceJumps->append(jumps);
731 generator->m_expressionState.addIndirectJumpEntry(getStackOffset(), jumps); local
    [all...]

Completed in 1366 milliseconds