/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/ |
D | SingleStepTest.java | 60 stepFunction(JDWPConstants.StepSize.LINE, JDWPConstants.StepDepth.OVER); in testSingleStep1() 71 stepFunction(JDWPConstants.StepSize.LINE, JDWPConstants.StepDepth.INTO); in testSingleStep2() 81 stepFunction(JDWPConstants.StepSize.MIN, JDWPConstants.StepDepth.OVER); in testSingleStep3() 91 stepFunction(JDWPConstants.StepSize.MIN, JDWPConstants.StepDepth.INTO); in testSingleStep4() 101 void stepFunction(byte StepSize, byte StepDepth) { in stepFunction() argument 138 setRequestCommand.setNextValueAsInt(StepSize); in stepFunction()
|
D | SingleStepThroughReflectionTest.java | 26 import org.apache.harmony.jpda.tests.framework.jdwp.JDWPConstants.StepSize; 97 setRequestCommand.setNextValueAsInt(StepSize.LINE); in testSingleStepIntoThroughReflection()
|
D | SingleStepWithPendingExceptionTest.java | 132 JDWPConstants.StepSize.LINE, JDWPConstants.StepDepth.OUT); in setSingleStepOut()
|
D | CombinedEventsTest.java | 137 setRequestCommand.setNextValueAsInt(JDWPConstants.StepSize.MIN); in testCombinedEvents_01() 272 setRequestCommand.setNextValueAsInt(JDWPConstants.StepSize.MIN); in testCombinedEvents_02() 386 setRequestCommand.setNextValueAsInt(JDWPConstants.StepSize.MIN); in testCombinedEvents_03() 513 setRequestCommand.setNextValueAsInt(JDWPConstants.StepSize.MIN); in testCombinedEvents_04()
|
D | SingleStepWithLocationTest.java | 110 setRequestCommand.setNextValueAsInt(JDWPConstants.StepSize.LINE); in testSingleStepToLocation()
|
D | CombinedEvents003Test.java | 138 setRequestCommand.setNextValueAsInt(JDWPConstants.StepSize.MIN); in testCombinedEvents003_01()
|
D | EventWithExceptionTest.java | 422 JDWPConstants.StepSize.LINE, singleStepDepth); in setSingleStep()
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/MultiSession/ |
D | SingleStepTest.java | 62 stepFunction(JDWPConstants.StepSize.LINE, JDWPConstants.StepDepth.OVER); in testSingleStep001() 65 void stepFunction(byte StepSize, byte StepDepth) { in stepFunction() argument 104 setRequestCommand.setNextValueAsInt(StepSize); in stepFunction()
|
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/ |
D | entropy_coding.c | 1595 double StepSize; in WebRtcIsac_DecodePitchLag() local 1616 StepSize = WebRtcIsac_kQPitchLagStepsizeLo; in WebRtcIsac_DecodePitchLag() 1625 StepSize = WebRtcIsac_kQPitchLagStepsizeMid; in WebRtcIsac_DecodePitchLag() 1634 StepSize = WebRtcIsac_kQPitchLagStepsizeHi; in WebRtcIsac_DecodePitchLag() 1657 C = (index[0] + lower_limit[0]) * StepSize; in WebRtcIsac_DecodePitchLag() 1683 double StepSize; in WebRtcIsac_EncodePitchLag() local 1705 StepSize = WebRtcIsac_kQPitchLagStepsizeLo; in WebRtcIsac_EncodePitchLag() 1713 StepSize = WebRtcIsac_kQPitchLagStepsizeMid; in WebRtcIsac_EncodePitchLag() 1721 StepSize = WebRtcIsac_kQPitchLagStepsizeHi; in WebRtcIsac_EncodePitchLag() 1738 index[k] = WebRtcIsac_lrint(C / StepSize); in WebRtcIsac_EncodePitchLag() [all …]
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/ |
D | JDWPConstants.java | 671 public static class StepSize { class in JDWPConstants
|
/external/libmtp/src/ |
D | libmtp.c | 785 if (val % opd->FORM.Range.StepSize.u16 != 0) { in adjust_u16() 786 return val - (val % opd->FORM.Range.StepSize.u16); in adjust_u16() 830 if (val % opd->FORM.Range.StepSize.u32 != 0) { in adjust_u32() 831 return val - (val % opd->FORM.Range.StepSize.u32); in adjust_u32() 979 allowed_vals->i8step = opd.FORM.Range.StepSize.i8; in LIBMTP_Get_Allowed_Property_Values() 985 allowed_vals->u8step = opd.FORM.Range.StepSize.u8; in LIBMTP_Get_Allowed_Property_Values() 991 allowed_vals->i16step = opd.FORM.Range.StepSize.i16; in LIBMTP_Get_Allowed_Property_Values() 997 allowed_vals->u16step = opd.FORM.Range.StepSize.u16; in LIBMTP_Get_Allowed_Property_Values() 1003 allowed_vals->i32step = opd.FORM.Range.StepSize.i32; in LIBMTP_Get_Allowed_Property_Values() 1009 allowed_vals->u32step = opd.FORM.Range.StepSize.u32; in LIBMTP_Get_Allowed_Property_Values() [all …]
|
D | ptp-pack.c | 753 ret = ptp_unpack_DPV (params, data, &offset, dpdlen, &dpd->FORM.Range.StepSize, dpd->DataType); in ptp_unpack_DPD() 822 ret = ptp_unpack_DPV (params, data, &offset, opdlen, &opd->FORM.Range.StepSize, opd->DataType); in ptp_unpack_OPD()
|
D | ptp.h | 932 PTPPropertyValue StepSize; member
|
D | ptp.c | 2720 ptp_free_devicepropvalue (dpd->DataType, &dpd->FORM.Range.StepSize); in ptp_free_devicepropdesc() 2743 ptp_free_devicepropvalue (opd->DataType, &opd->FORM.Range.StepSize); in ptp_free_objectpropdesc()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAGBuilder.cpp | 466 for (unsigned StepSize = NumParts; StepSize > 1; StepSize /= 2) { in getCopyToParts() local 467 for (unsigned i = 0; i < NumParts; i += StepSize) { in getCopyToParts() 468 unsigned ThisBits = StepSize * PartBits / 2; in getCopyToParts() 471 SDValue &Part1 = Parts[i+StepSize/2]; in getCopyToParts()
|