/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/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);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_bigmem.py | 549 stepsize = len(s) // 100 550 stepsize = stepsize - (stepsize % sublen) 551 for i in range(0, len(s) - stepsize, stepsize): [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_bigmem.py | 549 stepsize = len(s) // 100 550 stepsize = stepsize - (stepsize % sublen) 551 for i in range(0, len(s) - stepsize, stepsize): [all...] |