Searched defs:max (Results 101 - 125 of 1129) sorted by relevance

1234567891011>>

/external/freetype/src/psnames/
H A Dpstables.h4080 int count, min, max; local
4092 max = count;
4094 while ( min < max )
4096 int mid = ( min + max ) >> 1;
4112 max = mid;
/external/icu/icu4c/source/layout/
H A DGXLayoutEngine2.cpp29 le_int32 GXLayoutEngine2::computeGlyphs(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft, LEGlyphStorage &glyphStorage, LEErrorCode &success) argument
35 if (chars == NULL || offset < 0 || count < 0 || max < 0 || offset >= max || offset + count > max) {
H A DKhmerLayoutEngine.cpp44 le_int32 KhmerOpenTypeLayoutEngine::characterProcessing(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft, argument
51 if (chars == NULL || offset < 0 || count < 0 || max < 0 || offset >= max || offset + count > max) {
H A DThaiLayoutEngine.cpp55 // Input: characters (0..max provided for context)
59 le_int32 ThaiLayoutEngine::computeGlyphs(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool /*rightToLeft*/, LEGlyphStorage &glyphStorage, LEErrorCode &success) argument
65 if (chars == NULL || offset < 0 || count < 0 || max < 0 || offset >= max || offset + count > max) {
H A DTibetanLayoutEngine.cpp50 le_int32 TibetanOpenTypeLayoutEngine::characterProcessing(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft, argument
57 if (chars == NULL || offset < 0 || count < 0 || max < 0 || offset >= max || offset + count > max) {
/external/iptables/extensions/
H A Dlibipt_ah.c36 print_spis(const char *name, uint32_t min, uint32_t max, argument
41 if (min != 0 || max != 0xFFFFFFFF || invert) {
43 if (min == max) {
50 printf("%u",max);
H A Dlibxt_esp.c36 print_spis(const char *name, uint32_t min, uint32_t max, argument
41 if (min != 0 || max != 0xFFFFFFFF || invert) {
42 if (min == max)
45 printf(" %ss:%s%u:%u", name, inv, min, max);
/external/iptables/include/linux/netfilter/
H A Dnf_nat.h17 union nf_conntrack_man_proto max; member in struct:nf_nat_ipv4_range
/external/libnfc-nci/src/nfc/nfc/
H A Dnfc_utils.c47 int xx, max = NCI_MAX_CONN_CBS; local
51 for (xx = 0; xx < max; xx++)
/external/libsepol/src/
H A Dprivate.h43 #undef max macro
44 #define max(a,b) ((a) >= (b) ? (a) : (b)) macro
/external/libvorbis/lib/
H A Dos.h78 #ifndef max
79 # define max(x,y) ((x)<(y)?(y):(x)) macro
/external/openfst/src/include/fst/
H A Dunion-find.h36 // Ctor: creates a disjoint set forest for the range [0;max).
40 UnionFind(T max, T fail) argument
41 : parent_(max, fail), rank_(max), fail_(fail) { }
66 // 'item'. The range [0;max) is reset if item >= max.
78 // Initialization of all elements starting from 0 to max - 1 to distinct sets
79 void MakeAllSet(T max) { argument
80 parent_.resize(max);
81 for (T item = 0; item < max;
[all...]
/external/pdfium/core/src/fxcodec/fx_libopenjpeg/libopenjpeg20/
H A Dopj_intmath.h88 <li>Returns a if (min < a < max)
89 <li>Returns max if (a > max)
93 static INLINE OPJ_INT32 opj_int_clamp(OPJ_INT32 a, OPJ_INT32 min, OPJ_INT32 max) { argument
96 if (a > max)
97 return max;
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/psnames/
H A Dpstables.h4094 int count, min, max; local
4106 max = count;
4108 while ( min < max )
4110 int mid = ( min + max ) >> 1;
4126 max = mid;
/external/replicaisland/src/com/replica/replicaisland/
H A DUtils.java39 public final static int clamp(int value, int min, int max) { argument
41 if (min == max) {
45 } else if (min < max) {
48 } else if (value > max) {
49 result = max;
52 result = clamp(value, max, min);
/external/skia/src/core/
H A DSkMathPriv.h30 /** Given a positive value and a positive max, return the value
31 pinned against max.
32 Note: only works as long as max - value doesn't wrap around
33 @return max if value >= max, else value
35 static inline unsigned SkClampUMax(unsigned value, unsigned max) { argument
36 if (value > max) {
37 value = max;
/external/skia/src/views/
H A DSkProgressView.cpp30 void SkProgressView::setMax(U16CPU max) argument
32 if (fMax != max)
34 fMax = SkToU16(max);
/external/skia/tests/
H A DDequeTest.cpp33 int max, int min) {
38 int value = max;
53 REPORTER_ASSERT(reporter, value-1 == max);
58 value = max;
69 REPORTER_ASSERT(reporter, value-1 == max);
32 assert_iter(skiatest::Reporter* reporter, const SkDeque& deq, int max, int min) argument
H A DSrcOverTest.cpp59 unsigned max = SkMax32(dst, i); local
62 REPORTER_ASSERT(reporter, r0 <= 255 && r0 >= max);
64 REPORTER_ASSERT(reporter, r1 <= 255 && r1 >= max);
65 REPORTER_ASSERT(reporter, r2 <= 255 && r2 >= max);
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dunion-find.h33 // Ctor: creates a disjoint set forest for the range [0;max).
37 UnionFind(T max, T fail) argument
38 : parent_(max, fail), rank_(max), fail_(fail) { }
64 // 'item'. The range [0;max) is reset if item >= max.
75 // Initialization of all elements starting from 0 to max - 1 to distinct sets
76 void MakeAllSet(T max) { argument
77 parent_.resize(max);
78 for (T item = 0; item < max;
[all...]
/external/tinyalsa/
H A Dtinypcminfo.c134 unsigned int max; local
184 max = pcm_params_get_max(params, PCM_PARAM_RATE);
185 printf(" Rate:\tmin=%uHz\tmax=%uHz\n", min, max);
187 max = pcm_params_get_max(params, PCM_PARAM_CHANNELS);
188 printf(" Channels:\tmin=%u\t\tmax=%u\n", min, max);
190 max = pcm_params_get_max(params, PCM_PARAM_SAMPLE_BITS);
191 printf(" Sample bits:\tmin=%u\t\tmax=%u\n", min, max);
193 max = pcm_params_get_max(params, PCM_PARAM_PERIOD_SIZE);
194 printf(" Period size:\tmin=%u\t\tmax=%u\n", min, max);
196 max
[all...]
/external/aac/libSBRenc/src/
H A Denv_bit.cpp97 #ifndef max
98 #define max(a,b) ( a > b ? a:b) macro
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DDFA.cs59 protected char[] max; field in class:Antlr.Runtime.DFA
141 if ( c >= min[s] && c <= max[s] )
188 Console.Error.WriteLine( "max[" + s + "]=" + max[s] );
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DDFA.java45 protected char[] max; field in class:DFA
98 if (c>=min[s] && c<=max[s]) {
136 System.err.println("max["+s+"]="+max[s]);
/external/bluetooth/bluedroid/bta/ag/
H A Dbta_ag_at.h53 INT16 max; /* maximum value for int arg */ member in struct:__anon400

Completed in 491 milliseconds

1234567891011>>