Searched defs:jumps (Results 1 - 7 of 7) sorted by relevance

/external/clang/test/SemaCXX/
H A Dexceptions.cpp35 void jumps() { function
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/heightmap/
H A DParticleDepositionHeightMap.java54 private int jumps; field in class:ParticleDepositionHeightMap
65 * @param jumps number of areas to drop particles. Can also think
85 int jumps,
93 || jumps < 0
111 this.jumps = jumps;
156 for (int i = 0; i < jumps; i++) {
328 * <code>setJumps</code> sets the number of jumps or peaks that will
330 * @param jumps the number of jumps t
83 ParticleDepositionHeightMap( int size, int jumps, int peakWalk, int minParticles, int maxParticles, float caldera) argument
333 setJumps(int jumps) argument
[all...]
/external/mesa3d/src/glsl/
H A Dlower_jumps.cpp27 * 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[
[all...]
/external/chromium/net/base/
H A Ddnsrr_resolver.cc479 unsigned jumps = 0; local
497 if (jumps > 100)
507 if (jumps == 0) {
511 jumps++;
529 if (jumps == 0) {
/external/webkit/Source/JavaScriptCore/assembler/
H A DAbstractMacroAssembler.h400 // 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/javassist/src/main/javassist/bytecode/
H A DCodeIterator.java1049 ArrayList jumps = makeJumpList(code, code.length);
1051 addLdcW(ldcs, jumps);
1056 byte[] r = insertGap2w(code, 0, 0, false, jumps, pointers);
1060 private static void addLdcW(CodeAttribute.LdcEntry ldcs, ArrayList jumps) { argument
1063 int s = jumps.size();
1065 if (where < ((Branch)jumps.get(i)).orgPos) {
1066 jumps.add(i, ldcw);
1070 jumps.add(ldcw);
1093 ArrayList jumps = makeJumpList(code, code.length);
1095 byte[] r = insertGap2w(code, where, gapLength, exclusive, jumps, pointer
1110 insertGap2w(byte[] code, int where, int gapLength, boolean exclusive, ArrayList jumps, Pointers ptrs) argument
1215 makeExapndedCode(byte[] code, ArrayList jumps, int where, int gapLength) argument
[all...]
/external/webkit/Source/JavaScriptCore/yarr/
H A DYarrJIT.cpp367 void addIndirectJumpEntry(int32_t stackOffset, JumpList jumps) argument
369 JumpList::JumpVector jumpVector = jumps.jumps();
374 jumps.empty();
449 void addJumpsToNextInteration(JumpList jumps) argument
451 m_jumpsToNextInteration.append(jumps);
723 void jumpToBacktrack(YarrGenerator* generator, JumpList& jumps) argument
727 jumps.linkTo(*m_backtrackSourceLabel, generator);
729 m_backtrackSourceJumps->append(jumps);
731 generator->m_expressionState.addIndirectJumpEntry(getStackOffset(), jumps); local
933 jumpToBacktrack(YarrGenerator* generator, JumpList& jumps) argument
[all...]

Completed in 200 milliseconds