Home
last modified time | relevance | path

Searched refs:max (Results 1 – 22 of 22) 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.h40 __u32 max; member
58 __u32 max; member
68 __u32 max; member
Dxt_length.h23 __u16 min, max; member
Dxt_u32.h34 __u32 max; member
Dnf_nat.h35 union nf_conntrack_man_proto max; member
/bionic/libc/kernel/uapi/linux/
Datm_nicstar.h29 unsigned max; member
Dvirtio_input.h33 __u32 max; member
Dxfrm.h341 __u32 max; member
Dpkt_sched.h485 __u32 max; member
Dvideodev2.h396 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/tools/
Dpylintrc188 max-line-length=100
201 max-module-lines=1000
229 max-args=5
236 max-locals=15
239 max-returns=6
242 max-branches=12
245 max-statements=50
248 max-parents=7
251 max-attributes=7
257 max-public-methods=20
/bionic/libc/kernel/uapi/sound/
Demu10k1.h243 unsigned int max; member
254 unsigned int max; member
Dasoc.h239 __le32 max; member
261 __le32 max; member
Dasound.h284 unsigned int min, max; member
717 long max; member
722 long long max; member
/bionic/libc/bionic/
Dfts.c1013 size_t len, max; in fts_maxarglen() local
1015 for (max = 0; *argv; ++argv) in fts_maxarglen()
1016 if ((len = strlen(*argv)) > max) in fts_maxarglen()
1017 max = len; in fts_maxarglen()
1018 return (max + 1); in fts_maxarglen()
/bionic/libc/malloc_debug/
DREADME.md55 The default is 32 bytes, the max bytes is 16384. SIZE\_BYTES will be
78 The default is 32 bytes, the max bytes is 16384.
93 The default is 32 bytes, the max bytes is 16384.
150 The default is 16 bytes, the max bytes is 16384.
169 in the list. The default is to record 100 freed allocations, the max
199 allocation is freed. The default is to record 16 frames, the max number of
/bionic/linker/
Dlinker_cfi.cpp106 begin = std::max(begin, cfi_check) & ~(kShadowAlign - 1); in Add()
/bionic/libc/arch-mips/string/
Dstrcmp.S132 SUBU t1, t0, t1 #process (NSIZE - 1) bytes at max
Dstrncmp.S136 SUBU t1, t0, t1 #process (NSIZE - 1) bytes at max
/bionic/libc/tzcode/
Dlocaltime.c778 getnum(register const char *strp, int *const nump, const int min, const int max) in getnum() argument
788 if (num > max) in getnum()