/external/valgrind/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);
|
/external/libvpx/libvpx/vp9/encoder/ |
vp9_subexp.h | 38 int stepsize);
|
vp9_subexp.c | 144 int stepsize) { 158 step = -stepsize; 176 step = stepsize;
|
vp9_bitstream.c | 538 int stepsize = cpi->sf.coeff_prob_appx_step; local 557 old_coef_probs[i][j][k][l], &newp, upd, stepsize); 595 old_coef_probs[i][j][k][l], &newp, upd, stepsize); 633 old_coef_probs[i][j][k][l], &newp, upd, stepsize); [all...] |
/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 | 53 "uniform float stepsize;\n" + 80 " vec3 temp = clamp((color.rgb + stepsize - black) * scale, 0.0, 1.0);\n" + 119 float stepsize = 1.0f / 255.0f; local 122 mProgram.setHostValue("stepsize", stepsize);
|
/external/opencv3/modules/features2d/src/kaze/ |
nldiffusion_functions.h | 37 void nld_step_scalar(cv::Mat& Ld, const cv::Mat& c, cv::Mat& Lstep, float stepsize);
|
nldiffusion_functions.cpp | 351 , stepsize(_stepsize) 383 dst[j] = 0.5f*stepsize*(xpos - xneg + ypos - yneg); 391 float stepsize; member in class:cv::Nld_Step_Scalar_Invoker 400 * @param stepsize The step size in time units 405 void nld_step_scalar(cv::Mat& Ld, const cv::Mat& c, cv::Mat& Lstep, float stepsize) { 407 cv::parallel_for_(cv::Range(1, Lstep.rows - 1), Nld_Step_Scalar_Invoker(Ld, c, Lstep, stepsize), (double)Ld.total()/(1 << 16)); 421 dst[j] = 0.5f*stepsize*(xpos - xneg + ypos); 434 dst[j] = 0.5f*stepsize*(xpos - xneg - yneg); 453 dst[0] = 0.5f*stepsize*(xpos + ypos - yneg); 458 dst[r0] = 0.5f*stepsize*(-xneg + ypos - yneg) [all...] |
/external/pdfium/third_party/libopenjpeg20/ |
dwt.c | 121 static void opj_dwt_encode_stepsize(OPJ_INT32 stepsize, OPJ_INT32 numbps, opj_stepsize_t *bandno_stepsize); 375 static void opj_dwt_encode_stepsize(OPJ_INT32 stepsize, OPJ_INT32 numbps, opj_stepsize_t *bandno_stepsize) { 377 p = opj_int_floorlog2(stepsize) - 13; 378 n = 11 - opj_int_floorlog2(stepsize); 379 bandno_stepsize->mant = (n < 0 ? stepsize >> -n : stepsize << n) & 0x7ff; 531 OPJ_FLOAT64 stepsize; local 539 stepsize = 1.0; 542 stepsize = (1 << (gain)) / norm; 544 opj_dwt_encode_stepsize((OPJ_INT32) floor(stepsize * 8192.0), (OPJ_INT32)(prec + gain), &tccp->stepsizes[bandno]) [all...] |
tcd.h | 142 OPJ_FLOAT32 stepsize; member in struct:opj_tcd_band
|
t1.c | 266 OPJ_FLOAT64 stepsize, 277 OPJ_FLOAT64 stepsize, [all...] |
tcd.c | 75 " x0=%d, y0=%d, x1=%d, y1=%d, stepsize=%f, numbps=%d\n", 76 band->x0, band->y0, band->x1, band->y1, band->stepsize, band->numbps); [all...] |
/external/opencv3/3rdparty/libjasper/ |
jpc_enc.c | 151 static int jpc_calcssexp(jpc_fix_t stepsize); 152 static int jpc_calcssmant(jpc_fix_t stepsize); 153 void jpc_quantize(jas_matrix_t *data, jpc_fix_t stepsize); 867 static int jpc_calcssmant(jpc_fix_t stepsize) 873 n = jpc_firstone(stepsize); 876 m = (stepsize >> (n - 11)) & 0x7ff; 878 m = (stepsize & ((1 << n) - 1)) << (11 - n); 883 static int jpc_calcssexp(jpc_fix_t stepsize) 885 return jpc_firstone(stepsize) - JPC_FIX_FRACBITS; [all...] |
jpc_dec.h | 365 int stepsize; member in struct:__anon21728
|
jpc_enc.h | 421 int stepsize; member in struct:jpc_enc_band_s
|
jpc_dec.c | 180 static jpc_fix_t jpc_calcabsstepsize(int stepsize, int numbits); 778 band->stepsize = ccp->stepsizes[bndno]; 781 band->absstepsize = jpc_calcabsstepsize(band->stepsize, 784 JPC_QCX_GETEXPN(band->stepsize) - 1; [all...] |
/prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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...] |
/device/huawei/angler/camera/QCamera2/stack/common/ |
cam_types.h | 891 uint8_t stepsize; member in struct:__anon3793 [all...] |
/device/lge/bullhead/camera/QCamera2/stack/common/ |
cam_types.h | 891 uint8_t stepsize; member in struct:__anon4704 [all...] |
/device/moto/shamu/camera/QCamera2/stack/common/ |
cam_types.h | 732 uint8_t stepsize; member in struct:__anon5884 [all...] |
/hardware/qcom/camera/QCamera2/stack/common/ |
cam_types.h | 991 uint8_t stepsize; member in struct:__anon32729 [all...] |