/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/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)
|
/sdk/lint/libs/lint_checks/tests/src/com/android/tools/lint/checks/data/res/layout/ |
buttonbar4.xml | 13 android:stepSize="1" />
|
/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;
|
/gdk/samples/quake/jni/ |
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); 308 SLpermille minRate, maxRate, stepSize; 310 res = (*rateItf)->GetRateRange(rateItf, index, &minRate, &maxRate, &stepSize, &capabilities);
|
/dalvik/vm/jdwp/ |
JdwpConstants.cpp | 211 * Return a string for the StepSize.
|
JdwpConstants.h | 160 * StepSize constants.
|
/external/quake/quake/src/QW/client/ |
pmove.c | 56 #define STEPSIZE 18 275 dest[2] += STEPSIZE; 287 dest[2] -= STEPSIZE; 484 start[2] += STEPSIZE + 1;
|
/external/aac/libSBRenc/src/ |
ton_corr.cpp | 134 INT stepSize = hTonCorr->stepSize; 301 k += stepSize; 731 hTonCorr->stepSize = hTonCorr->lpcLength[0] + LPC_ORDER; /* stepSize[0] implicitly 0. */ [all...] |