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

1 2 3

  /external/blktrace/
blkiomon.h 38 struct minmax size_r;
39 struct minmax size_w;
40 struct minmax d2c_r;
41 struct minmax d2c_w;
42 struct minmax thrput_r;
43 struct minmax thrput_w;
stats.h 28 struct minmax { struct
36 static inline void minmax_init(struct minmax *mm)
45 static inline void minmax_account(struct minmax *mm, __u64 value)
56 static inline void minmax_merge(struct minmax *dst, struct minmax *src)
67 static inline void minmax_to_be(struct minmax *mm)
76 static inline double minmax_avg(struct minmax *mm)
81 static inline double minmax_var(struct minmax *mm)
88 static inline int minmax_print(FILE *fp, const char *s, struct minmax *mm)
  /external/clang/test/SemaCXX/
invalid-member-expr.cpp 28 pair<int, int> z = minmax({}); // expected-error {{expected expression}}
  /external/qemu/android/skin/
region.c 269 runs_coalesce_band( Run* *psrc_spans, Run* *pdst_spans, SkinBox* minmax )
281 if (pleft < minmax->x1) minmax->x1 = pleft;
308 if (pright > minmax->x2) minmax->x2 = pright;
316 runs_coalesce( Run* dst, Run* src, SkinBox* minmax )
333 if (ytop < minmax->y1) minmax->y1 = ytop;
334 if (ybot > minmax->y2) minmax->y2 = ybot
992 SkinBox minmax; local
    [all...]
  /development/tools/emulator/opengl/shared/OpenglCodecCommon/
glUtils.h 66 template <class T> void minmax(T *indices, int count, int *min, int *max) { function in namespace:GLUtils
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
algorithmfwd.h 81 minmax (C++0x)
371 minmax(const _Tp&, const _Tp&);
375 minmax(const _Tp&, const _Tp&, _Compare);
403 minmax(initializer_list<_Tp>);
407 minmax(initializer_list<_Tp>, _Compare);
stl_algo.h 3999 minmax(const _Tp& __a, const _Tp& __b) function
4018 minmax(const _Tp& __a, const _Tp& __b, _Compare __comp) function
4201 minmax(initializer_list<_Tp> __l) function
4210 minmax(initializer_list<_Tp> __l, _Compare __comp) function
    [all...]
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/bits/
algorithmfwd.h 81 minmax (C++0x)
371 minmax(const _Tp&, const _Tp&);
375 minmax(const _Tp&, const _Tp&, _Compare);
403 minmax(initializer_list<_Tp>);
407 minmax(initializer_list<_Tp>, _Compare);
stl_algo.h 3999 minmax(const _Tp& __a, const _Tp& __b) function
4018 minmax(const _Tp& __a, const _Tp& __b, _Compare __comp) function
4201 minmax(initializer_list<_Tp> __l) function
4210 minmax(initializer_list<_Tp> __l, _Compare __comp) function
    [all...]
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/bits/
algorithmfwd.h 81 minmax (C++0x)
371 minmax(const _Tp&, const _Tp&);
375 minmax(const _Tp&, const _Tp&, _Compare);
403 minmax(initializer_list<_Tp>);
407 minmax(initializer_list<_Tp>, _Compare);
stl_algo.h 3999 minmax(const _Tp& __a, const _Tp& __b) function
4018 minmax(const _Tp& __a, const _Tp& __b, _Compare __comp) function
4201 minmax(initializer_list<_Tp> __l) function
4210 minmax(initializer_list<_Tp> __l, _Compare __comp) function
    [all...]
  /external/mesa3d/docs/
conform.html 195 MinMax test passed.
308 MinMax test passed.
421 MinMax test passed.
534 MinMax test passed.
647 MinMax test passed.
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
PKIXNameConstraintValidator.java 382 byte minMax[][] = minMaxIPs(ip1, subnetmask1, ip2, subnetmask2);
385 max = min(minMax[1], minMax[3]);
386 min = max(minMax[0], minMax[2]);
394 byte[] ip = or(minMax[0], minMax[2]);
    [all...]
  /development/tools/emulator/opengl/system/GLESv1_enc/
GLEncoder.cpp 481 GLUtils::minmax<unsigned char>((unsigned char *)indices, count, &minIndex, &maxIndex);
491 GLUtils::minmax<unsigned short>((unsigned short *)indices, count, &minIndex, &maxIndex);
  /external/llvm/test/Transforms/InstCombine/
shufflemask-undef.ll 20 %struct.ImagingSubset = type { %struct.Convolution, %struct.Convolution, %struct.Convolution, %struct.ColorMatrix, %struct.Minmax, %struct.Histogram, %struct.ImagingColorScale, %struct.ImagingColorScale, %struct.ImagingColorScale, %struct.ImagingColorScale, i32, [0 x i32] }
28 %struct.Minmax = type { %struct.MinmaxTable*, i16, i8, i8, [0 x i32] }
  /external/llvm/lib/Target/Mips/
Mips.td 51 def FeatureMinMax : SubtargetFeature<"minmax", "HasMinMax", "true",
  /development/tools/emulator/opengl/system/GLESv2_enc/
GL2Encoder.cpp 379 GLUtils::minmax<unsigned char>((unsigned char *)indices, count, &minIndex, &maxIndex);
389 GLUtils::minmax<unsigned short>((unsigned short *)indices, count, &minIndex, &maxIndex);
  /external/llvm/test/CodeGen/X86/
2008-02-18-TailMergingBug.ll 6 define void @minmax(float* %result) nounwind optsize {
  /external/webkit/Source/WebCore/svg/animation/
SVGSMILElement.cpp 675 // http://www.w3.org/TR/2001/REC-smil-animation-20010904/#MinMax
    [all...]
  /external/skia/src/core/
SkRegion.cpp 736 // need to ensure that the op enum lines up with our minmax array
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/GL/
gl_mangle.h     [all...]
  /frameworks/base/core/java/android/widget/
TextView.java     [all...]
  /external/qemu/fpu/
softfloat.c     [all...]
  /external/webkit/Source/WebCore/
ChangeLog-2003-10-25 479 Fix the intrinsic minmax width computation for blocks and XUL boxes to actually check fixed min/max CSS widths.
506 Also fixing a minmax width bug for blocks on the mozilla.org Web site. XUL boxes had the same bug as
    [all...]
  /prebuilt/darwin-x86/toolchain/arm-eabi-4.2.1/info/
gcc.info     [all...]

Completed in 1344 milliseconds

1 2 3