HomeSort by: relevance | last modified time | path
    Searched defs:Max (Results 1 - 19 of 19) sorted by relevancy

  /xsrc/external/mit/libXmu/dist/include/X11/Xmu/
Misc.h 58 #define Max(x, y) (((x) > (y)) ? (x) : (y))
  /xsrc/external/mit/bdftopcf/dist/
fontink.c 153 #define Max(a,b) ((a)>(b)?(a):(b))
177 y_min = Max(-pSrc->metrics.ascent, -pDst->metrics.ascent);
179 x_min = Max(pSrc->metrics.leftSideBearing, pDst->metrics.leftSideBearing);
  /xsrc/external/mit/libXfont/dist/src/bitmap/
fontink.c 158 #define Max(a,b) ((a)>(b)?(a):(b))
191 y_min = Max(-pSrc->metrics.ascent, -pDst->metrics.ascent);
193 x_min = Max(pSrc->metrics.leftSideBearing, pDst->metrics.leftSideBearing);
  /xsrc/external/mit/libXfont2/dist/src/bitmap/
fontink.c 159 #define Max(a,b) ((a)>(b)?(a):(b))
192 y_min = Max(-pSrc->metrics.ascent, -pDst->metrics.ascent);
194 x_min = Max(pSrc->metrics.leftSideBearing, pDst->metrics.leftSideBearing);
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/r300/compiler/
radeon_compiler_util.c 508 unsigned int Max;
521 if (file == d->File && (!d->HasFileType || index > d->Max)) {
522 d->Max = index;
537 data.Max = 0;
549 return data.Max;
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/r300/compiler/
radeon_compiler_util.c 508 unsigned int Max;
521 if (file == d->File && (!d->HasFileType || index > d->Max)) {
522 d->Max = index;
537 data.Max = 0;
549 return data.Max;
  /xsrc/external/mit/xorg-server/dist/miext/rootless/
rootlessGC.c 1183 int top, bot, Min, Max;
1186 top = max(FONTMAXBOUNDS(pGC->font, ascent), FONTASCENT(pGC->font));
1187 bot = max(FONTMAXBOUNDS(pGC->font, descent), FONTDESCENT(pGC->font));
1192 Max = count * FONTMAXBOUNDS(pGC->font, characterWidth);
1193 if (Max < 0)
1194 Max = 0;
1198 box.x2 = dst->x + x + Max + FONTMAXBOUNDS(pGC->font, rightSideBearing);
1271 int top, bot, Min, Max;
1274 top = max(FONTMAXBOUNDS(pGC->font, ascent), FONTASCENT(pGC->font));
1275 bot = max(FONTMAXBOUNDS(pGC->font, descent), FONTDESCENT(pGC->font))
    [all...]
  /xsrc/external/mit/xorg-server.old/dist/miext/rootless/
rootlessGC.c 1168 int top, bot, Min, Max;
1171 top = max(FONTMAXBOUNDS(pGC->font, ascent), FONTASCENT(pGC->font));
1172 bot = max(FONTMAXBOUNDS(pGC->font, descent), FONTDESCENT(pGC->font));
1176 Max = count * FONTMAXBOUNDS(pGC->font, characterWidth);
1177 if (Max < 0) Max = 0;
1182 box.x2 = dst->x + x + Max +
1255 int top, bot, Min, Max;
1258 top = max(FONTMAXBOUNDS(pGC->font, ascent), FONTASCENT(pGC->font));
1259 bot = max(FONTMAXBOUNDS(pGC->font, descent), FONTDESCENT(pGC->font))
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/amd/addrlib/src/core/
addrcommon.h 417 * Max
420 * Get the max value between two unsigned values
423 static inline UINT_32 Max(
432 * Max
435 * Get the max value between two signed values
438 static inline INT_32 Max(
891 * Get max valid index for a specific channel
905 index = Max(index, static_cast<UINT_32>(pChanSet[i].index));
968 return Max(a >> b, 1u);
  /xsrc/external/mit/MesaLib.old/dist/src/amd/addrlib/src/core/
addrcommon.h 396 * Max
399 * Get the max value between two unsigned values
402 static inline UINT_32 Max(
411 * Max
414 * Get the max value between two signed values
417 static inline INT_32 Max(
869 * Get max valid index for a specific channel
883 index = Max(index, static_cast<UINT_32>(pChanSet[i].index));
  /xsrc/external/mit/MesaLib.old/dist/src/amd/addrlib/src/core/core/
addrcommon.h 396 * Max
399 * Get the max value between two unsigned values
402 static inline UINT_32 Max(
411 * Max
414 * Get the max value between two signed values
417 static inline INT_32 Max(
869 * Get max valid index for a specific channel
883 index = Max(index, static_cast<UINT_32>(pChanSet[i].index));
  /xsrc/external/mit/MesaLib/dist/src/gtest/include/gtest/internal/
gtest-internal.h 305 static RawType Max();
387 // We cannot use std::numeric_limits<T>::max() as it clashes with the max()
390 inline float FloatingPoint<float>::Max() { return FLT_MAX; }
392 inline double FloatingPoint<double>::Max() { return DBL_MAX; }
  /xsrc/external/mit/MesaLib.old/dist/src/gtest/include/gtest/internal/
gtest-internal.h 329 static RawType Max();
411 // We cannot use std::numeric_limits<T>::max() as it clashes with the max()
414 inline float FloatingPoint<float>::Max() { return FLT_MAX; }
416 inline double FloatingPoint<double>::Max() { return DBL_MAX; }
  /xsrc/external/mit/xorg-server.old/dist/hw/xfree86/shadowfb/
shadow.c 1307 ascent = max(pFont->info.fontAscent, pFont->info.maxbounds.ascent);
1308 descent = max(pFont->info.fontDescent, pFont->info.maxbounds.descent);
1315 max(pDrawable->x + x - left,
1318 max(pDrawable->y + y - ascent,
1330 max(pDrawable->x + x + BB->x1,
1333 max(pDrawable->y + y + BB->y1,
1430 int top, bot, Min, Max;
1432 top = max(FONTMAXBOUNDS(pGC->font, ascent), FONTASCENT(pGC->font));
1433 bot = max(FONTMAXBOUNDS(pGC->font, descent), FONTDESCENT(pGC->font));
1437 Max = count * FONTMAXBOUNDS(pGC->font, characterWidth);
    [all...]
  /xsrc/external/mit/xf86-video-chips/dist/src/
ct_driver.h 81 unsigned int Max; /* Memory Clock Related */
  /xsrc/external/mit/MesaLib/dist/src/imgui/
imgui_internal.h 483 ImVec2 Max; // Lower-right
485 ImRect() : Min(FLT_MAX,FLT_MAX), Max(-FLT_MAX,-FLT_MAX) {}
486 ImRect(const ImVec2& min, const ImVec2& max) : Min(min), Max(max) {}
487 ImRect(const ImVec4& v) : Min(v.x, v.y), Max(v.z, v.w) {}
488 ImRect(float x1, float y1, float x2, float y2) : Min(x1, y1), Max(x2, y2) {}
490 ImVec2 GetCenter() const { return ImVec2((Min.x + Max.x) * 0.5f, (Min.y + Max.y) * 0.5f); }
491 ImVec2 GetSize() const { return ImVec2(Max.x - Min.x, Max.y - Min.y);
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/imgui/
imgui_internal.h 483 ImVec2 Max; // Lower-right
485 ImRect() : Min(FLT_MAX,FLT_MAX), Max(-FLT_MAX,-FLT_MAX) {}
486 ImRect(const ImVec2& min, const ImVec2& max) : Min(min), Max(max) {}
487 ImRect(const ImVec4& v) : Min(v.x, v.y), Max(v.z, v.w) {}
488 ImRect(float x1, float y1, float x2, float y2) : Min(x1, y1), Max(x2, y2) {}
490 ImVec2 GetCenter() const { return ImVec2((Min.x + Max.x) * 0.5f, (Min.y + Max.y) * 0.5f); }
491 ImVec2 GetSize() const { return ImVec2(Max.x - Min.x, Max.y - Min.y);
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/mesa/main/
mtypes.h 331 /** 4 colormask bits per draw buffer, max 8 draw buffers. 4*8 = 32 bits */
570 GLfloat _CosCutoff; /**< = MAX(0, cos(SpotCutoff)) */
912 GLfloat MaxLod; /**< max lambda, OpenGL 1.2 */
934 GLint MaxLevel; /**< max mipmap level (max=1000), OpenGL 1.2 */
981 GLbyte _MaxLevel; /**< actual max mipmap level (q in the spec) */
1415 /** Memoization of min/max index computations for static index buffers */
1924 * Max data to put into dest buffer (in bytes). Computed based on
3629 GLuint _DepthMax; /**< Max depth buffer value */
3630 GLfloat _DepthMaxF; /**< Float max depth buffer value *
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/main/
mtypes.h 311 GLfloat _CosCutoff; /**< = MAX(0, cos(SpotCutoff)) */
379 /** 4 colormask bits per draw buffer, max 8 draw buffers. 4*8 = 32 bits */
940 GLfloat MaxLod; /**< max lambda, OpenGL 1.2 */
971 GLint MaxLevel; /**< max mipmap level (max=1000), OpenGL 1.2 */
973 GLbyte _MaxLevel; /**< actual max mipmap level (q in the spec) */
1373 /** Memoization of min/max index computations for static index buffers */
1846 * Max data to put into dest buffer (in bytes). Computed based on
3493 GLuint _DepthMax; /**< Max depth buffer value */
3494 GLfloat _DepthMaxF; /**< Float max depth buffer value *
    [all...]

Completed in 40 milliseconds