HomeSort by relevance Sort by last modified time
    Searched refs:max (Results 201 - 225 of 2420) sorted by null

1 2 3 4 5 6 7 891011>>

  /prebuilt/ndk/android-ndk-r5/platforms/android-3/arch-arm/usr/include/linux/netfilter_ipv4/
ipt_hashlimit.h 30 u_int32_t max; member in struct:hashlimit_cfg
  /prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-arm/usr/include/linux/netfilter_ipv4/
ip_nat.h 44 union ip_conntrack_manip_proto min, max; member in struct:ip_nat_range
ipt_hashlimit.h 30 u_int32_t max; member in struct:hashlimit_cfg
  /prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-x86/usr/include/linux/netfilter_ipv4/
ip_nat.h 44 union ip_conntrack_manip_proto min, max; member in struct:ip_nat_range
ipt_hashlimit.h 30 u_int32_t max; member in struct:hashlimit_cfg
  /system/core/include/cutils/
tztime.h 46 size_t strftime_tz(char *s, size_t max, const char *format, const struct tm *tm, const struct strftime_locale *locale);
  /external/quake/quake/src/QW/client/
cl_cam.c 203 float f, max; local
213 max = 1000;
216 if ((f = Cam_TryFlyby(self, player, vec2, checkvis)) < max) {
217 max = f;
222 if ((f = Cam_TryFlyby(self, player, vec2, checkvis)) < max) {
223 max = f;
227 if ((f = Cam_TryFlyby(self, player, vec2, checkvis)) < max) {
228 max = f;
232 if ((f = Cam_TryFlyby(self, player, vec2, checkvis)) < max) {
233 max = f
293 int i, j, max; local
    [all...]
  /dalvik/tests/053-wait-some/src/
Main.java 52 long max = delay + epsilon; local
57 } else if (elapsed > max) {
59 + "elapsed=" + elapsed + " max=" + max);
  /external/apache-http/src/org/apache/http/impl/io/
ContentLengthOutputStream.java 109 long max = this.contentLength - this.total; local
110 if (len > max) {
111 len = (int) max;
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/generators/
DHKeyGeneratorHelper.java 37 BigInteger max = p.subtract(TWO); local
41 max = q.subtract(TWO);
44 return BigIntegers.createRandomInRange(min, max, random);
  /external/elfutils/libelf/
elf_clone.c 46 elf->state.elf32.scns.max * sizeof (Elf_Scn));
59 retval->state.elf32.scns.max = elf->state.elf32.scns.max;
  /external/libxml2/
triostr.h 45 TRIO_STRING_PUBLIC int trio_copy_max TRIO_PROTO((char *target, size_t max, const char *source));
52 TRIO_STRING_PUBLIC int trio_equal_max TRIO_PROTO((const char *first, size_t max, const char *second));
63 TRIO_STRING_PUBLIC int trio_append_max TRIO_PROTO((char *target, size_t max, const char *source));
66 TRIO_STRING_PUBLIC char *trio_duplicate_max TRIO_PROTO((const char *source, size_t max));
67 TRIO_STRING_PUBLIC int trio_equal_case_max TRIO_PROTO((const char *first, size_t max, const char *second));
69 TRIO_STRING_PUBLIC size_t trio_format_date_max TRIO_PROTO((char *target, size_t max, const char *format, const struct tm *datetime));
79 TRIO_STRING_PUBLIC char *trio_substring_max TRIO_PROTO((const char *string, size_t max, const char *substring));
116 TRIO_STRING_PUBLIC int trio_string_equal_max TRIO_PROTO((trio_string_t *self, size_t max, trio_string_t *second));
118 TRIO_STRING_PUBLIC int trio_string_equal_case_max TRIO_PROTO((trio_string_t *self, size_t max, trio_string_t *other));
120 TRIO_STRING_PUBLIC size_t trio_string_format_date_max TRIO_PROTO((trio_string_t *self, size_t max, const char *format, const struct tm *datetime))
    [all...]
triostr.c 194 Append at most @p max characters from @p source to @p target.
197 @param max Maximum number of characters to append.
202 contain the @p target string and the @p source string (at most @p max
210 TRIO_ARGS3((target, max, source),
212 size_t max,
222 if (max > length)
224 strncat(target, source, max - length - 1);
283 Copy at most @p max characters from @p source to @p target.
286 @param max Maximum number of characters to append.
291 contain the @p source string (at most @p max characters)
    [all...]
  /external/openssl/crypto/bn/
bn_sqr.c 67 int max,al; local
88 max = 2 * al; /* Non-zero (from above) */
89 if (bn_wexpand(rr,max) == NULL) goto err;
131 if (bn_wexpand(tmp,max) == NULL) goto err;
136 if (bn_wexpand(tmp,max) == NULL) goto err;
143 * the square of 'a' will max-1 words. */
145 rr->top = max - 1;
147 rr->top = max;
160 int i,j,max; local
164 max=n*2
    [all...]
  /external/skia/include/core/
SkRandom.h 60 [min, max] inclusive.
62 uint32_t nextRangeU(uint32_t min, uint32_t max) {
63 SkASSERT(min <= max);
64 return min + this->nextU() % (max - min + 1);
  /external/webkit/Source/WebCore/rendering/
RenderFrameBase.cpp 54 // need to update to calculate min/max correctly
72 setWidth(max(width(), childRoot->minPreferredLogicalWidth() + hBorder));
80 setHeight(max(height(), childFrameView->contentsHeight() + vBorder));
82 setWidth(max(width(), childFrameView->contentsWidth() + hBorder));
  /external/webkit/Source/WebKit2/
config.h 113 /* We want to use std::min and std::max. */
114 #ifndef max
115 #define max max macro
  /external/webkit/Tools/DumpRenderTree/
config.h 91 // We want to use std::min and std::max
92 #undef max macro
93 #define max max macro
  /external/zlib/
inftrees.c 42 unsigned min, max; /* minimum and maximum code lengths */ local
114 for (max = MAXBITS; max >= 1; max--)
115 if (count[max] != 0) break;
116 if (root > max) root = max;
117 if (max == 0) { /* no symbols to code at all */
126 for (min = 1; min < max; min++)
137 if (left > 0 && (type == CODES || max != 1)
    [all...]
  /frameworks/base/core/java/android/os/
FileUtils.java 180 * @param max length (positive for head, negative of tail, 0 for no limit)
185 public static String readTextFile(File file, int max, String ellipsis) throws IOException {
189 if (max > 0 || (size > 0 && max == 0)) { // "head" mode: read the first N bytes
190 if (size > 0 && (max == 0 || size < max)) max = (int) size;
191 byte[] data = new byte[max + 1];
194 if (length <= max) return new String(data, 0, length);
195 if (ellipsis == null) return new String(data, 0, max);
    [all...]
  /system/core/nexus/
WifiStatusPoller.cpp 85 int max = 0; local
92 max = mCtrlPipe[0];
94 if ((rc = select(max + 1, &read_fds, NULL, NULL, &to)) < 0) {
  /external/bluetooth/glib/tests/
base64-test.c 20 gsize len, decoded_len, max, input_len, block_size; local
43 max = length * 4 / 3 + length * 4 / (3 * 72) + 7;
45 max = length * 4 / 3 + 6;
46 if (len > max)
48 g_print ("Too long encoded length: got %d, expected max %d\n",
49 len, max);
  /external/chromium/chrome/browser/ui/views/bookmarks/
bookmark_bar_instructions_view.cc 46 ascent = std::max(ascent, baseline);
47 descent = std::max(descent, pref.height() - baseline);
49 height = std::max(pref.height(), height);
55 height = std::max(ascent + descent, height);
74 remaining_width = std::max(0, width() - x);
  /external/libxml2/include/libxml/
xmlautomata.h 82 int max,
91 int max,
99 int max,
108 int max,
132 int max);
  /external/skia/src/animator/
SkAnimateField.cpp 124 int max = fComponents * 2; local
125 fValues.setCount(max);
126 memset(fValues.begin(), 0, max * sizeof(fValues.begin()[0]));
127 fFieldInfo->setValue(maker, &fValues, fFieldOffset, max, this, outType, from);
128 fFieldInfo->setValue(maker, &fValues, fComponents + fFieldOffset, max, this, outType, to);

Completed in 404 milliseconds

1 2 3 4 5 6 7 891011>>