/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowRatingBar.java | 24 final float stepSize = attributeSet.getAttributeFloatValue("android", "stepSize", -1); 30 if (stepSize >= 0) { 31 setStepSize(stepSize); 77 public void setStepSize(float stepSize) { 78 if (stepSize <= 0) { 82 final float newMax = mNumStars / stepSize;
|
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/heightmap/ |
MidpointDisplacementHeightMap.java | 132 int stepSize = size - 1;
133 while (stepSize > 1) {
136 nextCoords = doSquareStep(tempBuffer, nextCoords, stepSize, offsetRange, random);
140 nextCoords = doDiamondStep(tempBuffer, nextCoords, stepSize, offsetRange, random);
142 stepSize /= 2;
159 * Will fill the value at (coords[0]+stepSize/2, coords[1]+stepSize/2) with
161 * and width of stepSize.
164 * @param stepSize the size of the square
169 protected int[] doSquareStep(float[][] tempBuffer, int[] coords, int stepSize, float offsetRange, Random random) { [all...] |
/external/valgrind/main/memcheck/tests/ |
pointer-trace.c | 33 int ptrbits, stepbits, stepsize, nptrs; local 38 stepsize = (1 << stepbits); 44 stepsize = (1 << stepbits); 54 map = mmap(0, stepsize * 2, PROT_NONE, MAP_PRIVATE|MAP_NORESERVE|MAP_ANONYMOUS, -1, 0); 59 map = mmap(0, stepsize * 2, PROT_WRITE, MAP_PRIVATE|MAP_NORESERVE|MAP_ANONYMOUS, -1, 0); 66 map = mmap(0, stepsize * 2, PROT_WRITE|PROT_READ, MAP_PRIVATE, fd, 0); 69 //printf("trap 3 = %p-%p\n", map, map+stepsize*2);
|
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/ |
fastquant.cpp | 551 Int stepsize, QPx2 = QP << 1; local 587 stepsize = qmat[i]; 588 // if(coeff>0) coeff = (16*coeff + (stepsize/2)) / stepsize; 589 // else coeff = (16*coeff - (stepsize/2)) / stepsize; 591 if (coeff >= 0) coeff += (stepsize >> 1) ; 592 else coeff -= (stepsize >> 1) ; 593 q_value = scaleArrayV2[stepsize]; 597 coeff >>= (15 + (stepsize >> 4)) 680 Int stepsize; local 855 Int q_value, coeff, stepsize; local [all...] |
fastquant_inline.h | 124 __inline int32 coeff_dequant_mpeg(int32 q_value, int32 stepsize, int32 QP, int32 tmp) 131 stepsize *= QP; 134 q_value = (coeff + 1) * stepsize; 140 q_value = (coeff - 1) * stepsize; 243 __inline int32 coeff_dequant_mpeg(int32 q_value, int32 stepsize, int32 QP, int32 tmp) 250 smulbb stepsize, stepsize, QP local 253 smulbb q_value, coeff, stepsize 340 __inline int32 coeff_dequant_mpeg(int32 q_value, int32 stepsize, int32 QP, int32 tmp) 347 mul stepsize, stepsize, Q local [all...] |
/frameworks/base/core/java/android/widget/ |
RatingBar.java | 93 final float stepSize = a.getFloat(R.styleable.RatingBar_stepSize, -1); 100 if (stepSize >= 0) { 101 setStepSize(stepSize); 209 * @param stepSize The step size of this rating bar. For example, if 212 public void setStepSize(float stepSize) { 213 if (stepSize <= 0) { 217 final float newMax = mNumStars / stepSize;
|
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/ |
BlackWhiteFilter.java | 56 "uniform float stepsize;\n" + 83 " vec3 temp = clamp((color.rgb + stepsize - black) * scale, 0.0, 1.0);\n" + 122 float stepsize = 1.0f / 255.0f; local 125 mProgram.setHostValue("stepsize", stepsize);
|
DocumentaryFilter.java | 50 "uniform float stepsize;\n" + 70 " vec3 temp = clamp(2.0 * (color.rgb + stepsize), 0.0, 1.0);\n" + 159 mProgram.setHostValue("stepsize", 1.0f / 255.0f);
|
LomoishFilter.java | 52 "uniform float stepsize;\n" + 114 " vec3 temp = clamp((color.rgb + stepsize - 0.15) * 1.53846, 0.0, 1.0);\n" + 169 mProgram.setHostValue("stepsize", 1.0f / 255.0f);
|
/cts/tests/res/layout/ |
ratingbar_layout.xml | 26 android:stepSize="0.2"
|
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/time/ |
RadialPickerLayout.java | 391 int stepSize = HOUR_VALUE_TO_DEGREES_STEP_SIZE; 392 int floor = (degrees / stepSize) * stepSize; 393 int ceiling = floor + stepSize; 398 floor -= stepSize; 431 int stepSize; 442 stepSize = HOUR_VALUE_TO_DEGREES_STEP_SIZE; 445 stepSize = MINUTE_VALUE_TO_DEGREES_STEP_SIZE; 465 int value = degrees / stepSize; [all...] |
/frameworks/wilhelm/src/itf/ |
IPlaybackRate.c | 166 SLpermille stepSize = thiz->mStepSize; 170 *pStepSize = stepSize;
|
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/numeric/ |
SinWaveFilter.java | 34 @GenerateFieldPort(name = "stepSize", hasDefault = true)
|
/external/quake/quake/src/QW/server/ |
sv_move.c | 24 #define STEPSIZE 18 73 stop[2] = start[2] - 2*STEPSIZE; 91 if (trace.fraction == 1.0 || mid - trace.endpos[2] > STEPSIZE) 159 neworg[2] += STEPSIZE; 161 end[2] -= STEPSIZE*2; 170 neworg[2] -= STEPSIZE;
|
/external/quake/quake/src/WinQuake/ |
sv_move.cpp | 24 #define STEPSIZE 18 73 stop[2] = start[2] - 2*STEPSIZE; 91 if (trace.fraction == 1.0 || mid - trace.endpos[2] > STEPSIZE) 159 neworg[2] += STEPSIZE; 161 end[2] -= STEPSIZE*2; 170 neworg[2] -= STEPSIZE;
|
/external/sonivox/arm-fm-22k/lib_src/ |
eas_imaadpcm.c | 228 EAS_INT stepSize; 230 /* get stepsize from table */ 231 stepSize = imaStepSizeTable[pState->step]; 236 delta += stepSize; 240 delta += stepSize >> 1; 244 delta += stepSize >> 2; 247 delta += stepSize >> 3;
|
/external/sonivox/arm-hybrid-22k/lib_src/ |
eas_imaadpcm.c | 228 EAS_INT stepSize; 230 /* get stepsize from table */ 231 stepSize = imaStepSizeTable[pState->step]; 236 delta += stepSize; 240 delta += stepSize >> 1; 244 delta += stepSize >> 2; 247 delta += stepSize >> 3;
|
/external/sonivox/arm-wt-22k/lib_src/ |
eas_imaadpcm.c | 228 EAS_INT stepSize; 230 /* get stepsize from table */ 231 stepSize = imaStepSizeTable[pState->step]; 236 delta += stepSize; 240 delta += stepSize >> 1; 244 delta += stepSize >> 2; 247 delta += stepSize >> 3;
|
/external/webrtc/src/modules/audio_processing/aecm/ |
aecm_core.h | 63 // Stepsize parameters 64 #define MU_MIN 10 // Min stepsize 2^-MU_MIN (far end energy dependent) 65 #define MU_MAX 1 // Max stepsize 2^-MU_MAX (far end energy dependent)
|
/external/webrtc/src/modules/audio_processing/aec/ |
aec_core.h | 121 float mu; // stepsize
|
/frameworks/wilhelm/tests/mimeUri/ |
slesTestSlowDownUri.cpp | 71 SLpermille minRate, maxRate, stepSize, rate = 1000; 76 res = (*pRateItf)->GetRateRange(pRateItf, 0, &minRate, &maxRate, &stepSize, &capa); 309 SLpermille minRate, maxRate, stepSize; 311 res = (*rateItf)->GetRateRange(rateItf, index, &minRate, &maxRate, &stepSize,
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/builder/ |
DefaultMp4Builder.java | 71 public int STEPSIZE = 64; 472 for (int i = 0; i < Math.ceil((double) nuSamples.size() / STEPSIZE); i++) { 474 i * STEPSIZE, // start 475 (i + 1) * STEPSIZE < nuSamples.size() ? (i + 1) * STEPSIZE : nuSamples.size()); // end
|
FragmentedMp4Builder.java | 207 int STEPSIZE = 1024; 211 for (int i = 0; i < Math.ceil((double) samples.size() / STEPSIZE); i++) { 213 i * STEPSIZE, // start 214 (i + 1) * STEPSIZE < samples.size() ? (i + 1) * STEPSIZE : samples.size()); // end
|
/external/webrtc/src/modules/audio_coding/codecs/isac/main/source/ |
entropy_coding.c | [all...] |
/dalvik/vm/jdwp/ |
JdwpConstants.cpp | 211 * Return a string for the StepSize.
|