HomeSort by relevance Sort by last modified time
    Searched refs:xmax (Results 1 - 25 of 73) sorted by null

1 2 3

  /external/ltp/tools/pounder21/src/randacoords/
coords.c 52 unsigned long xmax, ymax; local
56 fprintf(stderr, "Usage: %s xmax ymax\n", argv[0]);
60 xmax = atoi(argv[1]);
67 x = 1 + (unsigned long)((float)xmax * (rand() / (RAND_MAX + 1.0f)));
  /external/pdfium/third_party/agg23/
agg_renderer_scanline.h 48 int xmax = m_ren->xmax(); local
69 if(x + len > xmax) {
70 len = xmax - x + 1;
agg_renderer_base.h 76 int xmax() const function in class:agg::renderer_base
118 if(x1 > xmax()) {
127 if(x2 > xmax()) {
128 x2 = xmax();
150 if(x + len > xmax()) {
151 len = xmax() - x + 1;
  /system/extras/tests/workloads/
capture.sh 43 xmax=0
46 xmax=3060
66 (0035) x=$(convert $value $xmax $xscale);;
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/core/
api.h 49 int32_t xmax; ///< exclusive member in struct:SWR_RECT
57 this->xmax == rhs.xmax);
69 this->xmax = std::min(this->xmax, other.xmax);
72 if (xmax - xmin < 0 ||
76 ymin = ymax = xmin = xmax = 0;
90 this->xmax = std::max(this->xmax, other.xmax)
    [all...]
binner.cpp 103 bbox.xmax = vMaxX;
136 bbox.xmax = _simd_add_epi32(vMaxX, _simd_set1_epi32(CT::BoundingBoxOffsetT::value));
302 /// @param scisXmax - output vector of per-prmitive scissor rect Xmax data.
340 scisXmax = _simd_set_epi32(pScissorsInFixedPoint[pViewportIndex[0]].xmax,
341 pScissorsInFixedPoint[pViewportIndex[1]].xmax,
342 pScissorsInFixedPoint[pViewportIndex[2]].xmax,
343 pScissorsInFixedPoint[pViewportIndex[3]].xmax,
344 pScissorsInFixedPoint[pViewportIndex[4]].xmax,
345 pScissorsInFixedPoint[pViewportIndex[5]].xmax,
346 pScissorsInFixedPoint[pViewportIndex[6]].xmax,
672 simdscalari xmax = _simd_add_epi32(bbox.xmax, _simd_set1_epi32(128)); local
    [all...]
rasterizer.cpp 613 scissor.xmax = std::min(triBBox.xmax, scissorBBox.xmax);
619 POS topRight{scissor.xmax, scissor.ymin};
620 POS bottomRight{scissor.xmax, scissor.ymax};
630 vEdgeFix16[5] = _mm256_set1_pd((rastEdges[5].a * (x - scissor.xmax)) + (rastEdges[5].b * (y - scissor.ymax)));
631 vEdgeFix16[6] = _mm256_set1_pd((rastEdges[6].a * (x - scissor.xmax)) + (rastEdges[6].b * (y - scissor.ymin)));
660 POS topRight{scissor.xmax, scissor.ymin};
661 POS bottomRight{scissor.xmax, scissor.ymax};
671 vEdgeFix16[5] = _mm256_set1_pd((rastEdges[5].a * (x - scissor.xmax)) + (rastEdges[5].b * (y - scissor.ymax)))
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
gen6_scissor_state.c 78 scissor[i].xmax = 0;
84 scissor[i].xmax = bbox[1] - 1;
91 scissor[i].xmax = bbox[1] - 1;
gen6_viewport_state.c 40 float *xmin, float *xmax,
105 *xmax = ndc_gb_xmax;
111 *xmax = 0.0f;
167 &clv[i].xmin, &clv[i].xmax,
brw_structs.h 438 unsigned xmax:16; member in struct:gen6_scissor_rect
604 float xmax; member in struct:brw_clipper_viewport
630 int16_t xmax; member in struct:brw_sf_viewport::__anon30502
660 float xmax; member in struct:gen7_sf_clip_viewport::__anon30504
gen7_viewport_state.c 80 &vp[i].guardband.xmax,
brw_sf_state.c 101 sfv->scissor.xmax = 0;
107 sfv->scissor.xmax = ctx->DrawBuffer->_Xmax - 1;
114 sfv->scissor.xmax = ctx->DrawBuffer->_Xmax - 1;
  /external/libdrm/tests/planetest/
bo.c 26 uint32_t i, j, xmax = x + width, ymax = y + height; local
28 if (xmax > bo->width)
29 xmax = bo->width;
36 for (j = x; j < xmax; j++)
43 for (j = x; j < xmax / 2; j++) {
61 uint32_t i, j, xmax = x + width, ymax = y + height; local
63 if (xmax > bo->width)
64 xmax = bo->width;
71 for (j = x; j < xmax; j++) {
  /external/lisa/libs/utils/analysis/
idle_analysis.py 199 xmax = 0.0
205 if xmax < max_time:
206 xmax = max_time
208 self._plotIdleStateResidency(residencies, 'cpu', xmax, pct=pct)
236 xmax = 0.0
242 if xmax < max_time:
243 xmax = max_time
245 self._plotIdleStateResidency(residencies, 'cluster', xmax, pct=pct)
251 def _plotIdleStateResidency(self, residencies, entity_name, xmax,
266 :param xmax: upper bound of x-axe
    [all...]
frequency_analysis.py 500 xmax = 0.0
506 if xmax < max_time:
507 xmax = max_time
509 self._plotFrequencyResidency(residencies, 'cpu', xmax, pct, active)
558 xmax = 0.0
566 if xmax < max_time:
567 xmax = max_time
569 self._plotFrequencyResidency(residencies, 'cluster', xmax, pct, active)
647 is_first, is_last, xmax, title=''):
666 :param xmax: x-axes higher boun
    [all...]
  /external/pdfium/core/fpdfapi/page/
cpdf_function.h 42 float xmax,
cpdf_function.cpp 130 float xmax,
133 float divisor = xmax - xmin;
  /external/mesa3d/src/mesa/state_tracker/
st_atom_scissor.c 63 /* need to be careful here with xmax or ymax < 0 */
64 GLint xmax = MAX2(0, ctx->Scissor.ScissorArray[i].X + ctx->Scissor.ScissorArray[i].Width); local
72 if (xmax < (GLint) scissor[i].maxx)
73 scissor[i].maxx = xmax;
  /external/libgsm/src/
rpe.c 267 word xmax, xmaxc, temp, temp1, temp2; local
271 /* Find the maximum absolute value xmax of xM[0..12].
274 xmax = 0;
278 if (temp > xmax) xmax = temp;
281 /* Qantizing and coding of xmax to get xmaxc.
285 temp = SASR( xmax, 9 );
301 xmaxc = gsm_add( SASR(xmax, temp), exp << 3 );
  /frameworks/rs/tests/java_api/HealingBrush/src/rs/example/android/com/healingbrush/
FindRegion.java 194 int xmax = (int) (mRoiBounds.right + mRoiBounds.width() * 2); local
196 xmax = Math.min(imgWidth, xmax);
198 xmax = Math.max(0, xmax);
200 return new Rect(xmin, ymin, xmax, ymax);
  /external/mesa3d/src/mesa/swrast/
s_points.c 194 GLint xmin, xmax, ymin, ymax, iy; local
204 xmax = (GLint) (x + iRadius);
212 xmax = xmin + iSize - 1;
228 span.end = xmax - xmin + 1;
312 const GLint xmax = (GLint) (x + radius); local
322 span.end = xmax - xmin + 1;
325 for (ix = xmin; ix <= xmax; ix++) {
410 GLint xmin, xmax, ymin, ymax, ix, iy; local
419 xmax = (GLint) (x + iRadius);
427 xmax = xmin + iSize - 1
    [all...]
  /external/e2fsprogs/intl/
xsize.h 88 xmax (size_t size1, size_t size2) function
  /developers/samples/android/sensors/AccelerometerPlay/app/src/main/java/com/example/android/accelerometerplay/
AccelerometerPlayActivity.java 187 final float xmax = mHorizontalBound; local
191 if (x > xmax) {
192 mPosX = xmax;
194 } else if (x < -xmax) {
195 mPosX = -xmax;
  /development/samples/AccelerometerPlay/src/com/example/android/accelerometerplay/
AccelerometerPlayActivity.java 205 final float xmax = mHorizontalBound; local
209 if (x > xmax) {
210 mPosX = xmax;
211 } else if (x < -xmax) {
212 mPosX = -xmax;
  /external/opencv/cv/src/
cvshapedescr.cpp 1141 int xmin = 0, ymin = 0, xmax = -1, ymax = -1, i, j, k; local
    [all...]

Completed in 457 milliseconds

1 2 3