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

1 2 3

  /external/mesa3d/src/gallium/drivers/swr/rasterizer/core/
binner.h 120 bbox.xmax = vMaxX;
131 /// @param scisXmax - output vector of per-prmitive scissor rect Xmax data.
157 pScissorsInFixedPoint[pViewportIndex[7]].xmax,
158 pScissorsInFixedPoint[pViewportIndex[6]].xmax,
159 pScissorsInFixedPoint[pViewportIndex[5]].xmax,
160 pScissorsInFixedPoint[pViewportIndex[4]].xmax,
161 pScissorsInFixedPoint[pViewportIndex[3]].xmax,
162 pScissorsInFixedPoint[pViewportIndex[2]].xmax,
163 pScissorsInFixedPoint[pViewportIndex[1]].xmax,
164 pScissorsInFixedPoint[pViewportIndex[0]].xmax);
    [all...]
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 857 typename SIMD_T::Integer xmax = SIMD_T::add_epi32(bbox.xmax, SIMD_T::set1_epi32(128)); local
    [all...]
rasterizer.cpp 165 bboxA.xmin > scissorInFixedPoint.xmax ||
166 bboxA.xmax - 1 < macroBoxLeft ||
167 bboxA.xmax - 1 < scissorInFixedPoint.xmin ||
238 bboxA.xmin > scissorInFixedPoint.xmax ||
239 bboxA.xmax - 1 < macroBoxLeft ||
240 bboxA.xmax - 1 < scissorInFixedPoint.xmin ||
rasterizer_impl.h 615 scissor.xmax = std::min(triBBox.xmax, scissorBBox.xmax);
621 POS topRight{scissor.xmax, scissor.ymin};
622 POS bottomRight{scissor.xmax, scissor.ymax};
632 vEdgeFix16[5] = _mm256_set1_pd((rastEdges[5].a * (x - scissor.xmax)) + (rastEdges[5].b * (y - scissor.ymax)));
633 vEdgeFix16[6] = _mm256_set1_pd((rastEdges[6].a * (x - scissor.xmax)) + (rastEdges[6].b * (y - scissor.ymin)));
662 POS topRight{scissor.xmax, scissor.ymin};
663 POS bottomRight{scissor.xmax, scissor.ymax};
673 vEdgeFix16[5] = _mm256_set1_pd((rastEdges[5].a * (x - scissor.xmax)) + (rastEdges[5].b * (y - scissor.ymax)))
    [all...]
backend_clear.cpp 133 clearTile.xmax -= 1;
140 clearTile.xmax >>= (KNOB_TILE_X_DIM_SHIFT);
157 for (int32_t x = clearTile.xmin; x <= clearTile.xmax; ++x)
utils.h 43 simdscalari xmax; member in struct:simdBBox
52 simd16scalari xmax; member in struct:simd16BBox
62 typename SIMD_T::Integer xmax; member in struct:SIMDBBOX_T
  /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;
  /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/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 );
  /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;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
imageop.c 22 #define CHARP(cp, xmax, x, y) ((char *)(cp+y*xmax+x))
23 #define SHORTP(cp, xmax, x, y) ((short *)(cp+2*(y*xmax+x)))
24 #define LONGP(cp, xmax, x, y) ((Py_Int32 *)(cp+4*(y*xmax+x)))
  /external/python/cpython2/Modules/
imageop.c 22 #define CHARP(cp, xmax, x, y) ((char *)(cp+y*xmax+x))
23 #define SHORTP(cp, xmax, x, y) ((short *)(cp+2*(y*xmax+x)))
24 #define LONGP(cp, xmax, x, y) ((Py_Int32 *)(cp+4*(y*xmax+x)))
  /external/sfntly/cpp/src/sfntly/table/core/
font_header_table.h 76 virtual int32_t XMax();
77 virtual void SetXMax(int32_t xmax);
126 int32_t XMax();
  /external/tensorflow/tensorflow/core/kernels/
sample_distorted_bounding_box_op.cc 34 Rectangle(int xmin, int ymin, int xmax, int ymax) {
35 Set(xmin, ymin, xmax, ymax);
38 void Set(int xmin, int ymin, int xmax, int ymax) {
41 max_x_ = xmax;
  /external/webp/src/dsp/
ssim.c 71 const int xmax = (xo + VP8_SSIM_KERNEL > W - 1) ? W - 1 local
77 for (x = xmin; x <= xmax; ++x) {
  /external/tensorflow/tensorflow/lite/kernels/
detection_postprocess.cc 50 // the upper right corner (xmax, ymax).
60 // xmax = xcenter + half_w
65 float xmax; member in struct:tflite::ops::custom::detection_postprocess::BoxCornerEncoding
269 // Decode the boxes to get (ymin, xmin, ymax, xmax) based on the anchors
313 box.xmax = xcenter + half_w;
340 // ymax>=ymin, xmax>=xmin
342 if (box.ymin >= box.ymax || box.xmin >= box.xmax) {
353 const float area_i = (box_i.ymax - box_i.ymin) * (box_i.xmax - box_i.xmin);
354 const float area_j = (box_j.ymax - box_j.ymin) * (box_j.xmax - box_j.xmin);
359 const float intersection_xmax = std::min<float>(box_i.xmax, box_j.xmax)
    [all...]
  /cts/apps/CameraITS/tools/
dng_noise_model.py 210 xmax = max([max([x for (x, _) in p]) for p in samples_s])*1.25
212 color_plane_plots[s_int][pidx].set_xlim(xmin=0, xmax=xmax)

Completed in 1020 milliseconds

1 2 3