HomeSort by relevance Sort by last modified time
    Searched full:increment (Results 376 - 400 of 1961) sorted by null

<<11121314151617181920>>

  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/generators/
DSAParametersGenerator.java 269 // 11.9 offset = offset + n + 1. Comment: Increment offset; then, as part of
270 // the loop in step 11, increment counter; if
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/channel/
ChannelManager.java 934 int increment = 0; local
1013 increment = minFreeSpace - c.localWindow;
1027 if (increment > 0)
1030 log.debug("Sending SSH_MSG_CHANNEL_WINDOW_ADJUST (channel " + localID + ", " + increment + ")");
1041 msg[5] = (byte) (increment >> 24);
1042 msg[6] = (byte) (increment >> 16);
1043 msg[7] = (byte) (increment >> 8);
1044 msg[8] = (byte) (increment);
    [all...]
  /external/jmonkeyengine/engine/src/tools/jme3tools/converters/model/strip/
TriStrip.java 199 numGroups++; //we've got a list as well, increment
286 //add to index cache, increment
  /external/jsilver/src/com/google/clearsilver/jsilver/compiler/
JavaExpression.java 460 * An increment statement (e.g. a += b). The difference with infix is that this does not wrap the
463 public static JavaExpression increment(Type type, final JavaExpression accumulator,
  /external/jsilver/src/com/google/streamhtmlparser/impl/
JavascriptParserImpl.java 168 * Prefix unary increment of a regular expression: var result = ++/test/;
190 // Ignore unary increment
  /external/kernel-headers/original/asm-mips/
dma.h 149 #define DMA_MODE_READ 0x44 /* I/O to memory, no autoinit, increment, single mode */
150 #define DMA_MODE_WRITE 0x48 /* memory to I/O, no autoinit, increment, single mode */
  /external/kernel-headers/original/asm-x86/
dma_32.h 130 #define DMA_MODE_READ 0x44 /* I/O to memory, no autoinit, increment, single mode */
131 #define DMA_MODE_WRITE 0x48 /* memory to I/O, no autoinit, increment, single mode */
  /external/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGVLIW.cpp 240 // If this is a pseudo-op node, we don't want to increment the current
242 if (FoundSUnit->Latency) // Don't increment CurCycle for pseudo-ops!
  /external/llvm/runtime/libprofile/
PathProfiling.c 182 /* Increment a specific path's count */
189 /* Increment a specific path's count */
  /external/llvm/unittests/Support/
Path.cpp 232 for (fs::directory_iterator i(".", ec), e; i != e; i.increment(ec))
250 + "/recursive", ec), e; i != e; i.increment(ec)){
  /external/mesa3d/src/glsl/
ir_hv_accept.cpp 91 if (this->increment) {
92 s = this->increment->accept(v);
ir_print_visitor.cpp 444 if (ir->increment != NULL)
445 ir->increment->accept(this);
  /external/skia/src/gpu/
GrStencil.h 77 kIncWrap_StencilOp, // increment and wrap at max
78 kIncClamp_StencilOp, // increment and clamp at max
  /external/sonivox/arm-fm-22k/lib_src/
eas_mixer.h 127 * gainLeft left gain increment per sample
128 * gainRight right gain increment per sample
  /external/sonivox/arm-hybrid-22k/lib_src/
eas_mixer.h 127 * gainLeft left gain increment per sample
128 * gainRight right gain increment per sample
  /external/sonivox/arm-wt-22k/lib_src/
eas_mixer.h 127 * gainLeft left gain increment per sample
128 * gainRight right gain increment per sample
  /external/v8/src/
code-stubs.cc 53 masm->isolate()->counters()->code_stubs()->Increment();
83 counters->total_stubs_code_size()->Increment(code->instruction_size());
  /external/v8/tools/
merge-to-branch.sh 188 echo ">>> Step $CURRENT_STEP: Increment version number."
191 confirm "Automatically increment PATCH_LEVEL? (Saying 'n' will fire up \
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Expressions/
11.3.1.js 24 ECMA Section: 11.3.1 Postfix increment operator
44 writeHeaderToLog( SECTION + " Postfix increment operator");
11.4.4.js 24 ECMA Section: 11.4.4 Prefix increment operator
45 writeHeaderToLog( SECTION + " Prefix increment operator");
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
intermOut.cpp 149 case EOpPostIncrement: out << "Post-Increment"; break;
151 case EOpPreIncrement: out << "Pre-Increment"; break;
  /external/webkit/Source/WebCore/css/
CSSPropertyNames.in 80 counter-increment
251 -webkit-marquee-increment
  /external/webkit/Source/WebCore/platform/graphics/android/layers/
BaseLayerAndroid.cpp 147 ClassTracker::instance()->increment("FixedBackgroundImageLayerAndroid");
157 ClassTracker::instance()->increment("FixedBackgroundImageLayerAndroid");
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/
omxVCM4P10_DequantTransformResidualFromPairAndAdd_s.s 435 ADD pPredTemp,pPredTemp,predstep ;// Increment pPred ptr
456 ADD pDstTemp,pDstTemp,dstStep ;// Increment pDst ptr
  /frameworks/base/core/java/android/speech/tts/
BlockingAudioTrack.java 22 * The minimum increment of time to wait for an AudioTrack to finish
28 * The maximum increment of time to sleep while waiting for an AudioTrack

Completed in 706 milliseconds

<<11121314151617181920>>