/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/base/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 | 94 final float stepSize = a.getFloat(R.styleable.RatingBar_stepSize, -1); 101 if (stepSize >= 0) { 102 setStepSize(stepSize); 206 * @param stepSize The step size of this rating bar. For example, if 209 public void setStepSize(float stepSize) { 210 if (stepSize <= 0) { 214 final float newMax = mNumStars / stepSize;
|
/system/media/mca/filterpacks/imageproc/java/ |
BlackWhiteFilter.java | 59 "uniform float stepsize;\n" + 65 " vec3 temp = clamp((color.rgb + stepsize - black) * scale, 0.0, 1.0);\n" + 113 float stepsize = 1.0f / 255.0f; local 117 mProgram.setHostValue("stepsize", stepsize);
|
DocumentaryFilter.java | 51 "uniform float stepsize;\n" + 60 " vec3 temp = clamp(2.0 * (color.rgb + stepsize), 0.0, 1.0);\n" + 171 mProgram.setHostValue("stepsize", 1.0f / 255.0f);
|
LomoishFilter.java | 53 "uniform float stepsize;\n" + 104 " vec3 temp = clamp((color.rgb + stepsize - 0.15) * 1.53846, 0.0, 1.0);\n" + 162 mProgram.setHostValue("stepsize", 1.0f / 255.0f);
|
/cts/tests/res/layout/ |
ratingbar_layout.xml | 26 android:stepSize="0.2"
|
/system/media/wilhelm/src/itf/ |
IPlaybackRate.c | 166 SLpermille stepSize = thiz->mStepSize; 170 *pStepSize = stepSize;
|
/system/media/mca/filterpacks/numeric/java/ |
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/webrtc/src/modules/audio_processing/aecm/main/source/ |
aecm_core.h | 69 // Stepsize parameters 70 #define MU_MIN 10 // Min stepsize 2^-MU_MIN (far end energy dependent) 71 #define MU_MAX 1 // Max stepsize 2^-MU_MAX (far end energy dependent)
|
/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;
|
/system/media/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);
|
/cts/tests/tests/widget/src/android/widget/cts/ |
RatingBarTest.java | 239 notes = "Test methods which access StepSize", 245 notes = "Test methods which access StepSize",
|
/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/webrtc/src/modules/audio_processing/aec/main/source/ |
aec_core.h | 131 float mu; // stepsize
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/ |
extra-view-metadata.xml | 111 topAttrs="numStars,stepSize,style,isIndicator"
|
/frameworks/base/docs/html/resources/tutorials/views/ |
hello-formstuff.jd | 360 android:stepSize="1.0"/> 363 bar. The <code>android:stepSize</code> attribute defines the granularity for each
|
/external/jpeg/ |
jquant2.c | [all...] |