Searched defs:max (Results 1 - 25 of 386) sorted by relevance

1234567891011>>

/external/webkit/WebKitTools/DumpRenderTree/
H A DDumpRenderTreePrefix.h36 // We want to use std::min and std::max
37 #define max max macro
/external/iptables/include/linux/netfilter_ipv4/
H A Dipt_length.h5 u_int16_t min, max; member in struct:ipt_length_info
/external/iptables/include/linux/netfilter_ipv6/
H A Dip6t_length.h5 u_int16_t min, max; member in struct:ip6t_length_info
/external/kernel-headers/original/linux/netfilter/
H A Dxt_length.h5 u_int16_t min, max; member in struct:xt_length_info
/external/opencore/protocols/systems/3g-324m_pvterminal/h245/per/include/
H A Dper_common.h37 #define max(a,b) (((a) > (b)) ? (a) : (b)) macro
/external/webkit/WebKit/win/
H A DWebKitPrefix.h38 // We want to use std::min and std::max.
39 #ifndef max
40 #define max max macro
/external/quake/quake/src/WinQuake/
H A Dwq.bat7 if x%1==xmax goto max
11 echo wq max: all features on, but doesn't work on all systems
20 :max label
/external/skia/src/animator/
H A DSkDisplayRandom.h29 #ifdef max
30 #undef max macro
44 SkScalar max; member in class:SkDisplayRandom
/external/clearsilver/util/
H A Dulist.h21 int max; member in struct:_ulist
H A Dneo_rand.c37 int neo_rand (int max) argument
46 r = drand48() * max;
48 r = random() * max;
50 r = rand() * max;
55 int neo_rand_string (char *s, int max) argument
60 size = neo_rand(max-1);
73 int neo_rand_word (char *s, int max) argument
109 strncpy (s, word, max);
110 s[max-1] = '\0';
/external/opencore/codecs_v2/audio/aac/dec/src/
H A Dpulse_nc.cpp32 Description: Pass in max as input argument.
34 Description: Went back to the if-statement to check for max.
58 max = Pointer to the maximum value of coef[]
228 Int *max)
279 if (temp > *max)
281 *max = temp;
288 if (-temp > *max)
290 *max = -temp;
224 pulse_nc( Int16 coef[], const PulseInfo *pPulseInfo, const FrameInfo *pLongFrameInfo, Int *max) argument
/external/opencore/codecs_v2/audio/gsm_amr/amr_nb/common/src/
H A Dgmed_n.cpp131 Word16 max;
143 max = -32767;
146 if (sub (tmp2[j], max) >= 0)
148 max = tmp2[j];
189 register Word16 max; local
201 max = -32767;
204 if (*(tmp2 + j) >= max)
206 max = *(tmp2 + j);
/external/opencore/codecs_v2/video/m4v_h263/dec/src/
H A Dfind_min_max.cpp142 register int min, max; local
147 max = min = *input_ptr;
154 if (*input_ptr > max)
156 max = *input_ptr;
169 *max_ptr = max;
/external/skia/include/effects/
H A DSkTableMaskFilter.h41 and above max to 255, and rescales the remaining into 0..255
43 static void MakeClipTable(uint8_t table[256], uint8_t min, uint8_t max);
51 static SkTableMaskFilter* CreateClip(uint8_t min, uint8_t max) { argument
53 MakeClipTable(table, min, max);
/external/tremolo/Tremolo/
H A Dos.h78 #ifndef max
79 # define max(x,y) ((x)<(y)?(y):(x)) macro
/external/bluetooth/bluez/common/
H A Dtest_textfile.c46 unsigned int i, j, size, max = 10; local
100 for (i = 1; i < max + 1; i++) {
122 sprintf(key, "00:00:00:00:00:%02X", max);
125 for (j = 0; j < max; j++)
134 for (j = 0; j < max; j++)
142 for (i = 1; i < max + 1; i++) {
158 sprintf(key, "00:00:00:00:00:%02X", max - 3);
173 sprintf(key, "00:00:00:00:00:%02X", max);
178 sprintf(key, "00:00:00:00:00:%02X", max + 1);
/external/dropbear/libtommath/
H A Dbn_s_mp_add.c23 int olduse, res, min, max; local
30 max = a->used;
34 max = b->used;
39 if (c->alloc < max + 1) {
40 if ((res = mp_grow (c, max + 1)) != MP_OKAY) {
47 c->used = max + 1;
80 if (min != max) {
81 for (; i < max; i++) {
H A Dbn_s_mp_sub.c22 int olduse, res, min, max; local
26 max = a->used;
29 if (c->alloc < max) {
30 if ((res = mp_grow (c, max)) != MP_OKAY) {
35 c->used = max;
64 for (; i < max; i++) {
/external/gtest/samples/
H A Dprime_tables.h82 // 'max' specifies the maximum number the prime table holds.
83 explicit PreCalculatedPrimeTable(int max) argument
84 : is_prime_size_(max + 1), is_prime_(new bool[max + 1]) {
85 CalculatePrimesUpTo(max);
102 void CalculatePrimesUpTo(int max) { argument
106 for (int i = 2; i <= max; i++) {
110 for (int j = 2*i; j <= max; j += i) {
/external/icu4c/layout/
H A DGXLayoutEngine.cpp31 le_int32 GXLayoutEngine::computeGlyphs(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft, LEGlyphStorage &glyphStorage, LEErrorCode &success) argument
37 if (chars == NULL || offset < 0 || count < 0 || max < 0 || offset >= max || offset + count > max) {
/external/opencore/codecs_v2/audio/gsm_amr/amr_nb/enc/src/
H A Dcor_h_x.cpp189 Word32 s, y32[L_CODE], max, tot;
197 max = 0;
207 if (L_sub (s, max) > (Word32) 0L)
208 max = s;
210 tot = L_add (tot, L_shr (max, 1));
258 Word32 max; local
269 max = 0;
296 if (s > max)
298 max = s;
302 tot += (max >>
[all...]
H A Dcor_h_x2.cpp173 Word32 s, y32[L_CODE], max, tot;
181 max = 0;
191 if (L_sub (s, max) > (Word32) 0L)
192 max = s;
194 tot = L_add (tot, L_shr (max, 1));
244 Word32 max; local
252 max = 0;
266 if (s > max)
268 max = s;
271 tot = (tot + (max >>
[all...]
/external/openssl/crypto/buffer/
H A Dbuffer.h81 int max; /* size of buffer */ member in struct:buf_mem_st
/external/openssl/include/openssl/
H A Dbuffer.h81 int max; /* size of buffer */ member in struct:buf_mem_st
/external/oprofile/libdb/
H A Ddb_debug.c69 static int check_redundant_key(odb_data_t const * data, odb_key_t max) argument
73 unsigned char * bitmap = malloc(max + 1);
74 memset(bitmap, '\0', max + 1);
95 odb_key_t max = 0; local
107 if (data->node_base[index].key > max)
108 max = data->node_base[index].key;
129 ret = check_redundant_key(data, max);

Completed in 452 milliseconds

1234567891011>>