Home
last modified time | relevance | path

Searched refs:max (Results 1 – 19 of 19) sorted by relevance

/bionic/tests/
Dsstream_test.cpp45 CheckOverflow<int16_t>(std::numeric_limits<int16_t>::max(), "32767", false); in TEST()
48 CheckOverflow<uint16_t>(std::numeric_limits<uint16_t>::max(), "65535", false); in TEST()
55 CheckOverflow<int32_t>(std::numeric_limits<int32_t>::max(), "2147483647", false); in TEST()
58 CheckOverflow<uint32_t>(std::numeric_limits<uint32_t>::max(), "4294967295", false); in TEST()
65 CheckOverflow<int64_t>(std::numeric_limits<int64_t>::max(), "9223372036854775807", false); in TEST()
68 CheckOverflow<uint64_t>(std::numeric_limits<uint64_t>::max(), "18446744073709551615", false); in TEST()
Dsys_select_test.cpp89 int max = STDERR_FILENO + 1; in TEST() local
95 int num_fds = select(max, &r, &w, &e, NULL); in TEST()
110 ASSERT_EQ(-1, select(max, &r, &w, &e, &tv)); in TEST()
144 int max = STDERR_FILENO + 1; in TEST() local
153 int num_fds = pselect(max, &r, &w, &e, NULL, &ss); in TEST()
165 ASSERT_EQ(-1, pselect(max, &r, &w, &e, &tv, &ss)); in TEST()
/bionic/libc/kernel/uapi/linux/netfilter/
Dxt_hashlimit.h42 __u32 max; member
65 __u32 max; member
Dxt_length.h24 __u16 min, max; member
Dxt_u32.h37 __u32 max; member
Dnf_nat.h39 union nf_conntrack_man_proto max; member
/bionic/libc/kernel/uapi/linux/
Datm_nicstar.h31 unsigned max; member
Dvirtio_input.h36 __u32 max; member
Dxfrm.h420 __u32 max; member
Dpkt_sched.h594 __u32 max; member
Dvideodev2.h457 struct v4l2_fract max; member
/bionic/libc/stdlib/
Datexit.c47 int max; /* max entries >= ATEXIT_SIZE */ member
92 if (p->ind + 1 >= p->max) in __cxa_atexit()
111 p->max = (pgsize - ((char *)&p->fns[0] - (char *)p)) / in __cxa_atexit()
/bionic/libc/bionic/
Dlocale.cpp195 size_t strftime_l(char* s, size_t max, const char* format, const struct tm* tm, locale_t) { in strftime_l() argument
196 return strftime(s, max, format, tm); in strftime_l()
Dfts.c1011 size_t len, max; in fts_maxarglen() local
1013 for (max = 0; *argv; ++argv) in fts_maxarglen()
1014 if ((len = strlen(*argv)) > max) in fts_maxarglen()
1015 max = len; in fts_maxarglen()
1016 return (max + 1); in fts_maxarglen()
/bionic/libc/kernel/uapi/sound/
Dasoc.h202 __le32 max; member
230 __le32 max; member
Demu10k1.h299 unsigned int max; member
312 unsigned int max; member
Dasound.h344 unsigned int min, max; member
885 long max; member
891 long long max; member
/bionic/libc/malloc_debug/
DREADME.md50 The default is 32 bytes, the max bytes is 16384. SIZE\_BYTES will be
75 The default is 32 bytes, the max bytes is 16384.
92 The default is 32 bytes, the max bytes is 16384.
149 The default is 16 bytes, the max bytes is 16384.
168 in the list. The default is to record 100 freed allocations, the max
202 allocation is freed. The default is to record 16 frames, the max number of
/bionic/libc/tzcode/
Dlocaltime.c773 getnum(register const char *strp, int *const nump, const int min, const int max) in getnum() argument
783 if (num > max) in getnum()