Searched refs:StepSize (Results 1 - 15 of 15) sorted by relevance
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/ |
H A D | SingleStepTest.java | 60 stepFunction(JDWPConstants.StepSize.LINE, JDWPConstants.StepDepth.OVER); 71 stepFunction(JDWPConstants.StepSize.LINE, JDWPConstants.StepDepth.INTO); 81 stepFunction(JDWPConstants.StepSize.MIN, JDWPConstants.StepDepth.OVER); 91 stepFunction(JDWPConstants.StepSize.MIN, JDWPConstants.StepDepth.INTO); 97 * verifies that requested SINGLE_STEP event with StepSize and StepDepth 101 void stepFunction(byte StepSize, byte StepDepth) { argument 138 setRequestCommand.setNextValueAsInt(StepSize);
|
H A D | SingleStepWithPendingExceptionTest.java | 132 JDWPConstants.StepSize.LINE, JDWPConstants.StepDepth.OUT);
|
H A D | SingleStepThroughReflectionTest.java | 26 import org.apache.harmony.jpda.tests.framework.jdwp.JDWPConstants.StepSize; 97 setRequestCommand.setNextValueAsInt(StepSize.LINE);
|
H A D | SingleStepWithLocationTest.java | 110 setRequestCommand.setNextValueAsInt(JDWPConstants.StepSize.LINE);
|
H A D | CombinedEventsTest.java | 137 setRequestCommand.setNextValueAsInt(JDWPConstants.StepSize.MIN); 272 setRequestCommand.setNextValueAsInt(JDWPConstants.StepSize.MIN); 386 setRequestCommand.setNextValueAsInt(JDWPConstants.StepSize.MIN); 513 setRequestCommand.setNextValueAsInt(JDWPConstants.StepSize.MIN);
|
H A D | CombinedEvents003Test.java | 138 setRequestCommand.setNextValueAsInt(JDWPConstants.StepSize.MIN);
|
H A D | EventWithExceptionTest.java | 422 JDWPConstants.StepSize.LINE, singleStepDepth);
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/MultiSession/ |
H A D | SingleStepTest.java | 62 stepFunction(JDWPConstants.StepSize.LINE, JDWPConstants.StepDepth.OVER); 65 void stepFunction(byte StepSize, byte StepDepth) { argument 104 setRequestCommand.setNextValueAsInt(StepSize);
|
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/ |
H A D | entropy_coding.c | 1595 double StepSize; local 1616 StepSize = WebRtcIsac_kQPitchLagStepsizeLo; 1625 StepSize = WebRtcIsac_kQPitchLagStepsizeMid; 1634 StepSize = WebRtcIsac_kQPitchLagStepsizeHi; 1657 C = (index[0] + lower_limit[0]) * StepSize; 1683 double StepSize; local 1705 StepSize = WebRtcIsac_kQPitchLagStepsizeLo; 1713 StepSize = WebRtcIsac_kQPitchLagStepsizeMid; 1721 StepSize = WebRtcIsac_kQPitchLagStepsizeHi; 1738 index[k] = WebRtcIsac_lrint(C / StepSize); [all...] |
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/ |
H A D | JDWPConstants.java | 669 * JDWP StepSize constants 671 public static class StepSize { class in class:JDWPConstants
|
/external/libmtp/src/ |
H A D | libmtp.c | 785 if (val % opd->FORM.Range.StepSize.u16 != 0) { 786 return val - (val % opd->FORM.Range.StepSize.u16); 830 if (val % opd->FORM.Range.StepSize.u32 != 0) { 831 return val - (val % opd->FORM.Range.StepSize.u32); 979 allowed_vals->i8step = opd.FORM.Range.StepSize.i8; 985 allowed_vals->u8step = opd.FORM.Range.StepSize.u8; 991 allowed_vals->i16step = opd.FORM.Range.StepSize.i16; 997 allowed_vals->u16step = opd.FORM.Range.StepSize.u16; 1003 allowed_vals->i32step = opd.FORM.Range.StepSize.i32; 1009 allowed_vals->u32step = opd.FORM.Range.StepSize [all...] |
H A D | ptp-pack.c | 753 ret = ptp_unpack_DPV (params, data, &offset, dpdlen, &dpd->FORM.Range.StepSize, dpd->DataType); 822 ret = ptp_unpack_DPV (params, data, &offset, opdlen, &opd->FORM.Range.StepSize, opd->DataType);
|
H A D | ptp.c | 2720 ptp_free_devicepropvalue (dpd->DataType, &dpd->FORM.Range.StepSize); 2743 ptp_free_devicepropvalue (opd->DataType, &opd->FORM.Range.StepSize);
|
H A D | ptp.h | 932 PTPPropertyValue StepSize; member in struct:_PTPPropDescRangeForm
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
H A D | SelectionDAGBuilder.cpp | 466 for (unsigned StepSize = NumParts; StepSize > 1; StepSize /= 2) { 467 for (unsigned i = 0; i < NumParts; i += StepSize) { 468 unsigned ThisBits = StepSize * PartBits / 2; 471 SDValue &Part1 = Parts[i+StepSize/2];
|
Completed in 263 milliseconds