Home
last modified time | relevance | path

Searched refs:words (Results 1 – 5 of 5) sorted by relevance

/bionic/libc/upstream-openbsd/lib/libc/net/
Dinet_ntop.c106 u_int words[IN6ADDRSZ / INT16SZ]; in inet_ntop6() local
115 memset(words, '\0', sizeof words); in inet_ntop6()
117 words[i / 2] |= (src[i] << ((1 - (i % 2)) << 3)); in inet_ntop6()
121 if (words[i] == 0) { in inet_ntop6()
169 (best.len == 6 || (best.len == 5 && words[5] == 0xffff))) { in inet_ntop6()
175 advance = snprintf(tp, ep - tp, "%x", words[i]); in inet_ntop6()
/bionic/libm/upstream-freebsd/lib/msun/src/
Ds_nan.c53 _scan_nan(uint32_t *words, int num_words, const char *s) argument
58 bzero(words, num_words * sizeof(uint32_t));
76 words[bitpos / 32] |= digittoint(s[si]) << (bitpos % 32);
/bionic/libc/kernel/uapi/linux/
Dtcp.h42 __be32 words[5]; member
44 #define tcp_flag_word(tp) (((union tcp_word_hdr *) (tp))->words[3])
/bionic/libc/kernel/uapi/drm/
Dtegra_drm.h77 __u32 words; member
/bionic/docs/
Delf-tls.md588 TLS variant 1 allocates everything after the TP to ELF TLS (except the first two words), and variant
753 * We would reserve at least 6 words to cover the stack guard
757 * Reserving 138 words is enough for existing slots and pthread keys.
809 small positive offset from TP (within the first 384 words), it will think it has found the pthread
829 Go scans 384 words from the thread pointer. If there are at most 16 Bionic slots and 130 pthread
830 keys (2 words per key), then `app_process` can use at most 108 words of TLS memory.