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

/ndk/sources/third_party/googletest/googletest/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) {
/ndk/sources/cxx-stl/stlport/stlport/stl/config/
H A D_watcom.h82 // Get rid of Watcom's min and max macros
84 #undef max macro
/ndk/sources/host-tools/make-3.81/tests/
H A Dtest_driver.pl354 sub max subroutine
390 $len = &max (length ($line), length ($testee_version),
/ndk/sources/cxx-stl/stlport/stlport/stl/
H A D_algobase.h127 // min and max
131 //In not ANSI mode Borland import min/max in global namespace which conflict
132 //with STLport min/max when user does a 'using namespace std' in its code
133 //(see test/unit/alg_test.cpp). To avoid this clash we simply import Borland min/max
136 using _STLP_VENDOR_STD::max;
141 inline const _Tp& (max)(const _Tp& __a, const _Tp& __b) { return __a < __b ? __b : __a; }
147 inline unsigned long (max) (unsigned long __a, unsigned long __b) { return __a < __b ? __b : __a; } function
157 inline const _Tp& (max)(const _Tp& __a, const _Tp& __b, _Compare __comp) { function
167 inline const _Tp (max)(const _Tp __a, const _Tp __b, _Compare __comp) { function
H A D_valarray.h342 value_type (max) () const { function in class:valarray
/ndk/sources/host-tools/make-3.81/
H A Dfile.c1013 unsigned long max = EXPANSION_INCREMENT (strlen (value));
1020 value = xrealloc (value, max);
1031 if (len > max)
1035 max += EXPANSION_INCREMENT (l + 1);
1036 value = xrealloc (value, max);
1006 unsigned long max = EXPANSION_INCREMENT (strlen (value)); local
H A Dvariable.c292 unsigned long max = EXPANSION_INCREMENT (strlen (var->value));
299 var->value = xrealloc (var->value, max);
311 if (len > max)
315 max += EXPANSION_INCREMENT (l + 1);
316 var->value = xrealloc (var->value, max);
289 unsigned long max = EXPANSION_INCREMENT (strlen (var->value)); local
H A Dmain.c134 unsigned int max; /* Number of pointers allocated. */
323 -l [N], --load-average[=N], --max-load[=N]\n\
433 { "max-load", optional_argument, 0, 'l' },
1741 jobserver_fds->max = 1;
2481 sl->max = 5;
2486 else if (sl->idx == sl->max - 1)
2488 sl->max += 5;
2491 sl->max * sizeof (char *));
133 unsigned int max; /* Number of pointers allocated. */ member in struct:stringlist
H A Dread.c2854 register unsigned int max = 5;
2881 if (idx == max - 1)
2883 max += 5;
2885 xrealloc ((char *) dirs, (max + defsize) * sizeof (char *));
2840 register unsigned int max = 5; local
/ndk/sources/host-tools/sed-4.2.1/lib/
H A Dregexec.c2440 Idx max = mctx->state_log_top;
2445 if (++cur_str_idx > max)
2436 Idx max = mctx->state_log_top; local

Completed in 201 milliseconds